From cvs w lms.org.pl Sat Oct 1 12:09:20 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 1 Oct 2011 12:09:20 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules (rtsearch.php) Message-ID: <20111001100920.A86AC30278A0@eftep.altec.pl> Date: Saturday, October 1, 2011 @ 12:09:20 Author: chilek Path: /cvsroot/lms/modules Modified: rtsearch.php - unneeded condition Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtsearch.php.diff?&r1=1.51&r2=1.52 Index: lms/modules/rtsearch.php diff -u lms/modules/rtsearch.php:1.51 lms/modules/rtsearch.php:1.52 --- lms/modules/rtsearch.php:1.51 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtsearch.php Sat Oct 1 12:09:20 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtsearch.php,v 1.51 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtsearch.php,v 1.52 2011/10/01 10:09:20 chilek Exp $ */ function RTSearch($search, $order='createtime,desc') @@ -87,8 +87,6 @@ $where[] = 'queueid = '.intval($search['queue']); if(isset($search['catids'])) $where[] = 'tc.categoryid IN ('.implode(',', $search['catids']).')'; - else - $where[] = 'tc.categoryid IS NULL'; if(isset($where)) $where = ' WHERE '.implode($op, $where); From cvs w lms.org.pl Fri Oct 14 09:33:10 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 09:33:10 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (LMS.class.php) Message-ID: <20111014073310.506B730278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 09:33:10 Author: chilek Path: /cvsroot/lms/lib Modified: LMS.class.php - RTStats: don't make sql query when there are no categories assigned to user Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/LMS.class.php.diff?&r1=1.1076&r2=1.1077 Index: lms/lib/LMS.class.php diff -u lms/lib/LMS.class.php:1.1076 lms/lib/LMS.class.php:1.1077 --- lms/lib/LMS.class.php:1.1076 Fri Sep 16 22:48:16 2011 +++ lms/lib/LMS.class.php Fri Oct 14 09:33:09 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMS.class.php,v 1.1076 2011/09/16 20:48:16 chilek Exp $ + * $Id: LMS.class.php,v 1.1077 2011/10/14 07:33:09 chilek Exp $ */ // LMS Class - contains internal LMS database functions used @@ -35,7 +35,7 @@ var $cache = array(); // internal cache var $hooks = array(); // registered plugin hooks var $_version = '1.11-cvs'; // class version - var $_revision = '$Revision: 1.1076 $'; + var $_revision = '$Revision: 1.1077 $'; function LMS(&$DB, &$AUTH, &$CONFIG) // class variables setting { @@ -3733,6 +3733,8 @@ function RTStats() { $categories = $this->GetCategoryListByUser($this->AUTH->id); + if (empty($categories)) + return NULL; foreach ($categories as $category) $catids[] = $category['id']; return $this->DB->GetAll('SELECT tc.categoryid AS id, c.name, From cvs w lms.org.pl Fri Oct 14 18:08:54 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:54 +0200 (CEST) Subject: [lms-commits] CVS update of lms (index.php) Message-ID: <20111014160854.C2ECC30278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:54 Author: chilek Path: /cvsroot/lms Modified: index.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/index.php.diff?&r1=1.225&r2=1.226 Index: lms/index.php diff -u lms/index.php:1.225 lms/index.php:1.226 --- lms/index.php:1.225 Fri Sep 9 20:16:51 2011 +++ lms/index.php Fri Oct 14 18:08:54 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.225 2011/09/09 18:16:51 chilek Exp $ + * $Id: index.php,v 1.226 2011/10/14 16:08:54 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOUR CONFIG FILE @@ -99,8 +99,17 @@ // test for proper version of Smarty -if (version_compare('2.6.0', $SMARTY->_version) > 0) - die('Wrong version of Smarty engine! We support only Smarty-2.x greater than 2.6.0.'); +if (constant('Smarty::SMARTY_VERSION')) + $ver_chunks = preg_split('/-/', Smarty::SMARTY_VERSION); +else + $ver_chunks = NULL; +if (count($ver_chunks) != 2 || version_compare('3.0', $ver_chunks[1]) > 0) + die('Wrong version of Smarty engine! We support only Smarty-3.x greater than 3.0.'); + +define('SMARTY_VERSION', $ver_chunks[1]); + +// uncomment this line if you're not gonna change template files no more +//$SMARTY->compile_check = false; // Read configuration of LMS-UI from database @@ -147,19 +156,19 @@ $layout['logname'] = $AUTH->logname; $layout['logid'] = $AUTH->id; $layout['lmsdbv'] = $DB->_version; -$layout['smarty_version'] = $SMARTY->_version; +$layout['smarty_version'] = SMARTY_VERSION; $layout['hostname'] = hostname(); $layout['lmsv'] = '1.11-cvs'; $layout['lmsvr'] = $LMS->_revision.'/'.$AUTH->_revision; $layout['dberrors'] =& $DB->errors; $layout['popup'] = isset($_GET['popup']) ? true : false; -$SMARTY->assign_by_ref('layout', $layout); -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); -$SMARTY->assign_by_ref('_config',$CONFIG); +$SMARTY->assignByRef('layout', $layout); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); +$SMARTY->assignByRef('_config',$CONFIG); $error = NULL; // initialize error variable needed for (almost) all modules From cvs w lms.org.pl Fri Oct 14 18:08:55 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:55 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/customer/locale/pl (strings.php) Message-ID: <20111014160855.23C8030278A2@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:55 Author: chilek Path: /cvsroot/lms/contrib/customer/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer/locale/pl/strings.php.diff?&r1=1.11&r2=1.12 Index: lms/contrib/customer/locale/pl/strings.php diff -u lms/contrib/customer/locale/pl/strings.php:1.11 lms/contrib/customer/locale/pl/strings.php:1.12 --- lms/contrib/customer/locale/pl/strings.php:1.11 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer/locale/pl/strings.php Fri Oct 14 18:08:55 2011 @@ -21,13 +21,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.11 2011/01/18 08:11:59 alec Exp $ + * $Id: strings.php,v 1.12 2011/10/14 16:08:55 chilek Exp $ */ $_LANG['Balance Sheet:'] = 'Bilans finansowy:'; $_LANG['Customer Information'] = 'Informacje o kliencie'; $_LANG['Name/Surname:'] = 'Nazwa/Nazwisko:'; -$_LANG['Generated by LMS $0'] = 'Wygenerowano przy użyciu LMS $0'; +$_LANG['Generated by LMS $a'] = 'Wygenerowano przy użyciu LMS $a'; $_LANG['Monthly payments:'] = 'Miesiêczne opłaty:'; $_LANG['No such operations.'] = 'Brak operacji.'; $_LANG['Your IP address was not recognized by system. Please to ensure that you are using computer connected to our network, and you are not using proxy servers. Information about your balance are accessible only from registered computer.'] = 'Państwa adres IP nie został rozpoznany przez system. Proszê siê upewniæ, że korzystacie Państwo z komputera podłaczonego do naszej sieci i czy nie korzystacie z serwera proxy. Informacje o Państwa bilansie s± dostêpne tylko z zarejestrowanego komputera.'; From cvs w lms.org.pl Fri Oct 14 18:08:55 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:55 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/customer_otherip/locale/pl (strings.php) Message-ID: <20111014160855.897E530278A4@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:55 Author: chilek Path: /cvsroot/lms/contrib/customer_otherip/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/locale/pl/strings.php.diff?&r1=1.11&r2=1.12 Index: lms/contrib/customer_otherip/locale/pl/strings.php diff -u lms/contrib/customer_otherip/locale/pl/strings.php:1.11 lms/contrib/customer_otherip/locale/pl/strings.php:1.12 --- lms/contrib/customer_otherip/locale/pl/strings.php:1.11 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer_otherip/locale/pl/strings.php Fri Oct 14 18:08:55 2011 @@ -21,22 +21,22 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.11 2011/01/18 08:11:59 alec Exp $ + * $Id: strings.php,v 1.12 2011/10/14 16:08:55 chilek Exp $ */ $_LANG['All payments send on account:'] = 'Wszystkie płatno¶ci prosimy przesyłaæ na konto:'; $_LANG['Bank:'] = 'Bank:'; $_LANG['Customer Information:'] = 'Informacje o kliencie:'; $_LANG['Customer Logon'] = 'Panel Klienta'; -$_LANG['Customer Logon: $0'] = 'Panel Klienta: $0'; +$_LANG['Customer Logon: $a'] = 'Panel Klienta: $a'; $_LANG['Errornous data was entered!'] = 'Wprowadzono niepoprawne dane!'; $_LANG['Form Printout'] = 'Wydruk formularza'; $_LANG['home page'] = 'strona domowa'; $_LANG['Payments:'] = 'Płatno¶ci:'; $_LANG['Please to fill following form with customer ID and PIN which was sent to your email.'] = 'Proszê wypełniæ formularz podaj±c ID klienta oraz PIN, który był wysłany e-mailem.'; $_LANG['Print
Payment
Form'] = 'Wydruk
Formularza
Wpłaty'; -$_LANG['We are please for punctual payment in value: $0 with comment: $1'] = 'Prosimy o terminow± wpłatê w wysoko¶ci: $0 z dopiskiem: $1'; +$_LANG['We are please for punctual payment in value: $a with comment: $b'] = 'Prosimy o terminow± wpłatê w wysoko¶ci: $a z dopiskiem: $b'; $_LANG['You have no outstandings towards as.'] = 'Nie posiadasz zaległo¶ci wobec nas.'; -$_LANG['You have overpayments on value: $0, they will be moved as payments for future subscriptions or services.'] = 'Posiadasz nadpłaty w wysoko¶ci: $0, zostan± one rozliczone jako płatno¶ci za przyszły abonament lub usługê.'; +$_LANG['You have overpayments on value: $a, they will be moved as payments for future subscriptions or services.'] = 'Posiadasz nadpłaty w wysoko¶ci: $a, zostan± one rozliczone jako płatno¶ci za przyszły abonament lub usługê.'; ?> \ No newline at end of file From cvs w lms.org.pl Fri Oct 14 18:08:55 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:55 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/customer_otherip (5 files) Message-ID: <20111014160855.630EC30278A3@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:55 Author: chilek Path: /cvsroot/lms/contrib/customer_otherip Modified: balanceview.html balanceviewaccount.html class.php invoice.php invoice_pdf.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/balanceview.html.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/balanceviewaccount.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/class.php.diff?&r1=1.35&r2=1.36 http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/invoice.php.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer_otherip/invoice_pdf.php.diff?&r1=1.18&r2=1.19 Index: lms/contrib/customer_otherip/balanceview.html diff -u lms/contrib/customer_otherip/balanceview.html:1.13 lms/contrib/customer_otherip/balanceview.html:1.14 --- lms/contrib/customer_otherip/balanceview.html:1.13 Wed Feb 11 12:37:14 2009 +++ lms/contrib/customer_otherip/balanceview.html Fri Oct 14 18:08:55 2011 @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ -

{t 0=$customerinfo.customername}Customer Logon: $0{/t}

+

{t a=$customerinfo.customername}Customer Logon: $a{/t}


@@ -25,7 +25,7 @@ Index: lms/contrib/customer_otherip/balanceviewaccount.html diff -u lms/contrib/customer_otherip/balanceviewaccount.html:1.10 lms/contrib/customer_otherip/balanceviewaccount.html:1.11 --- lms/contrib/customer_otherip/balanceviewaccount.html:1.10 Wed Jun 29 22:44:13 2005 +++ lms/contrib/customer_otherip/balanceviewaccount.html Fri Oct 14 18:08:55 2011 @@ -1,4 +1,4 @@ - +

- {t}Customer Account:{/t} ({t 0=$limit}last $0 transactions{/t}) + {t}Customer Account:{/t} ({t a=$limit}last $a transactions{/t})
@@ -19,7 +19,7 @@ Index: lms/contrib/customer_otherip/class.php diff -u lms/contrib/customer_otherip/class.php:1.35 lms/contrib/customer_otherip/class.php:1.36 --- lms/contrib/customer_otherip/class.php:1.35 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer_otherip/class.php Fri Oct 14 18:08:55 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: class.php,v 1.35 2011/01/18 08:11:59 alec Exp $ + * $Id: class.php,v 1.36 2011/10/14 16:08:55 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOU CONFIG FILE @@ -96,10 +96,10 @@ // set some template and layout variables -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); $SMARTY->template_dir = getcwd(); $SMARTY->compile_dir = SMARTY_COMPILE_DIR; @@ -107,7 +107,7 @@ $layout['lmsv'] = '1.11-cvs'; -$SMARTY->assign_by_ref('layout', $layout); -$SMARTY->assign_by_ref('_config', $CONFIG); +$SMARTY->assignByRef('layout', $layout); +$SMARTY->assignByRef('_config', $CONFIG); ?> Index: lms/contrib/customer_otherip/invoice.php diff -u lms/contrib/customer_otherip/invoice.php:1.16 lms/contrib/customer_otherip/invoice.php:1.17 --- lms/contrib/customer_otherip/invoice.php:1.16 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer_otherip/invoice.php Fri Oct 14 18:08:55 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice.php,v 1.16 2011/01/18 08:11:59 alec Exp $ + * $Id: invoice.php,v 1.17 2011/10/14 16:08:55 chilek Exp $ */ include('class.php'); @@ -50,7 +50,7 @@ $invoice = $LMS->GetInvoiceContent($_GET['id']); $ntempl = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); -$layout['pagetitle'] = trans('Invoice No. $0', $ntempl); +$layout['pagetitle'] = trans('Invoice No. $a', $ntempl); $invoice['last'] = TRUE; $SMARTY->assign('invoice',$invoice); $SMARTY->display(SMARTY_TEMPLATES_DIR.'/clearheader.html'); Index: lms/contrib/customer_otherip/invoice_pdf.php diff -u lms/contrib/customer_otherip/invoice_pdf.php:1.18 lms/contrib/customer_otherip/invoice_pdf.php:1.19 --- lms/contrib/customer_otherip/invoice_pdf.php:1.18 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer_otherip/invoice_pdf.php Fri Oct 14 18:08:55 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice_pdf.php,v 1.18 2011/01/18 08:11:59 alec Exp $ + * $Id: invoice_pdf.php,v 1.19 2011/10/14 16:08:55 chilek Exp $ */ // Faktury w PDF, do użycia z formularzami FT-0100 (c) Polarnet // w razie pytań mailto:lexx w polarnet.org @@ -55,7 +55,7 @@ text_autosize(15*$scale+$x,322*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2",$invoice['zip']." ".$invoice['city']),350*$scale); $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); - text_autosize(15*$scale+$x,215*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('Payment for invoice No. $0',$tmp)),350*$scale); + text_autosize(15*$scale+$x,215*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('Payment for invoice No. $a',$tmp)),350*$scale); } @@ -77,12 +77,12 @@ text_autosize(15*$scale+$x,555*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",$finances['account']),950*$scale); $pdf->addtext(330*$scale+$x,495*$scale+$y,30*$scale,'X'); text_autosize(550*$scale+$x,495*$scale+$y,30*$scale,"*".number_format($invoice['total'],2,',','')."*",400*$scale); - text_autosize(15*$scale+$x,434*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('$0 dollars $1 cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100)))),950*$scale); + text_autosize(15*$scale+$x,434*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('$a dollars $b cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100)))),950*$scale); text_autosize(15*$scale+$x,372*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2",$invoice['name']),950*$scale); text_autosize(15*$scale+$x,312*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2",$invoice['address']." ".$invoice['zip']." ".$invoice['city']),950*$scale); $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); - text_autosize(15*$scale+$x,250*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('Payment for invoice No. $0',$tmp)),950*$scale); + text_autosize(15*$scale+$x,250*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2",trans('Payment for invoice No. $a',$tmp)),950*$scale); } function text_align_right($x,$y,$size,$text) @@ -136,7 +136,7 @@ $y=$y-text_align_left($x,$y,$font_size,iconv("UTF-8","ISO-8859-2",trans('TEN:')).' '.$invoice['ten']); else if ($invoice['ssn']) $y=$y-text_align_left($x,$y,$font_size,iconv("UTF-8","ISO-8859-2",trans('SSN:')).' '.$invoice['ssn']); - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2",trans('Customer No.: $0',sprintf('%04d',$invoice['customerid']))).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2",trans('Customer No.: $a',sprintf('%04d',$invoice['customerid']))).''); return $y; } @@ -158,7 +158,7 @@ global $invoice,$pdf,$CONFIG,$type; $font_size=16; $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2",trans('Invoice No. $0',$tmp)).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2",trans('Invoice No. $a',$tmp)).''); $y=$y-text_align_left($x,$y,$font_size,iconv("UTF-8","ISO-8859-2",$type)); return $y; } @@ -310,7 +310,7 @@ { global $pdf, $invoice; $y = $y - text_align_left($x,$y,14,iconv("UTF-8","ISO-8859-2",trans('To pay:')).' '.iconv("UTF-8","ISO-8859-2",moneyf($invoice['total']))); - $y = $y - text_align_left($x,$y,10,iconv("UTF-8","ISO-8859-2",trans('In words:')).' '.iconv("UTF-8","ISO-8859-2",trans('$0 dollars $1 cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100))))); + $y = $y - text_align_left($x,$y,10,iconv("UTF-8","ISO-8859-2",trans('In words:')).' '.iconv("UTF-8","ISO-8859-2",trans('$a dollars $b cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100))))); return $y; } From cvs w lms.org.pl Fri Oct 14 18:08:54 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:54 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/customer (customer.html, index.php) Message-ID: <20111014160855.0357130278A1@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:54 Author: chilek Path: /cvsroot/lms/contrib/customer Modified: customer.html index.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer/customer.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/contrib/customer/index.php.diff?&r1=1.43&r2=1.44 Index: lms/contrib/customer/customer.html diff -u lms/contrib/customer/customer.html:1.22 lms/contrib/customer/customer.html:1.23 --- lms/contrib/customer/customer.html:1.22 Tue Jan 18 09:11:59 2011 +++ lms/contrib/customer/customer.html Fri Oct 14 18:08:54 2011 @@ -1,5 +1,5 @@ - + @@ -151,7 +151,7 @@ Powered by LMS! Index: lms/contrib/customer/index.php diff -u lms/contrib/customer/index.php:1.43 lms/contrib/customer/index.php:1.44 --- lms/contrib/customer/index.php:1.43 Wed Aug 31 13:42:02 2011 +++ lms/contrib/customer/index.php Fri Oct 14 18:08:54 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.43 2011/08/31 11:42:02 alec Exp $ + * $Id: index.php,v 1.44 2011/10/14 16:08:54 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOU CONFIG FILE @@ -95,17 +95,17 @@ // set some template and layout variables -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); $SMARTY->template_dir = getcwd(); $SMARTY->compile_dir = SMARTY_COMPILE_DIR; @include('locale/'.$LMS->ui_lang.'/strings.php'); $layout['lmsv'] = '1.11-cvs'; -$SMARTY->assign_by_ref('layout', $layout); +$SMARTY->assignByRef('layout', $layout); header('X-Powered-By: LMS/'.$layout['lmsv']); From cvs w lms.org.pl Fri Oct 14 18:08:55 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:55 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/sqlpanel (sqlprint.html) Message-ID: <20111014160855.B14DF30278A5@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:55 Author: chilek Path: /cvsroot/lms/contrib/sqlpanel Modified: sqlprint.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/sqlpanel/sqlprint.html.diff?&r1=1.3&r2=1.4 Index: lms/contrib/sqlpanel/sqlprint.html diff -u lms/contrib/sqlpanel/sqlprint.html:1.3 lms/contrib/sqlpanel/sqlprint.html:1.4 --- lms/contrib/sqlpanel/sqlprint.html:1.3 Wed Oct 19 11:11:34 2005 +++ lms/contrib/sqlpanel/sqlprint.html Fri Oct 14 18:08:55 2011 @@ -1,5 +1,5 @@ {include file="clearheader.html"} - +
- {if $customerinfo.balance < 0}

{t 0=$customerinfo.balance*-1|money_format 1=$customerinfo.id}We are please for punctual payment in value: $0 with comment: $1{/t}

{elseif $customerinfo.balance > 0}{t 0=$customerinfo.balance|money_format}You have overpayments on value: $0, they will be moved as payments for future subscriptions or services.{/t}{else}{t}You have no outstandings towards as.{/t}{/if} + {if $customerinfo.balance < 0}

{t a=($customerinfo.balance*-1)|money_format b=$customerinfo.id}We are please for punctual payment in value: $a with comment: $b{/t}

{elseif $customerinfo.balance > 0}{t 0=$customerinfo.balance|money_format}You have overpayments on value: $a, they will be moved as payments for future subscriptions or services.{/t}{else}{t}You have no outstandings towards as.{/t}{/if}
- {t 0=$layout.lmsv}Generated by LMS $0{/t}
+ {t a=$layout.lmsv}Generated by LMS $a{/t}
© 2001-2011 LMS Developers - http://www.lms.org.pl
@@ -8,7 +8,7 @@ LMS {$layout.lmsv} @ {$layout.hostname}
{$smarty.now|date_format:"%A, %x"}
- {t 0=$layout.logname}Prepared by: $0{/t} + {t a=$layout.logname}Prepared by: $a{/t}
From cvs w lms.org.pl Fri Oct 14 18:08:55 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:55 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/squid_redirector (index.php) Message-ID: <20111014160855.D943030278A6@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:55 Author: chilek Path: /cvsroot/lms/contrib/squid_redirector Modified: index.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/squid_redirector/index.php.diff?&r1=1.25&r2=1.26 Index: lms/contrib/squid_redirector/index.php diff -u lms/contrib/squid_redirector/index.php:1.25 lms/contrib/squid_redirector/index.php:1.26 --- lms/contrib/squid_redirector/index.php:1.25 Tue Jan 18 09:12:00 2011 +++ lms/contrib/squid_redirector/index.php Fri Oct 14 18:08:55 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.25 2011/01/18 08:12:00 alec Exp $ + * $Id: index.php,v 1.26 2011/10/14 16:08:55 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOU CONFIG FILE @@ -86,15 +86,15 @@ // set some template and layout variables -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); $SMARTY->template_dir = getcwd(); $SMARTY->compile_dir = SMARTY_COMPILE_DIR; include('lang.php'); -$SMARTY->assign_by_ref('layout', $layout); +$SMARTY->assignByRef('layout', $layout); if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { From cvs w lms.org.pl Fri Oct 14 18:08:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc (ChangeLog) Message-ID: <20111014160856.5DF7330278A1@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:56 Author: chilek Path: /cvsroot/lms/doc Modified: ChangeLog - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/ChangeLog.diff?&r1=1.1592&r2=1.1593 Index: lms/doc/ChangeLog diff -u lms/doc/ChangeLog:1.1592 lms/doc/ChangeLog:1.1593 --- lms/doc/ChangeLog:1.1592 Sat Sep 17 13:32:55 2011 +++ lms/doc/ChangeLog Fri Oct 14 18:08:56 2011 @@ -1,4 +1,4 @@ -$Id: ChangeLog,v 1.1592 2011/09/17 11:32:55 chilek Exp $ +$Id: ChangeLog,v 1.1593 2011/10/14 16:08:56 chilek Exp $ version ? (????-??-??): @@ -30,6 +30,11 @@ - helpdesk: ticket categories introduced [chilan] - documents: fixed aliases sql query in default template [chilan] - userpanel/helpdesk: missed customer id in footer of the notification mail [chilan] + - ported to Smarty 3 [chilan] + ----------------------------------------------------------------- + WARNING: This update changes required version of Smarty from 2.6 to 3.x. + It was quite strongly tested with Smarty 3.1.3 + ----------------------------------------------------------------- version 1.11.13 Dira (2011-04-07) From cvs w lms.org.pl Fri Oct 14 18:08:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/contrib/userpanel_modules/accounts/locale/pl (1 file) Message-ID: <20111014160856.219A530278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:56 Author: chilek Path: /cvsroot/lms/contrib/userpanel_modules/accounts/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/contrib/userpanel_modules/accounts/locale/pl/strings.php.diff?&r1=1.4&r2=1.5 Index: lms/contrib/userpanel_modules/accounts/locale/pl/strings.php diff -u lms/contrib/userpanel_modules/accounts/locale/pl/strings.php:1.4 lms/contrib/userpanel_modules/accounts/locale/pl/strings.php:1.5 --- lms/contrib/userpanel_modules/accounts/locale/pl/strings.php:1.4 Tue Jan 18 09:12:01 2011 +++ lms/contrib/userpanel_modules/accounts/locale/pl/strings.php Fri Oct 14 18:08:55 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.4 2011/01/18 08:12:01 alec Exp $ + * $Id: strings.php,v 1.5 2011/10/14 16:08:55 chilek Exp $ */ $_LANG['Add'] = 'Dodaj'; @@ -44,7 +44,7 @@ $_LANG['Runs problems solving center'] = 'Uruchamia centrum rozwi±zywania problemów'; $_LANG['Select:'] = 'Wybierz:'; $_LANG['Submit'] = 'Zapisz'; -$_LANG['There is no Help Center tree. Use $0this form$1 to add root item.'] = 'Nie ma jeszcze struktury Centrum Pomocy. Użyj $0tego formularza$1 aby dodaæ główn± pozycjê.'; +$_LANG['There is no Help Center tree. Use $athis form$b to add root item.'] = 'Nie ma jeszcze struktury Centrum Pomocy. Użyj $atego formularza$b aby dodaæ główn± pozycjê.'; $_LANG['This cannot be empty'] = 'To nie może byæ puste'; $_LANG['This module is not configured yet.'] = 'Ten moduł nie jest jeszcze skonfigurowany.'; $_LANG['This module shows problems solving center'] = 'Moduł ten wy¶wietla centrum rozwi±zywania problemów'; From cvs w lms.org.pl Fri Oct 14 18:08:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (5 files) Message-ID: <20111014160856.AA91C30278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:56 Author: chilek Path: /cvsroot/lms/lib Modified: LMS.class.php Sysinfo.class.php common.php definitions.php language.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/LMS.class.php.diff?&r1=1.1077&r2=1.1078 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Sysinfo.class.php.diff?&r1=1.32&r2=1.33 http://cvs.lms.org.pl/viewvc/Development/lms/lib/common.php.diff?&r1=1.127&r2=1.128 http://cvs.lms.org.pl/viewvc/Development/lms/lib/definitions.php.diff?&r1=1.36&r2=1.37 http://cvs.lms.org.pl/viewvc/Development/lms/lib/language.php.diff?&r1=1.56&r2=1.57 Index: lms/lib/LMS.class.php diff -u lms/lib/LMS.class.php:1.1077 lms/lib/LMS.class.php:1.1078 --- lms/lib/LMS.class.php:1.1077 Fri Oct 14 09:33:09 2011 +++ lms/lib/LMS.class.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMS.class.php,v 1.1077 2011/10/14 07:33:09 chilek Exp $ + * $Id: LMS.class.php,v 1.1078 2011/10/14 16:08:56 chilek Exp $ */ // LMS Class - contains internal LMS database functions used @@ -35,7 +35,7 @@ var $cache = array(); // internal cache var $hooks = array(); // registered plugin hooks var $_version = '1.11-cvs'; // class version - var $_revision = '$Revision: 1.1077 $'; + var $_revision = '$Revision: 1.1078 $'; function LMS(&$DB, &$AUTH, &$CONFIG) // class variables setting { @@ -1798,26 +1798,26 @@ break; case WEEKLY: $row['at'] = strftime("%a",mktime(0,0,0,0,$row['at']+5,0)); - $row['payday'] = trans('weekly ($0)', $row['at']); + $row['payday'] = trans('weekly ($a)', $row['at']); $row['period'] = trans('weekly'); break; case MONTHLY: - $row['payday'] = trans('monthly ($0)', $row['at']); + $row['payday'] = trans('monthly ($a)', $row['at']); $row['period'] = trans('monthly'); break; case QUARTERLY: $row['at'] = sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1); - $row['payday'] = trans('quarterly ($0)', $row['at']); + $row['payday'] = trans('quarterly ($a)', $row['at']); $row['period'] = trans('quarterly'); break; case HALFYEARLY: $row['at'] = sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1); - $row['payday'] = trans('half-yearly ($0)', $row['at']); + $row['payday'] = trans('half-yearly ($a)', $row['at']); $row['period'] = trans('half-yearly'); break; case YEARLY: $row['at'] = date('d/m',($row['at']-1)*86400); - $row['payday'] = trans('yearly ($0)', $row['at']); + $row['payday'] = trans('yearly ($a)', $row['at']); $row['period'] = trans('yearly'); break; } @@ -2671,19 +2671,19 @@ $row['payday'] = trans('daily'); break; case WEEKLY: - $row['payday'] = trans('weekly ($0)', strftime("%a",mktime(0,0,0,0,$row['at']+5,0))); + $row['payday'] = trans('weekly ($a)', strftime("%a",mktime(0,0,0,0,$row['at']+5,0))); break; case MONTHLY: - $row['payday'] = trans('monthly ($0)',$row['at']); + $row['payday'] = trans('monthly ($a)',$row['at']); break; case QUARTERLY: - $row['payday'] = trans('quarterly ($0)', sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1)); + $row['payday'] = trans('quarterly ($a)', sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1)); break; case HALFYEARLY: - $row['payday'] = trans('half-yearly ($0)', sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1)); + $row['payday'] = trans('half-yearly ($a)', sprintf('%02d/%02d', $row['at']%100, $row['at']/100+1)); break; case YEARLY: - $row['payday'] = trans('yearly ($0)', date('d/m',($row['at']-1)*86400)); + $row['payday'] = trans('yearly ($a)', date('d/m',($row['at']-1)*86400)); break; } @@ -2705,19 +2705,19 @@ $payment['payday'] = trans('daily'); break; case WEEKLY: - $payment['payday'] = trans('weekly ($0)', strftime("%a",mktime(0,0,0,0,$payment['at']+5,0))); + $payment['payday'] = trans('weekly ($a)', strftime("%a",mktime(0,0,0,0,$payment['at']+5,0))); break; case MONTHLY: - $payment['payday'] = trans('monthly ($0)',$payment['at']); + $payment['payday'] = trans('monthly ($a)',$payment['at']); break; case QUARTERLY: - $payment['payday'] = trans('quarterly ($0)', sprintf('%02d/%02d', $payment['at']%100, $payment['at']/100+1)); + $payment['payday'] = trans('quarterly ($a)', sprintf('%02d/%02d', $payment['at']%100, $payment['at']/100+1)); break; case HALFYEARLY: - $payment['payday'] = trans('half-yearly ($0)', sprintf('%02d/%02d', $payment['at']%100, $payment['at']/100+1)); + $payment['payday'] = trans('half-yearly ($a)', sprintf('%02d/%02d', $payment['at']%100, $payment['at']/100+1)); break; case YEARLY: - $payment['payday'] = trans('yearly ($0)', date('d/m',($payment['at']-1)*86400)); + $payment['payday'] = trans('yearly ($a)', date('d/m',($payment['at']-1)*86400)); break; } return $payment; @@ -2846,7 +2846,7 @@ for($i=30;$i>15;$i--) { $prefixlist['id'][] = $i; - $prefixlist['value'][] = trans('$0 ($1 addresses)', $i, pow(2,32-$i)); + $prefixlist['value'][] = trans('$a ($b addresses)', $i, pow(2,32-$i)); } return $prefixlist; @@ -3891,7 +3891,7 @@ case 'print_balance_list_limit': case 'networkhosts_pagelimit': if($value<=0) - return trans('Value of option "$0" must be a number grater than zero!' ,$var); + return trans('Value of option "$a" must be a number grater than zero!' ,$var); break; case 'reload_type': if($value != 'sql' && $value != 'exec') @@ -4352,9 +4352,9 @@ $dir = !empty($this->CONFIG['sms']['smstools_outdir']) ? $this->CONFIG['sms']['smstools_outdir'] : '/var/spool/sms/outgoing'; if(!file_exists($dir)) - return trans('SMSTools outgoing directory not exists ($0)!', $dir); + return trans('SMSTools outgoing directory not exists ($a)!', $dir); if(!is_writable($dir)) - return trans('Unable to write to SMSTools outgoing directory ($0)!', $dir); + return trans('Unable to write to SMSTools outgoing directory ($a)!', $dir); $filename = $dir.'/lms-'.$messageid.'-'.$number; $message = clear_utf($message); @@ -4366,7 +4366,7 @@ fclose($fp); } else - return trans('Unable to create file $0!', $filename); + return trans('Unable to create file $a!', $filename); return MSG_NEW; break; Index: lms/lib/Sysinfo.class.php diff -u lms/lib/Sysinfo.class.php:1.32 lms/lib/Sysinfo.class.php:1.33 --- lms/lib/Sysinfo.class.php:1.32 Tue Jan 18 09:12:05 2011 +++ lms/lib/Sysinfo.class.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: Sysinfo.class.php,v 1.32 2011/01/18 08:12:05 alec Exp $ + * $Id: Sysinfo.class.php,v 1.33 2011/10/14 16:08:56 chilek Exp $ */ /* @@ -113,7 +113,7 @@ $hostname=$return[0]; break; default: - $return = trans('unknown OS ($0)',PHP_OS); + $return = trans('unknown OS ($a)',PHP_OS); } if($hostname=='') $hostname='N.A.'; @@ -153,7 +153,7 @@ $result = uptimef($sys_ticks); break; default: - $result = trans('unknown OS ($0)',PHP_OS); + $result = trans('unknown OS ($a)',PHP_OS); break; } return $result; Index: lms/lib/common.php diff -u lms/lib/common.php:1.127 lms/lib/common.php:1.128 --- lms/lib/common.php:1.127 Wed Aug 31 12:46:45 2011 +++ lms/lib/common.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: common.php,v 1.127 2011/08/31 10:46:45 alec Exp $ + * $Id: common.php,v 1.128 2011/10/14 16:08:56 chilek Exp $ */ // Common functions, that making it in class would be nonsense :) @@ -102,7 +102,7 @@ $hostname=$return[0]; break; default: - $return = trans('unknown OS ($0)', PHP_OS); + $return = trans('unknown OS ($a)', PHP_OS); } if(!$hostname) @@ -524,7 +524,7 @@ function moneyf($value) { global $LANGDEFS, $_language; - return sprintf($LANGDEFS[$_language]['money_format'],$value); + return sprintf($LANGDEFS[$_language]['money_format'], $value); } if (!function_exists('bcmod')) @@ -659,7 +659,7 @@ $delta = time()-$timestamp; if ($delta > $CONFIG['phpui']['lastonline_limit']) { if($delta>59) - return trans('$0 ago ($1)', uptimef($delta), date('Y/m/d, H:i', $timestamp)); + return trans('$a ago ($1)', uptimef($delta), date('Y/m/d, H:i', $timestamp)); else return date('(Y/m/d, H:i)', $timestamp); } Index: lms/lib/definitions.php diff -u lms/lib/definitions.php:1.36 lms/lib/definitions.php:1.37 --- lms/lib/definitions.php:1.36 Tue Jan 18 09:12:05 2011 +++ lms/lib/definitions.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: definitions.php,v 1.36 2011/01/18 08:12:05 alec Exp $ + * $Id: definitions.php,v 1.37 2011/10/14 16:08:56 chilek Exp $ */ // that definitions should be included before LMS.class.php but after Smarty @@ -90,11 +90,11 @@ $GUARANTEEPERIODS = array( -1 => trans('lifetime'), 0 => trans('none'), - 12 => trans('$0 months', 12), + 12 => trans('$a months', 12), 24 => trans('24 months', 24), - 36 => trans('$0 months', 36), - 48 => trans('$0 months', 48), - 60 => trans('$0 months', 60) + 36 => trans('$a months', 36), + 48 => trans('$a months', 48), + 60 => trans('$a months', 60) ); // Internet Messengers Index: lms/lib/language.php diff -u lms/lib/language.php:1.56 lms/lib/language.php:1.57 --- lms/lib/language.php:1.56 Tue Feb 1 16:06:35 2011 +++ lms/lib/language.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: language.php,v 1.56 2011/02/01 15:06:35 alec Exp $ + * $Id: language.php,v 1.57 2011/10/14 16:08:56 chilek Exp $ */ function trans() @@ -37,7 +37,7 @@ for($i = 1; $i < $argc; $i++) { $arg = func_get_arg($i); - $content = str_replace('$'.($i-1), $arg, $content); + $content = str_replace('$'.chr(97+$i-1), $arg, $content); } return $content; } From cvs w lms.org.pl Fri Oct 14 18:08:57 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:57 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib/Smarty/plugins (9 files) Message-ID: <20111014160857.2831C30278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:57 Author: chilek Path: /cvsroot/lms/lib/Smarty/plugins Modified: block.t.php function.bankaccount.php function.gentime.php function.handle.php function.memory.php function.number.php function.size.php function.sum.php function.tip.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/block.t.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.bankaccount.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.gentime.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.handle.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.memory.php.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.number.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.size.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.sum.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/lib/Smarty/plugins/function.tip.php.diff?&r1=1.13&r2=1.14 Index: lms/lib/Smarty/plugins/block.t.php diff -u lms/lib/Smarty/plugins/block.t.php:1.8 lms/lib/Smarty/plugins/block.t.php:1.9 --- lms/lib/Smarty/plugins/block.t.php:1.8 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/block.t.php Fri Oct 14 18:08:56 2011 @@ -21,19 +21,23 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: block.t.php,v 1.8 2011/01/18 08:12:06 alec Exp $ + * $Id: block.t.php,v 1.9 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_block_t($args, $content, &$SMARTY) +function smarty_block_t($params, $content, &$template, &$repeat) { - if($SMARTY->_tpl_vars['_LANG'][$content]) - $content = trim($SMARTY->_tpl_vars['_LANG'][$content]); - - if(is_array($args)) - foreach($args as $argid => $argval) - $content = str_replace('$'.$argid, $argval, $content); + if (!empty($content)) + { + $lang = $template->getTemplateVars('_LANG'); + if($lang[$content]) + $content = trim($lang[$content]); - return trim($content); + if(is_array($params)) + foreach($params as $paramid => $paramval) + $content = str_replace('$'.$paramid, $paramval, $content); + + return trim($content); + } } ?> Index: lms/lib/Smarty/plugins/function.bankaccount.php diff -u lms/lib/Smarty/plugins/function.bankaccount.php:1.8 lms/lib/Smarty/plugins/function.bankaccount.php:1.9 --- lms/lib/Smarty/plugins/function.bankaccount.php:1.8 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.bankaccount.php Fri Oct 14 18:08:56 2011 @@ -21,12 +21,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.bankaccount.php,v 1.8 2011/01/18 08:12:06 alec Exp $ + * $Id: function.bankaccount.php,v 1.9 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_bankaccount($args, &$SMARTY) +function smarty_function_bankaccount($params, $template) { - return bankaccount($args['id'], $args['account']); + return bankaccount($params['id'], $params['account']); } ?> Index: lms/lib/Smarty/plugins/function.gentime.php diff -u lms/lib/Smarty/plugins/function.gentime.php:1.7 lms/lib/Smarty/plugins/function.gentime.php:1.8 --- lms/lib/Smarty/plugins/function.gentime.php:1.7 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.gentime.php Fri Oct 14 18:08:56 2011 @@ -21,16 +21,16 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.gentime.php,v 1.7 2011/01/18 08:12:06 alec Exp $ + * $Id: function.gentime.php,v 1.8 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_gentime($args,&$SMARTY) +function smarty_function_gentime($params, $template) { $time = microtime(); return sprintf('%.4f',((substr($time,0,9)) - + (substr($time,-10)) - - (substr(START_TIME,0,9)) - - (substr(START_TIME,-10)))); + + (substr($time,-10)) + - (substr(START_TIME,0,9)) + - (substr(START_TIME,-10)))); } ?> Index: lms/lib/Smarty/plugins/function.handle.php diff -u lms/lib/Smarty/plugins/function.handle.php:1.7 lms/lib/Smarty/plugins/function.handle.php:1.8 --- lms/lib/Smarty/plugins/function.handle.php:1.7 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.handle.php Fri Oct 14 18:08:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.handle.php,v 1.7 2011/01/18 08:12:06 alec Exp $ + * $Id: function.handle.php,v 1.8 2011/10/14 16:08:56 chilek Exp $ */ /* @@ -30,13 +30,13 @@ {handle name="nodeinfobox-end"} */ -function smarty_function_handle($args, &$SMARTY) +function smarty_function_handle($params, $template) { global $PLUGINS; // or maybe $SMARTY->_tpl_vars['PLUGINS'] assigned by ref. $result = ''; - if(isset($PLUGINS[$args['name']])) - foreach($PLUGINS[$args['name']] as $plugin) + if(isset($PLUGINS[$params['name']])) + foreach($PLUGINS[$params['name']] as $plugin) $result .= $SMARTY->fetch($plugin); return $result; Index: lms/lib/Smarty/plugins/function.memory.php diff -u lms/lib/Smarty/plugins/function.memory.php:1.3 lms/lib/Smarty/plugins/function.memory.php:1.4 --- lms/lib/Smarty/plugins/function.memory.php:1.3 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.memory.php Fri Oct 14 18:08:56 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.memory.php,v 1.3 2011/01/18 08:12:06 alec Exp $ + * $Id: function.memory.php,v 1.4 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_memory($args, &$SMARTY) +function smarty_function_memory($params, $template) { if (function_exists('memory_get_peak_usage')) return sprintf('(%.2f MB)', memory_get_peak_usage()/1024/1024); Index: lms/lib/Smarty/plugins/function.number.php diff -u lms/lib/Smarty/plugins/function.number.php:1.7 lms/lib/Smarty/plugins/function.number.php:1.8 --- lms/lib/Smarty/plugins/function.number.php:1.7 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.number.php Fri Oct 14 18:08:56 2011 @@ -21,14 +21,14 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.number.php,v 1.7 2011/01/18 08:12:06 alec Exp $ + * $Id: function.number.php,v 1.8 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_number($args,&$SMARTY) +function smarty_function_number($params, $template) { - $result = docnumber($args['number'], $args['template'], $args['time']); - if(isset($args['assign'])) - $SMARTY->assign($args['assign'], $result); + $result = docnumber($params['number'], $params['template'], $params['time']); + if(isset($params['assign'])) + $template->assign($params['assign'], $result); else return $result; } Index: lms/lib/Smarty/plugins/function.size.php diff -u lms/lib/Smarty/plugins/function.size.php:1.7 lms/lib/Smarty/plugins/function.size.php:1.8 --- lms/lib/Smarty/plugins/function.size.php:1.7 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.size.php Fri Oct 14 18:08:56 2011 @@ -21,12 +21,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.size.php,v 1.7 2011/01/18 08:12:06 alec Exp $ + * $Id: function.size.php,v 1.8 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_size($args, &$SMARTY) +function smarty_function_size($params, $template) { - $array = $args['of']; + $array = $params['of']; return sizeof($array); } Index: lms/lib/Smarty/plugins/function.sum.php diff -u lms/lib/Smarty/plugins/function.sum.php:1.7 lms/lib/Smarty/plugins/function.sum.php:1.8 --- lms/lib/Smarty/plugins/function.sum.php:1.7 Tue Jan 18 09:12:06 2011 +++ lms/lib/Smarty/plugins/function.sum.php Fri Oct 14 18:08:56 2011 @@ -21,23 +21,23 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.sum.php,v 1.7 2011/01/18 08:12:06 alec Exp $ + * $Id: function.sum.php,v 1.8 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_sum($args, &$SMARTY) +function smarty_function_sum($params, $template) { - $array = $args['array']; - $format = (isset($args['string_format']) ? $args['string_format'] : '%d'); - $default = (isset($args['default']) ? $args['default'] : 0); + $array = $params['array']; + $format = (isset($params['string_format']) ? $params['string_format'] : '%d'); + $default = (isset($params['default']) ? $params['default'] : 0); if($array) foreach($array as $row) if(is_array($row)) - $result += $row[$args['column']]; + $result += $row[$params['column']]; $result = isset($result) ? $result : $default; - if(isset($args['assign'])) - $SMARTY->assign($args['assign'], $result); + if(isset($params['assign'])) + $template->assign($params['assign'], $result); else return sprintf($format, $result); } Index: lms/lib/Smarty/plugins/function.tip.php diff -u lms/lib/Smarty/plugins/function.tip.php:1.13 lms/lib/Smarty/plugins/function.tip.php:1.14 --- lms/lib/Smarty/plugins/function.tip.php:1.13 Tue Mar 8 19:07:12 2011 +++ lms/lib/Smarty/plugins/function.tip.php Fri Oct 14 18:08:56 2011 @@ -21,61 +21,63 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: function.tip.php,v 1.13 2011/03/08 18:07:12 alec Exp $ + * $Id: function.tip.php,v 1.14 2011/10/14 16:08:56 chilek Exp $ */ -function smarty_function_tip($args, &$SMARTY) +function smarty_function_tip($params, $template) { - if ($popup = $args['dynpopup']) + if ($popup = $params['dynpopup']) { - if(is_array($args)) - foreach($args as $argid => $argval) - $popup = str_replace('$'.$argid, $argval, $popup); + if(is_array($params)) + foreach($params as $paramid => $paramval) + $popup = str_replace('$'.$paramid, $paramval, $popup); - $text = " onmouseover=\"popup('$popup',1,".((int)$args['sticky']).",30,15)\" onmouseout=\"pophide()\""; + $text = " onmouseover=\"popup('$popup',1,".((int)$params['sticky']).",30,15)\" onmouseout=\"pophide()\""; return $text; } - else if ($popup = $args['popup']) + else if ($popup = $params['popup']) { - if(is_array($args)) - foreach($args as $argid => $argval) - $popup = str_replace('$'.$argid, $argval, $popup); + if(is_array($params)) + foreach($params as $paramid => $paramval) + $popup = str_replace('$'.$paramid, $paramval, $popup); - $text = " onclick=\"popup('$popup',1,".((int)$args['sticky']).",10,10)\" onmouseout=\"pophide();\""; + $text = " onclick=\"popup('$popup',1,".((int)$params['sticky']).",10,10)\" onmouseout=\"pophide();\""; return $text; } else { - if($SMARTY->_tpl_vars['error'][$args['trigger']]) - { - $error = str_replace("'",'\\\'',$SMARTY->_tpl_vars['error'][$args['trigger']]); - $error = str_replace('"','"',$error); - $error = str_replace("\r",'',$error); - $error = str_replace("\n",'
',$error); - - $result = ' onmouseover="popup(\''.$error.'\')" onmouseout="pophide()" '; - $result .= $args['bold'] ? 'CLASS="alert bold" ' : ' CLASS="alert" '; - } - elseif($args['text'] != '') - { - $text = $args['text']; - if($SMARTY->_tpl_vars['_LANG'][$text]) - $text = trim($SMARTY->_tpl_vars['_LANG'][$text]); - - if(is_array($args)) - foreach($args as $argid => $argval) - $text = str_replace('$'.$argid, $argval, $text); - - $text = str_replace('\'','\\\'',$text); - $text = str_replace('"','"',$text); - $text = str_replace("\r",'',$text); - $text = str_replace("\n",'
',$text); - - $result .= 'onmouseover="popup(\''.$text.'\')" onmouseout="pophide()" '; - $result .= $args['bold'] ? 'CLASS="bold" ' : ''; - } + $tmpl = $template->getTemplateVars('error'); + if($tmpl[$params['trigger']]) + { + $error = str_replace("'", '\\\'', $tmpl[$params['trigger']]); + $error = str_replace('"', '"', $error); + $error = str_replace("\r", '', $error); + $error = str_replace("\n", '
', $error); + + $result = ' onmouseover="popup(\''.$error.'\')" onmouseout="pophide()" '; + $result .= $params['bold'] ? 'CLASS="alert bold" ' : ' CLASS="alert" '; + } + elseif($params['text'] != '') + { + $text = $params['text']; + $tmpl = $template->getTemplateVars('_LANG'); + if($tmpl[$text]) + $text = trim($tmpl[$text]); + + if(is_array($params)) + foreach($params as $paramid => $paramval) + $text = str_replace('$'.$paramid, $paramval, $text); + + $text = str_replace('\'', '\\\'', $text); + $text = str_replace('"', '"', $text); + $text = str_replace("\r", '', $text); + $text = str_replace("\n", '
', $text); + + $result .= 'onmouseover="popup(\''.$text.'\')" onmouseout="pophide()" '; + $result .= $params['bold'] ? 'CLASS="bold" ' : ''; + } - return $result; + return $result; } } From cvs w lms.org.pl Fri Oct 14 18:08:57 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:57 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib/locale/ro (strings.php) Message-ID: <20111014160857.ACDCC30278A3@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:57 Author: chilek Path: /cvsroot/lms/lib/locale/ro Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/locale/ro/strings.php.diff?&r1=1.16&r2=1.17 Index: lms/lib/locale/ro/strings.php diff -u lms/lib/locale/ro/strings.php:1.16 lms/lib/locale/ro/strings.php:1.17 --- lms/lib/locale/ro/strings.php:1.16 Tue Jan 18 09:12:07 2011 +++ lms/lib/locale/ro/strings.php Fri Oct 14 18:08:57 2011 @@ -21,18 +21,18 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.16 2011/01/18 08:12:07 alec Exp $ + * $Id: strings.php,v 1.17 2011/10/14 16:08:57 chilek Exp $ */ -$_LANG['$0 ($1 addresses)'] = '$0 ($1 adrese)'; -$_LANG['$0 addresses'] = '$0 adrese'; -$_LANG['$0 ago ($1)'] = '$0 înainte ($1)'; -$_LANG['$0 at least one year old records have been removed.
'] = '$0 înregistrările de cel puțin un an au fost șterse.
'; -$_LANG['$0 dollars $1 cents'] = '$0 RON $1 bani'; -$_LANG['$0 of $1 ($2): $3 <$4>'] = '$0 din $1 ($2): $3 <$4>'; -$_LANG['$0 records after compacting.'] = '$0 înregistrări după compactare.'; -$_LANG['$0 records before compacting.
'] = '$0 înregistrări înainte de compactare.
'; -$_LANG['$0 - removed, $1 - inserted
'] = '$0 - șterse, $1 - introduse
'; +$_LANG['$a ($b addresses)'] = '$a ($b adrese)'; +$_LANG['$a addresses'] = '$a adrese'; +$_LANG['$a ago ($b)'] = '$a înainte ($b)'; +$_LANG['$a at least one year old records have been removed.
'] = '$a înregistrările de cel puțin un an au fost șterse.
'; +$_LANG['$a dollars $b cents'] = '$a RON $b bani'; +$_LANG['$a of $b ($c): $d <$4>'] = '$a din $b ($c): $d <$4>'; +$_LANG['$a records after compacting.'] = '$a înregistrări după compactare.'; +$_LANG['$a records before compacting.
'] = '$a înregistrări înainte de compactare.
'; +$_LANG['$a - removed, $b - inserted
'] = '$a - șterse, $b - introduse
'; $_LANG['30 days'] = '30 zile'; $_LANG['365 days'] = '365 zile'; $_LANG['7 days'] = '7 zile'; @@ -43,7 +43,7 @@ $_LANG['Account'] = 'Cont'; $_LANG['Account:'] = 'Cont:'; $_LANG['Accounted'] = 'Contabilizat'; -$_LANG['Account Edit: $0'] = 'Editare cont: $0'; +$_LANG['Account Edit: $a'] = 'Editare cont: $a'; $_LANG['Accounting day:'] = 'Zi contabilitate:'; $_LANG['Account payment'] = 'Plată cont'; $_LANG['Account'] = 'Cont'; @@ -122,18 +122,18 @@ $_LANG['Answer'] = 'Răspuns'; $_LANG['Approved By'] = 'Aprobat De'; $_LANG['Are you sure that you want to logout?'] = 'Sunteți sigur că vreți să ieșiți?'; -$_LANG['Are you sure, you want to account ALL debts of customer \\\'$0\\\'?'] = 'Sunteți sigur că vreți să contabilizați TOATE datoriile utilizatorului \\\'$0\\\'?'; +$_LANG['Are you sure, you want to account ALL debts of customer \\\'$a\\\'?'] = 'Sunteți sigur că vreți să contabilizați TOATE datoriile utilizatorului \\\'$a\\\'?'; $_LANG['Are you sure, you want to assign new addresses for all computers? Remember, it can make problems for your network!'] = 'Sunteți sigur că vreți să stabiliți noi adrese pt. toate calculatoarele? Rețineți, poate cauza probleme rețelei!'; -$_LANG['Are you sure, you want to change network $0 to network \'+getText(document.remap.mapto.value)+\'?'] = 'Sunteți sigur că vreți să schimbați rețeaua $0 cu rețeaua \'+getText(document.remap.mapto.value)+\'?'; +$_LANG['Are you sure, you want to change network $a to network \'+getText(document.remap.mapto.value)+\'?'] = 'Sunteți sigur că vreți să schimbați rețeaua $a cu rețeaua \'+getText(document.remap.mapto.value)+\'?'; $_LANG['Are you sure, you want to check/uncheck selected invoices as accounted?'] = 'Sunteți sigur că vreți să selectați/deselectați factura selectată ca și contabilizată?'; -$_LANG['Are you sure, you want to delete account \\\'$0\\\' and all assigned to them aliases?'] = 'Sunteți sigur că vreți să ștergeți contul \\\'$0\\\' și toate alias-urile atribuite acestuia?'; -$_LANG['Are you sure, you want to delete address \\\'$0\\\' from database?'] = 'Sunteți sigur că vreți să ștergeți adresa \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to delete alias: \\\'$0\\\'?'] = 'Sunteți sigur că vreți să ștergeți alias-ul: \\\'$0\\\'?'; -$_LANG['Are you sure, you want to delete database backup created at $0 ?'] = 'Sunteți sigur că vreți să ștergeți : $0 ?'; -$_LANG['Are you sure, you want to delete domain: \\\'$0\\\' and all accounts in that domain?'] = 'Sunteți sigur, vreți să ștergeți domeniul: \\\'$0\\\' și toate conturile din acel domeniu?'; -$_LANG['Are you sure, you want to delete node $0?'] = 'Sunteți sigur, vreți să ștergeți calculatorul $0?'; -$_LANG['Are you sure, you want to delete node \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți calculatorul \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to delete option \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți optiunea \\\'$0\\\' din baza de date?'; +$_LANG['Are you sure, you want to delete account \\\'$a\\\' and all assigned to them aliases?'] = 'Sunteți sigur că vreți să ștergeți contul \\\'$a\\\' și toate alias-urile atribuite acestuia?'; +$_LANG['Are you sure, you want to delete address \\\'$a\\\' from database?'] = 'Sunteți sigur că vreți să ștergeți adresa \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to delete alias: \\\'$a\\\'?'] = 'Sunteți sigur că vreți să ștergeți alias-ul: \\\'$a\\\'?'; +$_LANG['Are you sure, you want to delete database backup created at $a ?'] = 'Sunteți sigur că vreți să ștergeți : $a ?'; +$_LANG['Are you sure, you want to delete domain: \\\'$a\\\' and all accounts in that domain?'] = 'Sunteți sigur, vreți să ștergeți domeniul: \\\'$a\\\' și toate conturile din acel domeniu?'; +$_LANG['Are you sure, you want to delete node $a?'] = 'Sunteți sigur, vreți să ștergeți calculatorul $a?'; +$_LANG['Are you sure, you want to delete node \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți calculatorul \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to delete option \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți optiunea \\\'$a\\\' din baza de date?'; $_LANG['Are you sure, you want to delete selected operation(s) and/or invoice item(s)?'] = 'Sunteți sigur, vreți să ștergeți operațiunea și/sau obiectul(le) facturii?'; $_LANG['Are you sure, you want to delete that connection?'] = 'Sunteți sigur, vreți să ștergeți conexiunea?'; $_LANG['Are you sure, you want to delete that device?'] = 'Sunteți sigur, vreți să ștergeți echipamentul?'; @@ -144,27 +144,27 @@ $_LANG['Are you sure, you want to delete that tariff?'] = 'Sunteți sigur, vreți să ștergeți tariful?'; $_LANG['Are you sure, you want to delete this database backup?'] = 'Sunteți sigur, vreți să ștergeți copia de siguranță a bazei de date?'; $_LANG['Are you sure, you want to delete this liability?'] = 'Sunteți sigur, vreți să ștergeți datoria?'; -$_LANG['Are you sure, you want to drop user $0 from that event?'] = 'Sunteți sigur, vreți să ștergeți utilizatorul $0 din acel eveniment?'; +$_LANG['Are you sure, you want to drop user $a from that event?'] = 'Sunteți sigur, vreți să ștergeți utilizatorul $a din acel eveniment?'; $_LANG['Are you sure, you want to generate new password?'] = 'Sunteți sigur, vreți să generați parolă nouă?'; $_LANG['Are you sure, you want to generate new PIN?'] = 'Sunteți sigur, vreți să generați PIN nou?'; $_LANG['Are you sure, you want to irreversibly delete that user account?'] = 'Sunteți sigur, vreți să ștergeți permanent acel cont?'; $_LANG['Are you sure, you want to move customers to tariff \'+getText(document.tmove.to.value)+\'?'] = 'Sunteți sigur, vreți să mutați clientul la abonamentul \'+getText(document.tmove.to.value)+\'?'; -$_LANG['Are you sure, you want to readdress network $0 to network $1 ?'] = 'Sunteți sigur, vreți să readresați rețeaua $0 la rețeaua $1 ?'; -$_LANG['Are you sure, you want to recover database created at $0?'] = 'Sunteți sigur, vreți să recuperați baza de date creată la $0?'; -$_LANG['Are you sure, you want to remove customer \\\'$0\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Sunteți sigur, vreți să ștergeți clientul \\\'$0\\\' din baza de date?\\n\\nDacă clientul are câteva calculatoare, ele vor fi șterse si datele complet pierdute!'; +$_LANG['Are you sure, you want to readdress network $a to network $b ?'] = 'Sunteți sigur, vreți să readresați rețeaua $a la rețeaua $b ?'; +$_LANG['Are you sure, you want to recover database created at $a?'] = 'Sunteți sigur, vreți să recuperați baza de date creată la $a?'; +$_LANG['Are you sure, you want to remove customer \\\'$a\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Sunteți sigur, vreți să ștergeți clientul \\\'$a\\\' din baza de date?\\n\\nDacă clientul are câteva calculatoare, ele vor fi șterse si datele complet pierdute!'; $_LANG['Are you sure, you want to remove customer from group?'] = 'Sunteți sigur, vreți să ștergeți clientul din categorie?'; -$_LANG['Are you sure, you want to remove device \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți echipamentul \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to remove host \\\'$0\\\' and all assigned configuration?'] = 'Sunteți sigur, vreți să ștergeți host-ul \\\'$0\\\' și toată configurația atribuită?'; -$_LANG['Are you sure, you want to remove instance \\\'$0\\\' and all assigned configuration?'] = 'Sunteți sigur, vreți să ștergeți instanța \\\'$0\\\' și toată configuratia atribuită?'; -$_LANG['Are you sure, you want to remove invoice \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți factura \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to remove network \\\'$0\\\'?'] = 'Sunteți sigur, vreți să ștergeți rețeaua \\\'$0\\\'?'; -$_LANG['Are you sure, you want to remove node \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți calculatorul \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to remove option \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți opțiunea \\\'$0\\\' din baza de date?'; -$_LANG['Are you sure, you want to remove queue \\\'$0\\\' and all assigned tickets and messages?'] = 'Sunteți sigur, vreți să ștergeți coada \\\'$0\\\' si toate reclamațiile și mesajele atribuite?'; -$_LANG['Are you sure, you want to remove receipt \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți chitanța nr \\\'$0\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove device \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți echipamentul \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove host \\\'$a\\\' and all assigned configuration?'] = 'Sunteți sigur, vreți să ștergeți host-ul \\\'$a\\\' și toată configurația atribuită?'; +$_LANG['Are you sure, you want to remove instance \\\'$a\\\' and all assigned configuration?'] = 'Sunteți sigur, vreți să ștergeți instanța \\\'$a\\\' și toată configuratia atribuită?'; +$_LANG['Are you sure, you want to remove invoice \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți factura \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove network \\\'$a\\\'?'] = 'Sunteți sigur, vreți să ștergeți rețeaua \\\'$a\\\'?'; +$_LANG['Are you sure, you want to remove node \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți calculatorul \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove option \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți opțiunea \\\'$a\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove queue \\\'$a\\\' and all assigned tickets and messages?'] = 'Sunteți sigur, vreți să ștergeți coada \\\'$a\\\' si toate reclamațiile și mesajele atribuite?'; +$_LANG['Are you sure, you want to remove receipt \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți chitanța nr \\\'$a\\\' din baza de date?'; $_LANG['Are you sure, you want to remove that customer from database?\\n\\nIf that customer have any computers, they will be automatically removed from database too, and information about them irreversible losed!'] = 'Sunteți sigur, vreți să ștergeți acel client din baza de date?\\n\\nDacă acel client are calculatoare, ele vor fi șterse automat din baza de date la fel, și informațiile despre ele pierdute ireversibil!'; $_LANG['Are you sure, you want to remove this group?'] = 'Sunteți sigur, vreți să ștergeți acest grup?'; -$_LANG['Are you sure, you want to remove ticket $0?'] = 'Sunteți sigur, vreți să ștergeți reclamația nr $0?'; +$_LANG['Are you sure, you want to remove ticket $a?'] = 'Sunteți sigur, vreți să ștergeți reclamația nr $a?'; $_LANG['Are you sure, you want to reorder that network?'] = 'Sunteți sigur, vreți să rearanjați acea rețea?'; $_LANG['Are you sure, you want to restore this database backup?'] = 'Sunteți sigur, vreți să restaurați această bază de date?'; $_LANG['ascending'] = 'crescător'; @@ -176,15 +176,15 @@ $_LANG['Avg. monthly income:'] = 'Câștig lunar mediu:'; $_LANG['awaiting'] = 'în așteptare'; $_LANG['List of awaiting customers'] = 'Listă clienți în așteptare'; -$_LANG['$0'] = '$0'; +$_LANG['$a'] = '$a'; $_LANG['Backup Delete'] = 'Șterge Backup'; $_LANG['Backups'] = 'Copii de Siguranță'; $_LANG['Balance'] = 'Balanță'; $_LANG['Balance:'] = 'Balanță:'; $_LANG['Balance date:'] = 'Dată Balanță:'; $_LANG['Balance Sheet'] = 'Pagină Balanță'; -$_LANG['Balance Sheet ($0 to $1)'] = 'Pagină Balanță ($0 la $1)'; -$_LANG['Balance Sheet of User: $0 ($1 to $2)'] = 'Pagină Balanță de Utilizatori: $0 ($1 do $2)'; +$_LANG['Balance Sheet ($a to $b)'] = 'Pagină Balanță ($a la $b)'; +$_LANG['Balance Sheet of User: $a ($b to $c)'] = 'Pagină Balanță de Utilizatori: $a ($b do $c)'; $_LANG['Allows you to logout'] = 'Vă permite să ieșiți'; $_LANG['Basic system information'] = 'Informații sistem de bază'; $_LANG['Begin:'] = 'Început:'; @@ -202,7 +202,7 @@ $_LANG['CASH'] = 'CASH'; $_LANG['Cash Operations Import'] = 'Cash Operations Import'; $_LANG['Cash receipt'] = 'Chitanța'; -$_LANG['Cash Receipt No. $0'] = 'Chitanța Nr $0'; +$_LANG['Cash Receipt No. $a'] = 'Chitanța Nr $a'; $_LANG['Cash Receipts'] = 'Chitanța'; $_LANG['Cash receipt template file. Default: "receipt.html". Should be placed in templates directory.'] = 'Șablon Chitanța. Prestabilit: "receipt.html". Ar trebui pus în directorul templates.'; $_LANG['Cash Report'] = 'Raport Bani'; @@ -236,10 +236,10 @@ $_LANG['Compacting of database removes non-essential data from database and averages existing data. This will decrease number of records in database and reduce results latency, but also decrease stats precision.'] = 'Compactarea bazei de date elimină datele neesențiale din baza de date și face o medie a datelor existente. Aceasta va micșora numărul de înregistrări din baza de date și va reduce latența rezultatelor, dar va micșora și precizia statisticilor'; $_LANG['Compacting parameters'] = 'Compactare parametri'; $_LANG['compressed'] = 'compresat'; -$_LANG['Statistics for computer $0 has been removed
'] = 'Statisticile pt. calculatorul $0 au fost eliminate
'; +$_LANG['Statistics for computer $a has been removed
'] = 'Statisticile pt. calculatorul $a au fost eliminate
'; $_LANG['Computers found:'] = 'Calculatoare găsite:'; $_LANG['Configuration'] = 'Configurare'; -$_LANG['Configuration of Instance: $0/$1'] = 'Configurare a Instanței: $0/$1'; +$_LANG['Configuration of Instance: $a/$b'] = 'Configurare a Instanței: $a/$b'; $_LANG['configuration reload'] = 'reâncărcare configurație'; $_LANG['Configuration Reload'] = 'Reâncărcare Configurație'; $_LANG['Confirm password'] = 'Confirmare parola'; @@ -250,7 +250,7 @@ $_LANG['connected'] = 'conectați'; $_LANG['connected'] = 'conectat'; $_LANG['Connected:'] = 'Conectat:'; -$_LANG['List of Connected Customers $0$1'] = 'Lista cu clienți conectați $0$1'; +$_LANG['List of Connected Customers $a$b'] = 'Lista cu clienți conectați $a$b'; $_LANG['Connected devices:'] = 'Echipamente conectate:'; $_LANG['Connected Nodes:'] = 'Calculatoare Conectate:'; $_LANG['List of Connected Nodes'] = 'Lista calculatoarelor conectate'; @@ -266,7 +266,7 @@ $_LANG['Copyrights, authors, etc.'] = 'Drepturi de autor, autori, etc.'; $_LANG['Create alias'] = 'Crează alias'; $_LANG['Created:'] = 'Creat:'; -$_LANG['Created by: $0'] = 'Creat de: $0'; +$_LANG['Created by: $a'] = 'Creat de: $a'; $_LANG['Create new'] = 'Crează nou'; $_LANG['Create time:'] = 'Data creării:'; $_LANG['Generating subscriptions...'] = 'Generează abonamente...'; @@ -278,26 +278,26 @@ $_LANG['customer'] = 'client'; $_LANG['Customer'] = 'Clientul'; $_LANG['Customer:'] = 'Clientul:'; -$_LANG['Customer $0 Balance Sheet ($1 to $2)'] = 'Bilanț client $0 (de la $1 până la $2)'; -$_LANG['Customer $0 has been removed.'] = 'Clientul $0 a fost șters.'; +$_LANG['Customer $a Balance Sheet ($b to $c)'] = 'Bilanț client $a (de la $b până la $c)'; +$_LANG['Customer $a has been removed.'] = 'Clientul $a a fost șters.'; $_LANG['Customer Account:'] = 'Cont client:'; -$_LANG['Customer Balance: $0'] = 'Balanță client: $0'; +$_LANG['Customer Balance: $a'] = 'Balanță client: $a'; $_LANG['Customer Balance Sheet'] = 'Bilanț client'; $_LANG['Customer cannot send message!'] = 'Clientul nu poate trimite mesaj!'; -$_LANG['Customer Charging Edit: $0'] = 'Editare notă de plată client: $0'; -$_LANG['Customer Edit: $0'] = 'Editare client: $0'; +$_LANG['Customer Charging Edit: $a'] = 'Editare notă de plată client: $a'; +$_LANG['Customer Edit: $a'] = 'Editare client: $a'; $_LANG['customer ID'] = 'identficator client'; $_LANG['Customer ID'] = 'Identificator client'; $_LANG['Customer ID:'] = 'Identificator client:'; -$_LANG['Customer Info: $0'] = 'Informații despre client: $0'; -$_LANG['Customer Information: $0'] = 'Informații despre client: $0'; +$_LANG['Customer Info: $a'] = 'Informații despre client: $a'; +$_LANG['Customer Information: $a'] = 'Informații despre client: $a'; $_LANG['Customer Liabilities:'] = 'Datorii client:'; $_LANG['customer name'] = 'nume client'; $_LANG['Customer name'] = 'Nume client'; -$_LANG['Customer No.: $0'] = 'Număr client: $0'; -$_LANG['Customer Nodes ($0):'] = 'Calculatoarele client ($0):'; +$_LANG['Customer No.: $a'] = 'Număr client: $a'; +$_LANG['Customer Nodes ($a):'] = 'Calculatoarele client ($a):'; $_LANG['Customer not selected!'] = 'Nici un client selectat!'; -$_LANG['Customer Remove: $0'] = 'Eliminare client: $0'; +$_LANG['Customer Remove: $a'] = 'Eliminare client: $a'; $_LANG['Customers'] = 'Clienți'; $_LANG['Customers:'] = 'Clienți:'; $_LANG['Customer Search'] = 'Căutare client'; @@ -305,10 +305,10 @@ $_LANG['Customers in Subscription:'] = 'Clienți în Abonament :'; $_LANG['Customers List'] = 'Listă clienți'; $_LANG['Customers List:'] = 'Listă clienți:'; -$_LANG['Customers List $0$1'] = 'Lista clienți $0$1'; +$_LANG['Customers List $a$b'] = 'Lista clienți $a$b'; $_LANG['Customers: list, add, search, groups'] = 'Clienți: lista, adaugă, caută, categorii'; $_LANG['customers management'] = 'management clienți'; -$_LANG['Customers Without Nodes List $0$1'] = 'Lista clienți fără calculatoare $0$1'; +$_LANG['Customers Without Nodes List $a$b'] = 'Lista clienți fără calculatoare $a$b'; $_LANG['CVS Repository'] = 'Repozitoriu CVS'; $_LANG['Daemon'] = 'Demon'; $_LANG['daemon management and configuration'] = 'management și configurare demonem'; @@ -338,19 +338,19 @@ $_LANG['deleted'] = 'Șterși'; $_LANG['Delete data older than one year'] = 'Șterge date mai vechi de un an'; $_LANG['deleted customer'] = 'client șters'; -$_LANG['Delete Node $0'] = 'Șterge calculator $0'; +$_LANG['Delete Node $a'] = 'Șterge calculator $a'; $_LANG['Delete stats of non-existing (deleted) nodes'] = 'Șterge statistici ale calculatoarelor inexistente (șterse)'; $_LANG['Deletion of Database Backup'] = 'Usuniêcie kopii zapasowej baza de date'; -$_LANG['Deletion of Device with ID: $0'] = 'Ștergere Echipament cu ID: $0'; +$_LANG['Deletion of Device with ID: $a'] = 'Ștergere Echipament cu ID: $a'; $_LANG['descending'] = 'descrescător'; $_LANG['Description'] = 'Descriere'; $_LANG['Description:'] = 'Descriere:'; $_LANG['Details'] = 'Detalii'; $_LANG['Device connected to other device or node can\'t be deleted.'] = 'Un echipament conectat la un alt echipament sau calculaotr nu poate fi șters.'; -$_LANG['Device Edit: $0 ($1)'] = 'Editare echipament: $0 ($1)'; +$_LANG['Device Edit: $a ($b)'] = 'Editare echipament: $a ($b)'; $_LANG['No free ports on device!'] = 'Nu mai sunt porturi libere in acest echipament!'; $_LANG['No IP addresses on device.'] = 'Echipamentul nu are alocat nici un IP'; -$_LANG['Device Info: $0 $1 $2'] = 'Informatii echipament: $0 $1 $2'; +$_LANG['Device Info: $a $b $c'] = 'Informatii echipament: $a $b $c'; $_LANG['Device name is required!'] = 'Nume echipament este obligatoriu de completat!'; $_LANG['Device name is too long (max.32 characters)!'] = 'Nume echipament este prea lung (max. 32 caractere)!'; $_LANG['IP addresses of device:'] = 'Adresele ip ale echipamentului:'; @@ -370,7 +370,7 @@ $_LANG['disconnected'] = 'deconectat'; $_LANG['Disconnected:'] = 'Deconectați:'; $_LANG['Documents List'] = 'Listă documente'; -$_LANG['List of Disconnected Customers $0$1'] = 'Listă Clienți Deconectați $0$1'; +$_LANG['List of Disconnected Customers $a$b'] = 'Listă Clienți Deconectați $a$b'; $_LANG['List of Disconnected Nodes'] = 'Listă Calculatoare Deconectate'; $_LANG['Discount:'] = 'Reducere:'; $_LANG['Display customers matching the following criteria:'] = 'Afișare clienți corespunzând cu următorul criteriu:'; @@ -387,7 +387,7 @@ $_LANG['Documentation'] = 'Documentație'; $_LANG['Document with specified number exists!'] = 'Documentul cu numărul specificat există deja!'; $_LANG['Domain:'] = 'Domeniu:'; -$_LANG['Domain Edit: $0'] = 'Editare domeniu: $0'; +$_LANG['Domain Edit: $a'] = 'Editare domeniu: $a'; $_LANG['Domain name is required!'] = 'Nume domeniu este obligatoriu de completat!'; $_LANG['Domains'] = 'Domenii'; $_LANG['Domains List'] = 'Listă domenii'; @@ -398,8 +398,8 @@ $_LANG['Download rate:'] = 'Download rate:'; $_LANG['Downrate:'] = 'Downrate:'; $_LANG['Downrate (ceil):'] = 'Downrate (ceil):'; -$_LANG['Do you want to remove $0 customer?'] = 'Vrei să elimini clientul $0?'; -$_LANG['Do you want to remove queue called $0?'] = 'Vrei să elimini coada numită $0?'; +$_LANG['Do you want to remove $a customer?'] = 'Vrei să elimini clientul $a?'; +$_LANG['Do you want to remove queue called $a?'] = 'Vrei să elimini coada numită $a?'; $_LANG['Draw-up date'] = 'Data emiterii'; $_LANG['Draw-up date:'] = 'Data emiterii:'; $_LANG['Edit'] = 'Editează'; @@ -546,7 +546,7 @@ $_LANG['entries'] = 'intrări'; $_LANG['Error:'] = 'Eroare:'; $_LANG['Error!'] = 'Eroare!'; -$_LANG['Error: Unknown reload type: "$0"!'] = 'Eroare: Tip de reâncărcare necunoscut: "$0"!'; +$_LANG['Error: Unknown reload type: "$a"!'] = 'Eroare: Tip de reâncărcare necunoscut: "$a"!'; $_LANG['Event Edit'] = 'Editează Eveniment'; $_LANG['Event Info'] = 'Informații despre Eveniment'; $_LANG['Event Search'] = 'Căutare Eveniment'; @@ -594,9 +594,9 @@ $_LANG['Gross value'] = 'Valoare brută'; $_LANG['Gross Value:'] = 'Valoare brută:'; $_LANG['Group:'] = 'Categorie:'; -$_LANG['(Group: $0)'] = '(Categorie: $0)'; -$_LANG['Group Edit: $0'] = 'Editare categorie: $0'; -$_LANG['Group Info: $0'] = 'Informații despre grupie: $0'; +$_LANG['(Group: $a)'] = '(Categorie: $a)'; +$_LANG['Group Edit: $a'] = 'Editare categorie: $a'; +$_LANG['Group Info: $a'] = 'Informații despre grupie: $a'; $_LANG['Group List'] = 'Listă categorie'; $_LANG['Group members:'] = 'Membri categorie:'; $_LANG['Group name is too long!'] = 'Nume categorie prea lung!'; @@ -604,7 +604,7 @@ $_LANG['Groups'] = 'Categoriile'; $_LANG['Groups Membership:'] = 'Membru al categoriilor:'; $_LANG['Group with members cannot be deleted!'] = 'Categoriile cu membri nu pot fi șterse!'; -$_LANG['Group with name $0 already exists!'] = 'Categoria cu nume $0 există deja!'; +$_LANG['Group with name $a already exists!'] = 'Categoria cu nume $a există deja!'; $_LANG['Has'] = 'Are'; $_LANG['Headers:'] = 'Headers:'; $_LANG['Helpdesk'] = 'Helpdesk'; @@ -615,7 +615,7 @@ $_LANG['High'] = 'Înalt'; $_LANG['Homedir:'] = 'Homedir:'; $_LANG['Host:'] = 'Host:'; -$_LANG['Host Edit: $0'] = 'Editare host: $0'; +$_LANG['Host Edit: $a'] = 'Editare host: $a'; $_LANG['Hostname:'] = 'Nume Host:'; $_LANG['Host name is required!'] = 'Nume host este obligatoriu de completat!'; $_LANG['Hosts List'] = 'Listă host-uri'; @@ -674,12 +674,12 @@ $_LANG['Incorrect ZIP code!'] = 'Incorect: Cod Poștal!'; $_LANG['in debt'] = 'datornici'; $_LANG['Nodes List for Customers In Debt'] = 'Listă calculatoare pentru clienți in datorie'; -$_LANG['Indebted Customers List $0$1'] = 'Lista clienți îndatorați $0$1'; +$_LANG['Indebted Customers List $a$b'] = 'Lista clienți îndatorați $a$b'; $_LANG['indebted owner'] = 'deținător îndatorat'; $_LANG['Info'] = 'Informații'; -$_LANG['Info Network: $0'] = 'Informații despre Rețea: $0'; +$_LANG['Info Network: $a'] = 'Informații despre Rețea: $a'; $_LANG['in it:'] = 'in acesta:'; -$_LANG['Instance Edit: $0'] = 'Editare instanță: $0'; +$_LANG['Instance Edit: $a'] = 'Editare instanță: $a'; $_LANG['Instance host is required!'] = 'Host-ul instanței este obligatoriu de completat!'; $_LANG['Instance module is required!'] = 'Modulul instanței este obligatoriu de completat!'; $_LANG['Instance name is required!'] = 'Numele instanței este obligatoriu de completat!'; @@ -692,29 +692,29 @@ $_LANG['Interested Customers List'] = 'Listă clienți interesați'; $_LANG['Interface:'] = 'Interfață:'; $_LANG['Invalid chars in group name!'] = 'Caractere invalide în numele categoriei!'; -$_LANG['Invalid date format: $0.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Incorect: forma datei: $0.\\nForma acceptată e \'AAAA/LL/ZZ oo:mm\'.'; -$_LANG['Invalid date format: $0.\\nNo day of month value can be found.'] = 'Incorect: forma datei: $0.\\nNu se găsește nici o valoare a zilei din lună.'; -$_LANG['Invalid date format: $0.\\nNo month value can be found.'] = 'Incorect: format dată: $0.\\nNu se găsesște nici o valoare a lunii.'; -$_LANG['Invalid date format: $0.\\nNo year value can be found.'] = 'Incorect: format dată: $0.\\nNu se găsesște nici o valoare a anului.'; -$_LANG['Invalid day of month value: $0.\\nAllowed range is 01-$1.'] = 'Incorect: ziua lună: $0.\\nPlaja de numere permisă e 01-$1'; -$_LANG['Invalid day of month value: $0.\\nAllowed values are unsigned integers.'] = 'Incorect: ziua lună: $0.\\nValori permise sunt unsigned integers .'; -$_LANG['Invalid hour value: $0.\\nAllowed range is 00-23.'] = 'Valoare a orei invalidă: $0.\\nPlaja de numere permisă e 00-23'; -$_LANG['Invalid hour value: $0.\\nAllowed values are unsigned integers.'] = 'Valoare a orei invalidă: $0.\\nAllowed values are unsigned integers.'; -$_LANG['Invalid minutes value: $0.\\nAllowed range is 00-59.'] = 'Valoare a minutelor invalidă: $0.\\nPlaja de numere permisă e 00-59.'; -$_LANG['Invalid minutes value: $0.\\nAllowed values are unsigned integers.'] = 'Valoare a minutelor invalidă: $0.\\nAllowed values are unsigned integers.'; -$_LANG['Invalid month value: $0.\\nAllowed range is 01-12.'] = 'Incorect: număr lună: $0.\\nPlaja de numere permisă e 01-12.'; -$_LANG['Invalid month value: $0.\\nAllowed values are unsigned integers.'] = 'Incorect: număr lună: $0.\\nAllowed values are unsigned integers.'; -$_LANG['Invalid year value: $0.\\nAllowed values are unsigned integers.'] = 'Incorect: an: $0.\\nAllowed values are unsigned integers.'; +$_LANG['Invalid date format: $a.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Incorect: forma datei: $a.\\nForma acceptată e \'AAAA/LL/ZZ oo:mm\'.'; +$_LANG['Invalid date format: $a.\\nNo day of month value can be found.'] = 'Incorect: forma datei: $a.\\nNu se găsește nici o valoare a zilei din lună.'; +$_LANG['Invalid date format: $a.\\nNo month value can be found.'] = 'Incorect: format dată: $a.\\nNu se găsesște nici o valoare a lunii.'; +$_LANG['Invalid date format: $a.\\nNo year value can be found.'] = 'Incorect: format dată: $a.\\nNu se găsesște nici o valoare a anului.'; +$_LANG['Invalid day of month value: $a.\\nAllowed range is 01-$b.'] = 'Incorect: ziua lună: $a.\\nPlaja de numere permisă e 01-$b'; +$_LANG['Invalid day of month value: $a.\\nAllowed values are unsigned integers.'] = 'Incorect: ziua lună: $a.\\nValori permise sunt unsigned integers .'; +$_LANG['Invalid hour value: $a.\\nAllowed range is 00-23.'] = 'Valoare a orei invalidă: $a.\\nPlaja de numere permisă e 00-23'; +$_LANG['Invalid hour value: $a.\\nAllowed values are unsigned integers.'] = 'Valoare a orei invalidă: $a.\\nAllowed values are unsigned integers.'; +$_LANG['Invalid minutes value: $a.\\nAllowed range is 00-59.'] = 'Valoare a minutelor invalidă: $a.\\nPlaja de numere permisă e 00-59.'; +$_LANG['Invalid minutes value: $a.\\nAllowed values are unsigned integers.'] = 'Valoare a minutelor invalidă: $a.\\nAllowed values are unsigned integers.'; +$_LANG['Invalid month value: $a.\\nAllowed range is 01-12.'] = 'Incorect: număr lună: $a.\\nPlaja de numere permisă e 01-12.'; +$_LANG['Invalid month value: $a.\\nAllowed values are unsigned integers.'] = 'Incorect: număr lună: $a.\\nAllowed values are unsigned integers.'; +$_LANG['Invalid year value: $a.\\nAllowed values are unsigned integers.'] = 'Incorect: an: $a.\\nAllowed values are unsigned integers.'; $_LANG['Invoice'] = 'Factura'; $_LANG['Invoice:'] = 'Factura:'; $_LANG['Invoice draw-up place.'] = 'Invoice draw-up place.'; -$_LANG['Invoice Edit: $0'] = 'Editare Factură: $0'; +$_LANG['Invoice Edit: $a'] = 'Editare Factură: $a'; $_LANG['Invoice have no items!'] = 'Nici un pozycji na fakturze!'; $_LANG['Invoice have no items. Use form below for items addition.'] = 'Factura nu are articole. Folosiți formularul de mai jos pt. adăugare articole.'; $_LANG['Invoice No.'] = 'Număr factură'; -$_LANG['Invoice No. $0'] = 'Factura Nr $0'; +$_LANG['Invoice No. $a'] = 'Factura Nr $a'; $_LANG['Invoice number:'] = 'Nr factură:'; -$_LANG['Invoice number $0 already exists!'] = 'Factura o numerze $0 există deja!'; +$_LANG['Invoice number $a already exists!'] = 'Factura o numerze $a există deja!'; $_LANG['Invoice number must be integer!'] = 'Număr factură trebuie să fie numeric(integer)!'; $_LANG['Invoices'] = 'Facturi'; $_LANG['Invoices List'] = 'Listă facturi'; @@ -733,12 +733,12 @@ $_LANG['Items:'] = 'Articole:'; $_LANG['pcs.'] = 'buc.'; $_LANG['It scans for free ports in selected device!'] = 'Nici un wolnych porturi w wybranym urz±dzeniu!'; -$_LANG['last $0 transactions'] = 'ultimele $0 tranzacții'; +$_LANG['last $a transactions'] = 'ultimele $a tranzacții'; $_LANG['Last 30 Days'] = 'Ultimele 30 zile'; -$_LANG['Last date of invoice settlement is $0. If sure, you want to write invoice with date of $1, then click "Submit" again.'] = 'Ultima dată a achitării facturii este $0. Dacă ești sigur că vrei să scrii factura cu data de $1, atunci apasă OK din nou.'; +$_LANG['Last date of invoice settlement is $a. If sure, you want to write invoice with date of $b, then click "Submit" again.'] = 'Ultima dată a achitării facturii este $a. Dacă ești sigur că vrei să scrii factura cu data de $b, atunci apasă OK din nou.'; $_LANG['Last Day'] = 'Ultima zi'; $_LANG['Last day stats for all networks'] = 'Statistici pe ultima zi pt. toate rețelele'; -$_LANG['Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.'] = 'Ultima data a achitării chitanței este $0. Dacă ești sigur că vrei sa scrii faactura cu data de $1, atunci apasă OK din nou.'; +$_LANG['Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.'] = 'Ultima data a achitării chitanței este $a. Dacă ești sigur că vrei sa scrii faactura cu data de $b, atunci apasă OK din nou.'; $_LANG['Last failed login:'] = 'Ultima autentificare nereușită:'; $_LANG['Last Hour'] = 'Ultima oră'; $_LANG['Last hour stats for all networks'] = 'Statistici pe ultima oră pentru toate rețelele'; @@ -753,7 +753,7 @@ $_LANG['Length of (auto-generated) node password. Max.32. Default: 16.'] = 'Lungimea parolei (auto-generată) a calculatorului. Max.32. Prestabilit: 16.'; $_LANG['liability'] = 'datoria'; $_LANG['Liability Report'] = 'Raport restanță'; -$_LANG['Liability Report on $0'] = 'Raport restanță pe $0'; +$_LANG['Liability Report on $a'] = 'Raport restanță pe $a'; $_LANG['Limit of nodes displayed on one page in Network Information. Default: 256. With 0, this information is omitted (page is displaying faster).'] = 'Limita de calculatoare afișate pe o pagină în Informații despre Rețea. Prestabilit: 256. Cu 0, această informație este omisă (pagina este afișată mai repede).'; $_LANG['Limit of records displayed on one page in accounts list. Default: 100.'] = 'Limita de înregistrări afișate pe o pagină in Lista conturi. Prestabilit: 100.'; $_LANG['Limit of records displayed on one page in aliases list. Default: 100.'] = 'Limita de înregistrări afișate pe o pagină in Lista alias-urilor. Prestabilit: 100.'; @@ -825,7 +825,7 @@ $_LANG['Module:'] = 'Modul:'; $_LANG['Module Title'] = 'Titlu modul'; $_LANG['monthly'] = 'lunar'; -$_LANG['monthly ($0)'] = 'lunar ($0)'; +$_LANG['monthly ($a)'] = 'lunar ($a)'; $_LANG['Move customers to subscription:'] = 'Mută clienți pe tariful:'; $_LANG['MySQL version:'] = 'Versiune MySQL:'; $_LANG['Name'] = 'Nume'; @@ -840,7 +840,7 @@ $_LANG['Name/Surname:'] = 'Nume/Nume Firmă:'; $_LANG['First/last or Company name'] = 'Nume/Prenume sau Nume Firmă'; $_LANG['First/last or Company name:'] = 'Nume/Prenume sau Nume Firmă:'; -$_LANG[' (Net: $0)'] = ' (Rețea: $0)'; +$_LANG[' (Net: $a)'] = ' (Rețea: $a)'; $_LANG['Net device:'] = 'Echipament rețea:'; $_LANG['Net devices:'] = 'Echipamente rețea:'; $_LANG['Net Devices'] = 'Echipament rețea'; @@ -852,7 +852,7 @@ $_LANG['Network Balance Sheet'] = 'Bilanț rețea'; $_LANG['Network Devices'] = 'Echipamente rețea'; $_LANG['Network devices list'] = 'Lista echipamnte rețea'; -$_LANG['Network Edit: $0'] = 'Editare rețea: $0'; +$_LANG['Network Edit: $a'] = 'Editare rețea: $a'; $_LANG['Network Map'] = 'Hartă rețea'; $_LANG['Network map type. Use "flash" if you have Ming library or "gd" if your PHP supports gdlib. By default LMS will try to generate flash map, with fallback to GD if it fails.'] = 'Tip mapy urz±dzeń sieciowych. Jesli posiadasz bibliotekê Ming użyj "flash", a je¶li twoje PHP wspiera gdlib możesz ustawiæ na "gd". Prestabilit LMS spróbuje wygenerowaæ mapê we flashu, a je¶li to siê nie uda, utworzy mapê przy pomocy GD.'; $_LANG['Network name:'] = 'Nume rețea:'; @@ -883,7 +883,7 @@ $_LANG['New Network'] = 'Rețea Nouă '; $_LANG['New network is too small!'] = 'Noua rețea e prea mică!'; $_LANG['New Node'] = 'Calculator nou'; -$_LANG['New Option for Instance: $0/$1'] = 'Opțiune Nouă a Instanței: $0/$1'; +$_LANG['New Option for Instance: $a/$b'] = 'Opțiune Nouă a Instanței: $a/$b'; $_LANG['New password:'] = 'Parola Nouă:'; $_LANG['New Payment'] = 'Plată Nouă'; $_LANG['New Queue'] = 'Coadă Nouă'; @@ -892,13 +892,13 @@ $_LANG['New User'] = 'Utlizator Nou'; $_LANG['no.'] = 'nr'; $_LANG['No.'] = 'Nr. crt.'; -$_LANG['No. $0'] = 'Nr $0'; +$_LANG['No. $a'] = 'Nr $a'; $_LANG['no access'] = 'acces interzis'; $_LANG['No cash operations to import.'] = 'Nici o operație financiară de importat.'; $_LANG['No computers were found, either exists in the database or nbtscan binary not found.'] = 'Nici un calculator nu a fost găsit, ori nu există in baza de date, ori executabilul de la nbtscan nu a fost găsit '; -$_LANG['Node $0 was deleted'] = 'Calculatorul $0 a fost șters'; +$_LANG['Node $a was deleted'] = 'Calculatorul $a a fost șters'; $_LANG['Node ID:'] = 'ID(Identificator) calculator:'; -$_LANG['Node Info: $0'] = 'Info Calculator: $0'; +$_LANG['Node Info: $a'] = 'Info Calculator: $a'; $_LANG['Node IP address'] = 'Adresa IP calculator'; $_LANG['Node IP address is required!'] = 'Adresa IP a calculatorului este obligatoriu de completat!'; $_LANG['Node name'] = 'Nume calculator'; @@ -967,8 +967,8 @@ $_LANG['Open'] = 'Deschide'; $_LANG['opened'] = 'deschis'; $_LANG['Opened:'] = 'Deschis:'; -$_LANG['Option Edit: $0'] = 'Editare opțiune: $0'; -$_LANG['Option Edit: $0/$1/$2'] = 'Editare opțiune: $0/$1/$2'; +$_LANG['Option Edit: $a'] = 'Editare opțiune: $a'; +$_LANG['Option Edit: $a/$b/$c'] = 'Editare opțiune: $a/$b/$c'; $_LANG['Option exists!'] = 'Opțiunea există!'; $_LANG['Option name contains forbidden characters!'] = 'Nume opțiune conține niedozwolone caractere.'; $_LANG['Option name is required!'] = 'Nume opțiune este obligatoriu de completat!'; @@ -988,20 +988,20 @@ $_LANG['Owner ID:'] = 'Identificator deținător:'; $_LANG['Packet limit:'] = 'Packet limit:'; $_LANG['Page:'] = 'Pagina:'; -$_LANG['Page $0 of $1'] = 'Pagina $0 z $1'; +$_LANG['Page $a of $b'] = 'Pagina $a z $b'; $_LANG['Password'] = 'Parola'; $_LANG['Password:'] = 'Parola:'; $_LANG['Password Change'] = 'Schimbare parola'; -$_LANG['Password Change for Account: $0'] = 'Schimbare parola dla cont: $0'; -$_LANG['Password Change for User $0'] = 'Schimbare parola dla utilizator $0'; +$_LANG['Password Change for Account: $a'] = 'Schimbare parola dla cont: $a'; +$_LANG['Password Change for User $a'] = 'Schimbare parola dla utilizator $a'; $_LANG['Password is too long (max.32 characters)!'] = 'Parola jest za długie (max.32 caractere)!'; $_LANG['Passwords does not match!'] = 'Hasła nie pasuj± do siebie!'; $_LANG['Path to file was not specified.'] = 'Calea către fișier nu a fost specificată.'; $_LANG['Payment:'] = 'Plată:'; $_LANG['Payment day:'] = 'Zi de plată:'; -$_LANG['Payment Edit: $0'] = 'Editare plată: $0'; -$_LANG['Payment for invoice No. $0'] = 'Plata pentru factură nr $0'; -$_LANG['Payment Info: $0'] = 'Informații despre plată: $0'; +$_LANG['Payment Edit: $a'] = 'Editare plată: $a'; +$_LANG['Payment for invoice No. $a'] = 'Plata pentru factură nr $a'; +$_LANG['Payment Info: $a'] = 'Informații despre plată: $a'; $_LANG['Payment name is required!'] = 'Nume plată este obligatoriu de completat!'; $_LANG['Payments List'] = 'Lista plată'; $_LANG['Payment type:'] = 'Tip plată:'; @@ -1023,7 +1023,7 @@ $_LANG['Postcode:'] = 'Cod Poștal:'; $_LANG['PostgreSQL version:'] = 'Versiune PostgreSQL:'; $_LANG['Prefix for account home directory. Default: /home/'] = 'Prefix pt. directorul contului. Prestabilit: /home/'; -$_LANG['Prepared by: $0'] = 'Prelucrat de: $0'; +$_LANG['Prepared by: $a'] = 'Prelucrat de: $a'; $_LANG['Print'] = 'Printare'; $_LANG['Print cash receipts'] = 'Printare chitanțe'; $_LANG['Print invoices'] = 'Printare factură'; @@ -1042,32 +1042,32 @@ $_LANG['Put in order'] = 'Ordonează'; $_LANG['Qualification operator:'] = 'Calificare operator:'; $_LANG['quarterly'] = 'trimestrial'; -$_LANG['quarterly ($0)'] = 'trimestrial ($0)'; +$_LANG['quarterly ($a)'] = 'trimestrial ($a)'; $_LANG['Query:'] = 'Query:'; $_LANG['Question'] = 'Întrebare'; $_LANG['Queue'] = 'Coadă'; $_LANG['Queue:'] = 'Coadă:'; -$_LANG['Queue Edit: $0'] = 'Editare Coadă: $0'; -$_LANG['Queue Info: $0'] = 'Informații despre Coadă: $0'; +$_LANG['Queue Edit: $a'] = 'Editare Coadă: $a'; +$_LANG['Queue Info: $a'] = 'Informații despre Coadă: $a'; $_LANG['Queue name must be defined!'] = 'Nume Coadă trebuie să fie definit!'; $_LANG['Queues List'] = 'Lista Cozi'; $_LANG['Queue with specified name already exists!'] = 'Coada cu numele specificat există deja!'; $_LANG['Quota (sh/mail/www/ftp/sql):'] = 'Limit (sh/mail/www/ftp/sql):'; $_LANG['Read'] = 'Citește'; -$_LANG['Readdressing network $0'] = 'Przeadresowanie rețea $0'; -$_LANG['Readdressing Network $0'] = 'Przeadresowanie rețea $0'; +$_LANG['Readdressing network $a'] = 'Przeadresowanie rețea $a'; +$_LANG['Readdressing Network $a'] = 'Przeadresowanie rețea $a'; $_LANG['read only (excluding helpdesk)'] = 'read only (fără Helpdesk)'; $_LANG['Reassign to network:'] = 'Przeadresuj rețea:'; $_LANG['Receipt'] = 'Chitanță'; $_LANG['Receipt have no items!'] = 'Factura nu conține nici un articol!'; $_LANG['Receipt have no items. Use form below for items addition.'] = 'Nici un articol în factură. Folosiți formularul de mai jos pentru adăugare de articole.'; $_LANG['Receipt number:'] = 'Număr chitanță:'; -$_LANG['Receipt number $0 already exists!'] = 'Chitanța nr $0 există deja!'; +$_LANG['Receipt number $a already exists!'] = 'Chitanța nr $a există deja!'; $_LANG['Receipt number must be integer!'] = 'Număr chitanță trebuie să fie interger (numeric)!'; $_LANG['Recipients:'] = 'Destinatar:'; $_LANG['Recipient\'s e-mail:'] = 'E-mail destinatar:'; $_LANG['Record of Network Devices'] = 'Evidența echipamentelor de rețea'; -$_LANG['records $0 - $1 of $2'] = 'înregistrări $0 - $1 din $2'; +$_LANG['records $a - $b of $c'] = 'înregistrări $a - $b din $c'; $_LANG['Registered for:'] = 'Înregistrat pentru:'; $_LANG['Register your installation today! ;-)'] = 'Înregistrează instalarea ta azi! ;-)'; $_LANG['Registration ID:'] = 'Nr înregistrare:'; @@ -1076,9 +1076,9 @@ $_LANG['Reload type. Allowed values: exec - call some command (most often with sudo, some script or something else, configurable below); sql - writes down to SQL (multiple queries separated with semicolon may be setup).'] = 'Reload type. Allowed values: exec - call some command (most often with sudo, some script or something else, configurable below); sql - writes down to SQL (multiple queries separated with semicolon may be setup).'; $_LANG['Remove'] = 'Elimină'; $_LANG['Remove customer from group'] = 'Elimină client din categorie'; -$_LANG['Remove queue ID: $0'] = 'Elimină coada ID: $0'; +$_LANG['Remove queue ID: $a'] = 'Elimină coada ID: $a'; $_LANG['Remove this item from list'] = 'Elimină acest articol din listă'; -$_LANG['Removing network $0'] = 'Șterge rețea $0'; +$_LANG['Removing network $a'] = 'Șterge rețea $a'; $_LANG['Repeat password:'] = 'Repetă parola:'; $_LANG['Replace device:'] = 'Înlocuiește echipament:'; $_LANG['Reply'] = 'Răspunde'; @@ -1090,7 +1090,7 @@ $_LANG['Restore'] = 'Refă'; $_LANG['Sale date:'] = 'Data Vânzării:'; $_LANG['Sale Registry'] = 'Registru Vânzări'; -$_LANG['Sale Registry for period $0 - $1'] = 'Registru Vânzări pentru perioada $0 - $1'; +$_LANG['Sale Registry for period $a - $b'] = 'Registru Vânzări pentru perioada $a - $b'; $_LANG['Save'] = 'Salvare'; $_LANG['Save & Print'] = 'Salvează și printează'; $_LANG['Scan'] = 'Scanează'; @@ -1194,7 +1194,7 @@ $_LANG['SMTP settings.'] = 'Setări SMTP.'; $_LANG['Sorting:'] = 'Ordonare:'; $_LANG['Specified address does not belongs to any network!'] = 'Adresa specificată nu apartine nici unei rețele!'; -$_LANG['Specified address is not a network address, setting $0'] = 'Adresa specificată nu e o adresă de rețea, setăm $0'; +$_LANG['Specified address is not a network address, setting $a'] = 'Adresa specificată nu e o adresă de rețea, setăm $a'; $_LANG['Specified domain contains forbidden characters!'] = 'Domeniul specificat conține caractere interzise!'; $_LANG['Specified e-mail is not correct!'] = 'Email-ul specificat nu e corect!'; $_LANG['Specified gateway address does not match with network address!'] = 'Adresa gateway specificată nu se potrivește cu adresa de rețea!'; @@ -1206,7 +1206,7 @@ $_LANG['Specified MAC address is in use!'] = 'Adresa MAC specificată este folosită deja!'; $_LANG['Specified name contains forbidden characters!'] = 'Numele specificat conține caractere INTERZISE!'; $_LANG['Specified name is in use!'] = 'Numele specificat este folosit deja!'; -$_LANG['Specified name is too long (max.$0 characters)!'] = 'Numele specificat este prea lung (max.$0 caractere)!'; +$_LANG['Specified name is too long (max.$a characters)!'] = 'Numele specificat este prea lung (max.$a caractere)!'; $_LANG['Specify customer contract template. It can include comma separated list of contract templates with their names. Default: contract.html.'] = 'Selectați template contract client. Opțiunea poate include listă separată de virgule de template-uri de contracte cu numele lor. Prestabilit: contract.html.'; $_LANG['Specify format of verbal amounts representation (on invoices). e.g. for value "1" verbal expand of 123,15 will be "one two thr 15/100". Default: 0.'] = 'Specify format of verbal amounts representation (on invoices). e.g. for value "1" verbal expand of 123,15 will be "one two thr 15/100". Prestabilit: 0.'; $_LANG['SSN'] = 'CNP'; @@ -1231,9 +1231,9 @@ $_LANG['System message:'] = 'Mesaj sistem:'; $_LANG['System version:'] = 'Versiune sistem:'; $_LANG['Table of financial operations'] = 'Tabela operații financiare'; -$_LANG['Subscription $0 already exists!'] = 'Abonamentul $0 există deja!'; -$_LANG['Subscription Edit: $0'] = 'Editare abonament: $0'; -$_LANG['Subscription Info: $0'] = 'Informații despre Abonament: $0'; +$_LANG['Subscription $a already exists!'] = 'Abonamentul $a există deja!'; +$_LANG['Subscription Edit: $a'] = 'Editare abonament: $a'; +$_LANG['Subscription Info: $a'] = 'Informații despre Abonament: $a'; $_LANG['Subscription List'] = 'Lista Abonamente'; $_LANG['Subscription name required!'] = 'Nume abonament este obligatoriu de completat!'; $_LANG['Subscription not selected!'] = 'Abonament neselctat!'; @@ -1273,12 +1273,12 @@ $_LANG['this page:'] = 'această paginaă:'; $_LANG['This queue is empty.'] = 'Această coadă este goală.'; $_LANG['Ticket date:'] = 'Data reclamație:'; -$_LANG['Ticket Edit: $0'] = 'Editare Reclamație: $0'; +$_LANG['Ticket Edit: $a'] = 'Editare Reclamație: $a'; $_LANG['Ticket History'] = 'Istoria Reclamații'; $_LANG['Ticket must have its body!'] = 'Reclamație trebuie să aiba un corp de conținut!'; $_LANG['Ticket must have its title!'] = 'Reclamația trebuie să aiba un titlu!'; $_LANG['Ticket No.'] = 'Reclamație Nr'; -$_LANG['Ticket No. $0'] = 'Reclamație Nr $0'; +$_LANG['Ticket No. $a'] = 'Reclamație Nr $a'; $_LANG['Ticket Review'] = 'Revizuire reclamație'; $_LANG['Tickets'] = 'Reclamații'; $_LANG['Ticket Search'] = 'Caută Reclamație'; @@ -1297,10 +1297,10 @@ $_LANG['To (day/month/year hh:mm):'] = 'Do (ziua/luna/an gg:mm):'; $_LANG['To pay:'] = 'De plătit:'; $_LANG['Total:'] = 'Total:'; -$_LANG['Total: $0'] = 'Total: $0'; +$_LANG['Total: $a'] = 'Total: $a'; $_LANG['Total Dues:'] = 'Cotizație Totală:'; $_LANG['Total Invoiceless Income'] = 'Total venituri nefacturate'; -$_LANG['Total Invoiceless Income ($0 to $1)'] = 'Total venituri nefacturate ($0 do $1)'; +$_LANG['Total Invoiceless Income ($a to $b)'] = 'Total venituri nefacturate ($a do $b)'; $_LANG['Total Tax'] = 'Suma TVA'; $_LANG['Type:'] = 'Tip:'; $_LANG['Type/Limit:'] = 'Tip/Limit:'; @@ -1309,7 +1309,7 @@ $_LANG['Unit:'] = 'UM:'; $_LANG['Unitary Net Value:'] = 'Preț unitar net (fără TVA):'; $_LANG['Unknown option. No description.'] = 'Opțiune necunoscută. Nici o descriere.'; -$_LANG['unknown OS ($0)'] = 'OS necunsocut ($0)'; +$_LANG['unknown OS ($a)'] = 'OS necunsocut ($a)'; $_LANG['Upceil:'] = 'Upceil:'; $_LANG['Upload'] = 'Upload'; $_LANG['Upload ceil:'] = 'Upload ceil:'; @@ -1324,8 +1324,8 @@ $_LANG['User'] = 'Utilizator'; $_LANG['User:'] = 'Utilizator:'; $_LANG['User-defined stats'] = 'Statistici definite de utilizator'; -$_LANG['User Edit: $0'] = 'Editare utilizator: $0'; -$_LANG['User Info: $0'] = 'Informații despre utilizator: $0'; +$_LANG['User Edit: $a'] = 'Editare utilizator: $a'; +$_LANG['User Info: $a'] = 'Informații despre utilizator: $a'; $_LANG['User Interface'] = 'Interfață Utilizator'; $_LANG['User Interface Configuration'] = 'Configurare Interfață Utilizator'; $_LANG['User interface language code. If not set, language will be determined on browser settings. Default: en.'] = 'Cod de limbă al interfeței utilizator. Dacă nu e setat, limbajul va fi determinat de setările browserului. Prestabilit: en.'; @@ -1341,12 +1341,12 @@ $_LANG['Value:'] = 'Valoare:'; $_LANG['Value and description:'] = 'Valoare și descriere:'; $_LANG['Value of tax rate which will be selected by default on tax rates lists. Default: 22.0'] = 'Valoare stawki procentowej, która ma byæ domy¶lnie zaznaczona na listach wyboru stawki. Prestabilit: 22.0'; -$_LANG['Value of option "$0" must be a number grater than zero!'] = 'Valoare opțiune "$0" trebuie byæ wiêksza od zera!'; +$_LANG['Value of option "$a" must be a number grater than zero!'] = 'Valoare opțiune "$a" trebuie byæ wiêksza od zera!'; $_LANG['Value required!'] = 'Valoare obligatoriu!'; $_LANG['View'] = 'Vizualizare'; $_LANG['waiting'] = 'în așteptare'; $_LANG['Waiting:'] = 'În așteptare:'; -$_LANG['Warning! Debug mode (using address $0).'] = 'ATENTIE! Mod depanare (folosind adresa $0).'; +$_LANG['Warning! Debug mode (using address $a).'] = 'ATENTIE! Mod depanare (folosind adresa $a).'; $_LANG['Warning! This is example document (default template). You can create your own template in documents/templates/ directory.'] = 'Acesta este un document exemplu (șablon prestabilit). Vă puteți crea propriile șsabloane în directorul documents/templates/.'; $_LANG['WARNING! It will backup current database content automatically'] = 'ATENTIE! Va salva automat copii de siguranță la baza de date'; $_LANG['Warning message:'] = 'Mesaj de atenționare:'; @@ -1355,7 +1355,7 @@ $_LANG['Warnings'] = 'Atenționări'; $_LANG['WARNING! THIS WILL DELETE ALL DATA FROM DATABASE!!!'] = 'ATENTIE! ACEASTA VA ȘTERGE TOATE DATELE DIN BAZA DE DATE!!!'; $_LANG['weekly'] = 'săptămânal'; -$_LANG['weekly ($0)'] = 'săptămânal ($0)'; +$_LANG['weekly ($a)'] = 'săptămânal ($a)'; $_LANG['Welcome to LMS'] = 'Bine ați venit LMS'; $_LANG['When:'] = 'Cand:'; $_LANG['When enabled, all messages in helpdesk system (except those sent to requester) will be sent to mail server corresponding queue address. lms-rtparser script should be running on server. Messages won\'t be written directly to database, but on solely responsibility of rtparser script. Default: disabled.'] = 'Când e activat, toate mesajele din sistemul helpdesk (cu excepția celor trimise celui care a cerut) vor fi trimse către adresa cozii corespunzătoare serverului mail. Scriptul lms-rtparser trebuie să fie activ pe server. Mesajele nu vor fi scrise direct in baza de date, ci doar in responsabilitatea scriptului rtparser. Prestabilit: dezactivat.'; @@ -1372,7 +1372,7 @@ $_LANG['Wrong password or login.'] = 'Utilizator sau parola greșită.'; $_LANG['www'] = 'www'; $_LANG['yearly'] = 'anual'; -$_LANG['yearly ($0)'] = 'anual ($0)'; +$_LANG['yearly ($a)'] = 'anual ($a)'; $_LANG['yes'] = 'da'; $_LANG['Yes, I am sure.'] = 'Da, sunt sigur'; $_LANG['Yes, I do.'] = 'Da, o fac.'; @@ -1398,7 +1398,7 @@ $_LANG['You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'] = 'You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'; $_LANG['Zip:'] = 'Cod Poștal:'; $_LANG['Add tax rate'] = 'Adaugă rata taxe'; -$_LANG['Are you sure, you want to delete taxrate \\\'$0\\\'?'] = 'Ești sigur, vrei să ștergi rata taxei \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete taxrate \\\'$a\\\'?'] = 'Ești sigur, vrei să ștergi rata taxei \\\'$a\\\'?'; $_LANG['Binds from date:'] = 'Binds from date:'; $_LANG['Binds to date:'] = 'Binds to date:'; $_LANG['Display this form again, when this tax rate is saved'] = 'Afișează acest formular din nou, după salvarea tax rate-ului'; @@ -1412,7 +1412,7 @@ $_LANG['No such tax rates in database.'] = 'No such tax rates in database.'; $_LANG['Select taxing status'] = 'Selectați status taxe'; $_LANG['Taxing:'] = 'Taxing:'; -$_LANG['Tax Rate Edit: $0'] = 'Editare Tax Rate: $0'; +$_LANG['Tax Rate Edit: $a'] = 'Editare Tax Rate: $a'; $_LANG['Tax rate label is required!'] = 'Eticheta pt. tax rate este obligatoriu de completat!'; $_LANG['Tax Rates'] = 'Tax Rates'; $_LANG['Tax Rates Definitions'] = 'Definiții Tax Rates'; @@ -1420,7 +1420,7 @@ $_LANG['Tax rate value is not numeric!'] = 'Valoare Tax rate nu e numeric!'; $_LANG['annex'] = 'anexă'; $_LANG['Are you sure, you want to remove that document?'] = 'Sunteți sigur, vreți să ștergeți acest document?'; -$_LANG['Can\'t save file in "$0" directory!'] = 'Nu se poatze salva fișierul în directorul "$0"!'; +$_LANG['Can\'t save file in "$a" directory!'] = 'Nu se poatze salva fișierul în directorul "$a"!'; $_LANG['contract'] = 'contract'; $_LANG['Customer\'s Documents:'] = 'Documente client:'; $_LANG['Display this form again, when that document is saved'] = 'Afișează acest formular iar, după salvarea documentului'; @@ -1452,7 +1452,7 @@ $_LANG['No. of issued documents:'] = 'Wystawiono documente:'; $_LANG['Document type:'] = 'Format document:'; $_LANG['Default:'] = 'Prestabilit:'; -$_LANG['Are you sure, you want to delete numberplan \\\'$0\\\'?'] = 'Sunteți sigur, vreți să ștergeți plan \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete numberplan \\\'$a\\\'?'] = 'Sunteți sigur, vreți să ștergeți plan \\\'$a\\\'?'; $_LANG['Numbering Plans List'] = 'Lista plan de numerotare'; $_LANG['Add plan'] = 'Adaugă plan'; $_LANG['cash receipt'] = 'chitanță'; @@ -1464,7 +1464,7 @@ $_LANG['New Numbering Plan'] = 'Nou plan de numerotare'; $_LANG['No such numbering plans in database.'] = 'Nici un asemenea plan de numerotare în baza de date.'; $_LANG['Numbering period is required!'] = 'Perioada de numerotare este obligatoriu de completat!'; -$_LANG['Numbering Plan Edit: $0'] = 'Editare plan de numerotare: $0'; +$_LANG['Numbering Plan Edit: $a'] = 'Editare plan de numerotare: $a'; $_LANG['Number template is required!'] = 'Șablon număr este obligatoriu de completat!'; $_LANG['select document type'] = 'Selectați formatul documentului'; $_LANG['Selected document type has already defined default plan!'] = 'Formatul selectat al documentului are deja specificat planul prestabilit!'; @@ -1472,17 +1472,17 @@ $_LANG['Select numbering plan'] = 'Selectați plan numerotare'; $_LANG['select period'] = 'selectează perioada'; $_LANG['Template must consist "%N" specifier!'] = 'Șablonul trebuie să conțină referința "%N"!'; -$_LANG['Are you sure, you want to remove credit note \\\'$0\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți factura proformă \\\'$0\\\' din baza de date?'; +$_LANG['Are you sure, you want to remove credit note \\\'$a\\\' from database?'] = 'Sunteți sigur, vreți să ștergeți factura proformă \\\'$a\\\' din baza de date?'; $_LANG['Corrected to:'] = 'Corectată în:'; $_LANG['credit memo'] = 'nota memo'; $_LANG['credit note'] = 'factura proformă(credit note)'; $_LANG['Credit note'] = 'Factura Proformă'; -$_LANG['Credit Note for Invoice: $0'] = 'Proformă pt. factura: $0'; -$_LANG['Credit Note No. $0'] = 'Proformă Nr $0'; +$_LANG['Credit Note for Invoice: $a'] = 'Proformă pt. factura: $a'; +$_LANG['Credit Note No. $a'] = 'Proformă Nr $a'; $_LANG['Credit note number:'] = 'Număr factură proformă:'; -$_LANG['Credit note number $0 already exists!'] = 'Factura proformă număr $0 există deja!'; +$_LANG['Credit note number $a already exists!'] = 'Factura proformă număr $a există deja!'; $_LANG['Credit note number must be integer!'] = 'Numărul facturii proforme trebuie să fie numeric!'; -$_LANG['for Invoice No. $0'] = 'pt. Factura Nr $0'; +$_LANG['for Invoice No. $a'] = 'pt. Factura Nr $a'; $_LANG['Recover this item'] = 'Refă acestr articol'; $_LANG['Remove this item'] = 'Șterge acest articol'; $_LANG['Revise'] = 'Corectare'; @@ -1500,7 +1500,7 @@ $_LANG['select template'] = 'selectează șablon'; $_LANG['Select template to generate new document if you haven\'t got prepared file'] = 'Selectează șablon pt. a genera document nou dacă nu ai un fișier anume pregătit deja'; $_LANG['WINS:'] = 'WINS:'; -$_LANG['last $0 documents'] = 'Ultimele $0 documente'; +$_LANG['last $a documents'] = 'Ultimele $a documente'; $_LANG['Last operation:'] = 'Ultima operație:'; $_LANG['Limit of records displayed on one page in documents list. Default: 100.'] = 'Limit înregistrări afișate în Lista documente. Prestabilit: 100.'; $_LANG['Avg. download speed'] = 'Avg. download speed'; @@ -1511,7 +1511,7 @@ $_LANG['No such stats for selected period.'] = 'Nu sunt statistici pentru perioada selectată.'; $_LANG['Receipts'] = 'Chitanțe'; $_LANG['Select period'] = 'Selectați perioada'; -$_LANG['Stats of Customer $0 in month $1'] = 'Statistici client $0 în luna $1'; +$_LANG['Stats of Customer $a in month $b'] = 'Statistici client $a în luna $b'; $_LANG['Year:'] = 'An:'; $_LANG['Add items'] = 'Adaugă articol'; $_LANG['Last 10 not accounted invoices:'] = 'Ultimele 10 facturi not accounted:'; @@ -1534,7 +1534,7 @@ $_LANG['Liability name/description is required!'] = 'Nume/descriere datorie este obligatoriu de completat!'; $_LANG['Liability value not specified!'] = 'Valoare datorie nespecificată!'; $_LANG['or'] = 'sau'; -$_LANG['Customer ID: $0'] = 'ID client: $0'; +$_LANG['Customer ID: $a'] = 'ID client: $a'; $_LANG['Enter balance limit (default 0)'] = 'Introdu limită bilanț (prestabilit 0)'; $_LANG['or Group:'] = 'sau Categorie:'; $_LANG['Transfer forms'] = 'Formulare de transfer'; @@ -1559,7 +1559,7 @@ $_LANG['advance'] = ''; $_LANG['Advanced (+R)'] = ''; $_LANG['Advance return'] = ''; -$_LANG['Advance settlement: $0'] = ''; +$_LANG['Advance settlement: $a'] = ''; $_LANG['all'] = 'toți'; $_LANG['All documents'] = 'Toate documentele'; $_LANG['All invoices'] = 'Toate facturile'; @@ -1571,7 +1571,7 @@ $_LANG['Are you sure, you want to delete last operation?'] = 'Ești sigur, vrei să ștergi ultima operație'; $_LANG['Are you sure, you want to delete selected entry?'] = 'Ești sigur, vrei să ștergi intrarea selectată'; $_LANG['Are you sure, you want to delete that note?'] = 'Ești sigur, vrei să stergi acea nota'; -$_LANG['Are you sure, you want to remove registry \\\'$0\\\' and all assigned receipts?'] = 'Ești sigur, vrei să elimini registrul \\\'$0\\\' și toate chitanțele asociate?'; +$_LANG['Are you sure, you want to remove registry \\\'$a\\\' and all assigned receipts?'] = 'Ești sigur, vrei să elimini registrul \\\'$a\\\' și toate chitanțele asociate?'; $_LANG['assets move'] = ''; $_LANG['ass. move'] = ''; $_LANG['Cash history'] = 'Istoric Plăți'; @@ -1579,19 +1579,19 @@ $_LANG['Cash History Entry Info'] = 'Info Intrare din Istoric Plăți'; $_LANG['Cash History Last Entry:'] = 'Ultima Intrare din Istoric Plăți'; $_LANG['Cash History of Registry:'] = 'Istoric Plăți din registru'; -$_LANG['Cashier: $0'] = 'Încasat de: $0'; -$_LANG['Cash-in Receipt Edit: $0'] = 'Editare chitanță de încasare'; +$_LANG['Cashier: $a'] = 'Încasat de: $a'; +$_LANG['Cash-in Receipt Edit: $a'] = 'Editare chitanță de încasare'; $_LANG['Cash-in receipt number:'] = 'Numar Chitanță încasare'; $_LANG['Cash-in receipt numbering plan:'] = 'Plan de numerotare chitanțe de încasare'; $_LANG['cash operations'] = 'operații financiare'; -$_LANG['Cash-out Receipt Edit: $0'] = 'Editare chitantă de plată(iesire)'; +$_LANG['Cash-out Receipt Edit: $a'] = 'Editare chitantă de plată(iesire)'; $_LANG['Cash-out receipt number:'] = 'Numar chitanta de plata(iesire)'; $_LANG['Cash-out receipt numbering plan:'] = 'Plan de numerotare chitante de plată(iesire)'; $_LANG['Cash Registries List'] = 'Lista de Registre Financiare'; $_LANG['Cash Registry'] = 'Registru financiar'; $_LANG['Cash Registry:'] = 'Registru financiar:'; -$_LANG['Cash Registry: $0'] = 'Registru financiar: $0'; -$_LANG['Cash Registry Info: $0'] = 'Info Registru financiar: $0'; +$_LANG['Cash Registry: $a'] = 'Registru financiar: $a'; +$_LANG['Cash Registry Info: $a'] = 'Info Registru financiar: $a'; $_LANG['Cash state:'] = 'Situatie Financiara'; $_LANG['Cash state value is required!'] = 'Valoarea situației financiare este necesara!'; $_LANG['Cause:'] = 'Cauza'; @@ -1610,7 +1610,7 @@ $_LANG['Customer has got unconfirmed documents!'] = 'Clientul are documente neconfirmate'; $_LANG['customer sheet'] = 'Fișă client'; $_LANG['Customers list is empty!'] = 'Lista clienți este goală'; -$_LANG['Customers requesting more than $0 times in last $1 days'] = 'Cererea Clienților de mai mult de $0 ori în ultimele $1 zile'; +$_LANG['Customers requesting more than $a times in last $b days'] = 'Cererea Clienților de mai mult de $a ori în ultimele $b zile'; $_LANG['customer\'s side'] = 'partea clienților'; $_LANG['Data limit:'] = 'Limita datei'; $_LANG['days'] = 'zile'; @@ -1627,9 +1627,9 @@ $_LANG['Documents: list, searching, adding'] = 'Documente: listare, căutare, adăugare'; $_LANG['Documents mass creation'] = 'Creare Documente în masa'; $_LANG['Document template not selected!'] = 'Șablon Documente neselectat'; -$_LANG['Do you want to remove registry "$0"?'] = 'Vrei să ștergi Registrul "$0"'; -$_LANG['Edit Cash Registry: $0'] = 'Editeaza Registrul Financiar: $0'; -$_LANG['Edit Document: $0'] = 'Editează document'; +$_LANG['Do you want to remove registry "$a"?'] = 'Vrei să ștergi Registrul "$a"'; +$_LANG['Edit Cash Registry: $a'] = 'Editeaza Registrul Financiar: $a'; +$_LANG['Edit Document: $a'] = 'Editează document'; $_LANG['Enable/disable MAC address checking'] = 'Activeză/Dezactivează verificarea adreselor MAC'; ?> From cvs w lms.org.pl Fri Oct 14 18:08:57 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:57 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib/locale/sk (strings.php) Message-ID: <20111014160857.D7D6B30278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:57 Author: chilek Path: /cvsroot/lms/lib/locale/sk Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/locale/sk/strings.php.diff?&r1=1.16&r2=1.17 Index: lms/lib/locale/sk/strings.php diff -u lms/lib/locale/sk/strings.php:1.16 lms/lib/locale/sk/strings.php:1.17 --- lms/lib/locale/sk/strings.php:1.16 Tue Jan 18 09:12:07 2011 +++ lms/lib/locale/sk/strings.php Fri Oct 14 18:08:57 2011 @@ -21,19 +21,19 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.16 2011/01/18 08:12:07 alec Exp $ + * $Id: strings.php,v 1.17 2011/10/14 16:08:57 chilek Exp $ */ -$_LANG['$0 ($1 addresses)'] = '$0 ($1 adresy)'; -$_LANG['$0 addresses'] = '$0 adresy'; -$_LANG['$0 ago ($1)'] = '$0 pred ($1)'; -$_LANG['$0 at least one year old records have been removed.
'] = '$0 záznamy starčie ako jeden rok budú zmazané.
'; -$_LANG['$0 dollars $1 cents'] = '$0 euro $1 centov'; -$_LANG['$0 months'] = '$0 mesaène'; -$_LANG['$0 of $1 ($2): $3 <$4>'] = '$0 z $1 ($2): $3 <$4>'; -$_LANG['$0 records after compacting.'] = '$0 záznamy po zkompletovaní.'; -$_LANG['$0 records before compacting.
'] = '$0 záznamy pred zkompletovaním.
'; -$_LANG['$0 - removed, $1 - inserted
'] = '$0 - zmazanęch, $1 - vloŸenęch
'; +$_LANG['$a ($b addresses)'] = '$a ($b adresy)'; +$_LANG['$a addresses'] = '$a adresy'; +$_LANG['$a ago ($b)'] = '$a pred ($b)'; +$_LANG['$a at least one year old records have been removed.
'] = '$a záznamy starčie ako jeden rok budú zmazané.
'; +$_LANG['$a dollars $b cents'] = '$a euro $b centov'; +$_LANG['$a months'] = '$a mesaène'; +$_LANG['$a of $b ($c): $d <$4>'] = '$a z $b ($c): $d <$4>'; +$_LANG['$a records after compacting.'] = '$a záznamy po zkompletovaní.'; +$_LANG['$a records before compacting.
'] = '$a záznamy pred zkompletovaním.
'; +$_LANG['$a - removed, $b - inserted
'] = '$a - zmazanęch, $b - vloŸenęch
'; $_LANG['30 days'] = '30 dní'; $_LANG['365 days'] = '365 dní'; $_LANG['7 days'] = '7 dní'; @@ -44,7 +44,7 @@ $_LANG['Account'] = '=Úèet'; $_LANG['Account:'] = 'Úèet:'; $_LANG['Accounted'] = 'Zaplatené'; -$_LANG['Account Edit: $0'] = 'Editácia úètu: $0'; +$_LANG['Account Edit: $a'] = 'Editácia úètu: $a'; $_LANG['Accounting day:'] = 'Deò zauètovania:'; $_LANG['Account payment'] = 'Splatnos»'; $_LANG['Account'] = 'Úèet'; @@ -123,18 +123,18 @@ $_LANG['Answer'] = 'Odpoveï'; $_LANG['Approved By'] = 'Potvrdené'; $_LANG['Are you sure that you want to logout?'] = 'Trváte na odpojení zo systému?'; -$_LANG['Are you sure, you want to account ALL debts of customer \\\'$0\\\'?'] = 'Trváč na vęúètovaní V©ETKĘCH zákazníkovęch pohladávkach \\\'$0\\\'?'; +$_LANG['Are you sure, you want to account ALL debts of customer \\\'$a\\\'?'] = 'Trváč na vęúètovaní V©ETKĘCH zákazníkovęch pohladávkach \\\'$a\\\'?'; $_LANG['Are you sure, you want to assign new addresses for all computers? Remember, it can make problems for your network!'] = 'Trváč na pridelení novęch adries pre V©ETKY poèítaèe? Pozor, môŸe to spôsobi» problémy v sieti!'; -$_LANG['Are you sure, you want to change network $0 to network \'+getText(document.remap.mapto.value)+\'?'] = 'Trváč na zmene siete $0 sie» \'+getText(document.remap.mapto.value)+\'?'; +$_LANG['Are you sure, you want to change network $a to network \'+getText(document.remap.mapto.value)+\'?'] = 'Trváč na zmene siete $a sie» \'+getText(document.remap.mapto.value)+\'?'; $_LANG['Are you sure, you want to check/uncheck selected invoices as accounted?'] = 'Trváč na tom, Ÿe chceč zaznaèi»/odznaèi» zvolené faktúry ako zaplatené?'; -$_LANG['Are you sure, you want to delete account \\\'$0\\\' and all assigned to them aliases?'] = 'Trváč na tom, Ÿe chceč odstráni» tento úèet \\\'$0\\\' a včetky väzby k tomuto aliasu?'; -$_LANG['Are you sure, you want to delete address \\\'$0\\\' from database?'] = 'Trváč na zmazaní adresy \\\'$0\\\' z databazy?'; -$_LANG['Are you sure, you want to delete alias: \\\'$0\\\'?'] = 'Trváč na zmazaní aliasu: \\\'$0\\\'?'; -$_LANG['Are you sure, you want to delete database backup created at $0 ?'] = 'Trváč na zmazani zálohy databázy vytvorenej v: $0 ?'; -$_LANG['Are you sure, you want to delete domain: \\\'$0\\\' and all accounts in that domain?'] = 'Trvás na zmazaní domény: \\\'$0\\\' a včetkych úètov v tejto doméne?'; -$_LANG['Are you sure, you want to delete node $0?'] = 'Trváč na zmazaní poèítaèa $0?'; -$_LANG['Are you sure, you want to delete node \\\'$0\\\' from database?'] = 'Trváč na zmazaní poèítaèa \\\'$0\\\' z databazy ?'; -$_LANG['Are you sure, you want to delete option \\\'$0\\\' from database?'] = 'Trváč na zmazaní vo”by \\\'$0\\\' z databazy ?'; +$_LANG['Are you sure, you want to delete account \\\'$a\\\' and all assigned to them aliases?'] = 'Trváč na tom, Ÿe chceč odstráni» tento úèet \\\'$a\\\' a včetky väzby k tomuto aliasu?'; +$_LANG['Are you sure, you want to delete address \\\'$a\\\' from database?'] = 'Trváč na zmazaní adresy \\\'$a\\\' z databazy?'; +$_LANG['Are you sure, you want to delete alias: \\\'$a\\\'?'] = 'Trváč na zmazaní aliasu: \\\'$a\\\'?'; +$_LANG['Are you sure, you want to delete database backup created at $a ?'] = 'Trváč na zmazani zálohy databázy vytvorenej v: $a ?'; +$_LANG['Are you sure, you want to delete domain: \\\'$a\\\' and all accounts in that domain?'] = 'Trvás na zmazaní domény: \\\'$a\\\' a včetkych úètov v tejto doméne?'; +$_LANG['Are you sure, you want to delete node $a?'] = 'Trváč na zmazaní poèítaèa $a?'; +$_LANG['Are you sure, you want to delete node \\\'$a\\\' from database?'] = 'Trváč na zmazaní poèítaèa \\\'$a\\\' z databazy ?'; +$_LANG['Are you sure, you want to delete option \\\'$a\\\' from database?'] = 'Trváč na zmazaní vo”by \\\'$a\\\' z databazy ?'; $_LANG['Are you sure, you want to delete selected operation(s) and/or invoice item(s)?'] = 'Trváč na zmazaní oznaèenej(ich) operácie(ií) a/alebo bodu(ov) faktúry?'; $_LANG['Are you sure, you want to delete that connection?'] = 'Trváč na zmazaní tohto pripojenia?'; $_LANG['Are you sure, you want to delete that device?'] = 'Trváč na zmazaní tohto zariadenia?'; @@ -145,27 +145,27 @@ $_LANG['Are you sure, you want to delete that tariff?'] = 'Trváč na zmazaní tohto tarifu?'; $_LANG['Are you sure, you want to delete this database backup?'] = 'Si presvedèenę, Ÿe chceč odstráni» túto zálohu databázy?'; $_LANG['Are you sure, you want to delete this liability?'] = 'Si presvedèenę, Ÿe chceč zmaza» tento záväzok?'; -$_LANG['Are you sure, you want to drop user $0 from that event?'] = 'Si presvedèenę, Ÿe chceč vypusti» uŸívate”a $0 z tejto udalosti?'; +$_LANG['Are you sure, you want to drop user $a from that event?'] = 'Si presvedèenę, Ÿe chceč vypusti» uŸívate”a $a z tejto udalosti?'; $_LANG['Are you sure, you want to generate new password?'] = 'Si presvedèenę, Ÿe chceč vygenerova» nové heslo?'; $_LANG['Are you sure, you want to generate new PIN?'] = 'Si presvedèenę, Ÿe chceč vygenerova» novę PIN?'; $_LANG['Are you sure, you want to irreversibly delete that user account?'] = 'Si presvedèenę, Ÿe chceč nenávratne odstráni» tento uŸívate”skę úèet?'; $_LANG['Are you sure, you want to move customers to tariff \'+getText(document.tmove.to.value)+\'?'] = 'Si presvedèenę, Ÿe chceč premiestni» zákazníka do trarifu \'+getText(document.tmove.to.value)+\'?'; -$_LANG['Are you sure, you want to readdress network $0 to network $1 ?'] = 'Si presvedèenę, Ÿe chceč zmeni» sie» $0 na sie» $1 ?'; -$_LANG['Are you sure, you want to recover database created at $0?'] = 'Si presvedèenę, Ÿe chceč obnovi» databázu zo zálohy vytvorenej $0?'; -$_LANG['Are you sure, you want to remove customer \\\'$0\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Si presvedèenę, Ÿe chceč odstráni» zákazníka \\\'$0\\\' z databázy ?\\n\\nNako”ko tento zákazník má nieko”ko poèítaèov, ktoré budú taktieŸ odstránené a včetky údaje definitívne ztratené!'; +$_LANG['Are you sure, you want to readdress network $a to network $b ?'] = 'Si presvedèenę, Ÿe chceč zmeni» sie» $a na sie» $b ?'; +$_LANG['Are you sure, you want to recover database created at $a?'] = 'Si presvedèenę, Ÿe chceč obnovi» databázu zo zálohy vytvorenej $a?'; +$_LANG['Are you sure, you want to remove customer \\\'$a\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Si presvedèenę, Ÿe chceč odstráni» zákazníka \\\'$a\\\' z databázy ?\\n\\nNako”ko tento zákazník má nieko”ko poèítaèov, ktoré budú taktieŸ odstránené a včetky údaje definitívne ztratené!'; $_LANG['Are you sure, you want to remove customer from group?'] = 'Si presvedèenę, Ÿe chceč odstrani» zákazníka zo skupiny?'; -$_LANG['Are you sure, you want to remove device \\\'$0\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» zariadenie \\\'$0\\\' z databazy?'; -$_LANG['Are you sure, you want to remove host \\\'$0\\\' and all assigned configuration?'] = 'Si presvedèenę, Ÿe chceč odstráni» hos»a \\\'$0\\\' a celú jeho konfiguráciu?'; -$_LANG['Are you sure, you want to remove instance \\\'$0\\\' and all assigned configuration?'] = 'Si presvedèenę, Ÿe chceč odstráni» inčtanciu \\\'$0\\\' a celú jej konfiguráciu?'; -$_LANG['Are you sure, you want to remove invoice \\\'$0\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» faktúru \\\'$0\\\' z databazy?'; -$_LANG['Are you sure, you want to remove network \\\'$0\\\'?'] = 'Si presvedèenę, Ÿe chceč odstráni» sie» \\\'$0\\\'?'; -$_LANG['Are you sure, you want to remove node \\\'$0\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» poèítaè \\\'$0\\\' z databazy?'; -$_LANG['Are you sure, you want to remove option \\\'$0\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» vo”bu \\\'$0\\\' z databazy?'; -$_LANG['Are you sure, you want to remove queue \\\'$0\\\' and all assigned tickets and messages?'] = 'Si presvedèenę, Ÿe chceč odstráni» radu \\\'$0\\\' a k nej pridelené lístky a správy?'; -$_LANG['Are you sure, you want to remove receipt \\\'$0\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» potvrdenku \\\'$0\\\' z databazy?'; +$_LANG['Are you sure, you want to remove device \\\'$a\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» zariadenie \\\'$a\\\' z databazy?'; +$_LANG['Are you sure, you want to remove host \\\'$a\\\' and all assigned configuration?'] = 'Si presvedèenę, Ÿe chceč odstráni» hos»a \\\'$a\\\' a celú jeho konfiguráciu?'; +$_LANG['Are you sure, you want to remove instance \\\'$a\\\' and all assigned configuration?'] = 'Si presvedèenę, Ÿe chceč odstráni» inčtanciu \\\'$a\\\' a celú jej konfiguráciu?'; +$_LANG['Are you sure, you want to remove invoice \\\'$a\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» faktúru \\\'$a\\\' z databazy?'; +$_LANG['Are you sure, you want to remove network \\\'$a\\\'?'] = 'Si presvedèenę, Ÿe chceč odstráni» sie» \\\'$a\\\'?'; +$_LANG['Are you sure, you want to remove node \\\'$a\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» poèítaè \\\'$a\\\' z databazy?'; +$_LANG['Are you sure, you want to remove option \\\'$a\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» vo”bu \\\'$a\\\' z databazy?'; +$_LANG['Are you sure, you want to remove queue \\\'$a\\\' and all assigned tickets and messages?'] = 'Si presvedèenę, Ÿe chceč odstráni» radu \\\'$a\\\' a k nej pridelené lístky a správy?'; +$_LANG['Are you sure, you want to remove receipt \\\'$a\\\' from database?'] = 'Si presvedèenę, Ÿe chceč odstráni» potvrdenku \\\'$a\\\' z databazy?'; $_LANG['Are you sure, you want to remove that customer from database?\\n\\nIf that customer have any computers, they will be automatically removed from database too, and information about them irreversible losed!'] = 'Si presvedèenę, Ÿe chceč odobra» tohto zákazníka z databázy?\\n\\nPokial má tento zákazník poèítaèe, tak včetky informácie o nich budu nenávratne odstránené!'; $_LANG['Are you sure, you want to remove this group?'] = 'Si presvedèenę, Ÿe chceč odstráni» tuto skupinu?'; -$_LANG['Are you sure, you want to remove ticket $0?'] = 'Si presvedèenę, Ÿe chceč odstráni» lístok $0?'; +$_LANG['Are you sure, you want to remove ticket $a?'] = 'Si presvedèenę, Ÿe chceč odstráni» lístok $a?'; $_LANG['Are you sure, you want to reorder that network?'] = 'Si presvedèenę, Ÿe chceč reorganizova» túto sie»?'; $_LANG['Are you sure, you want to restore this database backup?'] = 'Si presvedèenę, Ÿe chceč obnovi» tuto zálohu databázy?'; $_LANG['ascending'] = 'vzostupnę'; @@ -177,15 +177,15 @@ $_LANG['Avg. monthly income:'] = 'Priemernę mesaènę príjem:'; $_LANG['awaiting'] = 'èakajúci'; $_LANG['List of awaiting customers'] = 'Zoznam èakajúcich zákazníkov'; -$_LANG['$0'] = '$0'; +$_LANG['$a'] = '$a'; $_LANG['Backup Delete'] = 'Zmazanie zálohy'; $_LANG['Backups'] = 'Zálohy '; $_LANG['Balance'] = 'Saldo'; $_LANG['Balance:'] = 'Saldo:'; $_LANG['Balance date:'] = 'Dátum bilancie:'; $_LANG['Balance Sheet'] = 'Bilanènę prehlad'; -$_LANG['Balance Sheet ($0 to $1)'] = 'Bilanènę prehlad ($0 do $1)'; -$_LANG['Balance Sheet of User: $0 ($1 to $2)'] = 'Bilanènę prehlad zákazníka: $0 ($1 do $2)'; +$_LANG['Balance Sheet ($a to $b)'] = 'Bilanènę prehlad ($a do $b)'; +$_LANG['Balance Sheet of User: $a ($b to $c)'] = 'Bilanènę prehlad zákazníka: $a ($b do $c)'; $_LANG['Allows you to logout'] = 'Odhlásenie zo systému'; $_LANG['Basic system information'] = 'Základné systémové informácie'; $_LANG['Begin:'] = 'Zaèiatok:'; @@ -206,7 +206,7 @@ $_LANG['CASH'] = 'PREVODOM'; $_LANG['Cash Operations Import'] = 'Import pokladniènęch operácií'; $_LANG['Cash receipt'] = 'Pokladnièná potvrdenka'; -$_LANG['Cash Receipt No. $0'] = 'Pokladnièna potvrdenka è. $0'; +$_LANG['Cash Receipt No. $a'] = 'Pokladnièna potvrdenka è. $a'; $_LANG['Cash receipt template file. Default: "receipt.html". Should be placed in templates directory.'] = '©ablona pokladniènej potvrdenky. Vęchodzie: "receipt.html". Mala by by» umiestnená v prieèinku čablón.'; $_LANG['Cash Report'] = 'Stav pokladne'; $_LANG['Cautions:'] = 'Upozornenie:'; @@ -239,11 +239,11 @@ $_LANG['Compacting of database removes non-essential data from database and averages existing data. This will decrease number of records in database and reduce results latency, but also decrease stats precision.'] = 'Kompresia databázy odstrání nepotrebné údaje z databázy a priemery dat. Tęm pádom sa zníŸí poèet záznamov v databáze a redukuje sa vęsledná prístupová ręchlos» do databázy. Zároveò sa zníŸí presnos» čtatistík'; $_LANG['Compacting parameters'] = 'Parametre kompresie'; $_LANG['compressed'] = 'zabalenę'; -$_LANG['Statistics for computer $0 has been removed
'] = '©tatistiky pre poèítaè $0 boli odstránené
'; +$_LANG['Statistics for computer $a has been removed
'] = '©tatistiky pre poèítaè $a boli odstránené
'; $_LANG['Error during deleting data for old computers !
'] = 'Chyba pri odstraòovaní čtatistickęch údajov poèítaèa!
'; $_LANG['Computers found:'] = 'Nájdené poèítaèe:'; $_LANG['Configuration'] = 'Konfigurácia'; -$_LANG['Configuration of Instance: $0/$1'] = 'Konfigurácia inčtancií: $0/$1'; +$_LANG['Configuration of Instance: $a/$b'] = 'Konfigurácia inčtancií: $a/$b'; $_LANG['configuration reload'] = 'konfigurácia obnovená'; $_LANG['Configuration Reload'] = 'Konfigurácia obnovená'; $_LANG['Confirm password'] = 'Potvrï heslo'; @@ -253,7 +253,7 @@ $_LANG['connected'] = 'pripojenę'; $_LANG['connected'] = 'pripojenę'; $_LANG['Connected:'] = 'Pripojenę:'; -$_LANG['List of Connected Customers $0$1'] = 'Zoznam pripojenęch zákazníkov $0$1'; +$_LANG['List of Connected Customers $a$b'] = 'Zoznam pripojenęch zákazníkov $a$b'; $_LANG['Connected devices:'] = 'Pripojené zariadenia:'; $_LANG['Connected Nodes:'] = 'Pripojené poèítaèe:'; $_LANG['Connected:'] = 'Pripojené:'; @@ -270,7 +270,7 @@ $_LANG['Copyrights, authors, etc.'] = 'Autorské práva, Autori, atï.'; $_LANG['Create alias'] = 'Vytvori» alias'; $_LANG['Created:'] = 'Vytvorenę:'; -$_LANG['Created by: $0'] = 'Vytvoril: $0'; +$_LANG['Created by: $a'] = 'Vytvoril: $a'; $_LANG['Create new'] = 'Vytvori» novę'; $_LANG['Create time:'] = 'Vytvori» v:'; $_LANG['Generating subscriptions...'] = 'Generujem tarify...'; @@ -281,28 +281,28 @@ $_LANG['customer'] = 'zákazník'; $_LANG['Customer'] = 'Zákazník'; $_LANG['Customer:'] = 'Zákazník:'; -$_LANG['Customer $0 Balance Sheet ($1 to $2)'] = 'História operacií zákazníka $0 ($1 do $2)'; -$_LANG['Customer $0 has been removed.'] = 'Zákazník $0 bol odstránenę.'; +$_LANG['Customer $a Balance Sheet ($b to $c)'] = 'História operacií zákazníka $a ($b do $c)'; +$_LANG['Customer $a has been removed.'] = 'Zákazník $a bol odstránenę.'; $_LANG['Customer Account:'] = 'Úèet zákazníka:'; -$_LANG['Customer Balance: $0'] = 'Preh”ad operacií zákazníka: $0'; +$_LANG['Customer Balance: $a'] = 'Preh”ad operacií zákazníka: $a'; $_LANG['Customer Balance Sheet'] = 'História operacií zákazníka'; $_LANG['Customer cannot send message!'] = 'Zákazník nemôŸe odosla» správu!'; -$_LANG['Customer Charging Edit: $0'] = 'Editácia vyúètovania zákazníka.: $0'; -$_LANG['Customer Edit: $0'] = 'Editácia zákazníka: $0'; +$_LANG['Customer Charging Edit: $a'] = 'Editácia vyúètovania zákazníka.: $a'; +$_LANG['Customer Edit: $a'] = 'Editácia zákazníka: $a'; $_LANG['Customers Group:'] = 'Skupiny zákazníkov:'; $_LANG['customer ID'] = 'identifikátor zákazníka'; $_LANG['Customer ID'] = 'Identifikátor zákazníka'; $_LANG['Customer ID:'] = 'Identifikátor zákazníka:'; -$_LANG['Customer Info: $0'] = 'Informácie o zákazníkovi: $0'; -$_LANG['Node Edit: $0'] = 'Editácia poèítaèa: $0'; -$_LANG['Customer Information: $0'] = 'Informácie o zákazníkovi: $0'; +$_LANG['Customer Info: $a'] = 'Informácie o zákazníkovi: $a'; +$_LANG['Node Edit: $a'] = 'Editácia poèítaèa: $a'; +$_LANG['Customer Information: $a'] = 'Informácie o zákazníkovi: $a'; $_LANG['Customer Liabilities:'] = 'Záväzky zákazníka:'; $_LANG['customer name'] = 'meno zákazníka'; $_LANG['Customer name'] = 'Meno zákazníka'; -$_LANG['Customer No.: $0'] = 'Èíslo zákazníka: $0'; -$_LANG['Customer Nodes ($0):'] = 'Poèítaèe zákazníka ($0):'; +$_LANG['Customer No.: $a'] = 'Èíslo zákazníka: $a'; +$_LANG['Customer Nodes ($a):'] = 'Poèítaèe zákazníka ($a):'; $_LANG['Customer not selected!'] = 'Zákazník nebol oznaèenę!'; -$_LANG['Customer Remove: $0'] = 'Odstránenie zákazníka: $0'; +$_LANG['Customer Remove: $a'] = 'Odstránenie zákazníka: $a'; $_LANG['Customers'] = 'Zákazníci'; $_LANG['Customers:'] = 'Zákazníci:'; $_LANG['Customer Search'] = 'Vyhladaj zákazníka'; @@ -310,10 +310,10 @@ $_LANG['Customers in Subscription:'] = 'Zákazníci v taryfe:'; $_LANG['Customers List'] = 'Zoznam zákazníkov'; $_LANG['Customers List:'] = 'Zoznam zákazníkov:'; -$_LANG['Customers List $0$1'] = 'Zoznam zákazníkov $0$1'; +$_LANG['Customers List $a$b'] = 'Zoznam zákazníkov $a$b'; $_LANG['Customers: list, add, search, groups'] = 'Zákazníci: zoznam, prida», hlada», skupiny'; $_LANG['customers management'] = 'správa zákazníkov'; -$_LANG['Customers Without Nodes List $0$1'] = 'Zoznam zákazníkov bez poèítaèov $0$1'; +$_LANG['Customers Without Nodes List $a$b'] = 'Zoznam zákazníkov bez poèítaèov $a$b'; $_LANG['CVS Repository'] = 'Sklad CVS'; $_LANG['Daemon'] = 'Demon'; $_LANG['daemon management and configuration'] = 'správa a konfigurácia demona'; @@ -344,19 +344,19 @@ $_LANG['deleted'] = 'vymazanę'; $_LANG['Delete data older than one year'] = 'VymaŸ údaje starčie ako jeden rok'; $_LANG['deleted customer'] = 'vymazanę zákazník'; -$_LANG['Delete Node $0'] = 'VymaŸ poèítaè $0'; +$_LANG['Delete Node $a'] = 'VymaŸ poèítaè $a'; $_LANG['Delete stats of non-existing (deleted) nodes'] = 'VymaŸ čtatistiku neexistujúcich (vymazanęch) poèítaèov'; $_LANG['Deletion of Database Backup'] = 'Vymazanie zaloŸnej databazy'; -$_LANG['Deletion of Device with ID: $0'] = 'Vymazanie zariadenia s ID: $0'; +$_LANG['Deletion of Device with ID: $a'] = 'Vymazanie zariadenia s ID: $a'; $_LANG['descending'] = 'zostupnę'; $_LANG['Description'] = 'Popis'; $_LANG['Description:'] = 'Popis:'; $_LANG['Details'] = 'Detaily'; $_LANG['Device connected to other device or node can\'t be deleted.'] = 'Zariadenie pripojené k iním zariadeniam alebo poèítaè nie je moŸné vymaza».'; -$_LANG['Device Edit: $0 ($1)'] = 'Editácia zariadenia: $0 ($1)'; +$_LANG['Device Edit: $a ($b)'] = 'Editácia zariadenia: $a ($b)'; $_LANG['No free ports on device!'] = 'Zariadenie nemá volné porty!'; $_LANG['No IP addresses on device.'] = 'Zariadenie nemá IP adresu'; -$_LANG['Device Info: $0 $1 $2'] = 'Informacie o zariadení: $0 $1 $2'; +$_LANG['Device Info: $a $b $c'] = 'Informacie o zariadení: $a $b $c'; $_LANG['Device name is required!'] = 'Názov zariadenia je poŸadovanę!'; $_LANG['Device name is too long (max.32 characters)!'] = 'Názov zariadenia je prílič dlhę (max. 32 znakov)!'; $_LANG['IP addresses of device:'] = 'IP adresa zariadenia:'; @@ -377,7 +377,7 @@ $_LANG['disconnected'] = 'odpojenę'; $_LANG['Disconnected:'] = 'Odpojené:'; $_LANG['Documents List'] = 'Zoznam dokumentov'; -$_LANG['List of Disconnected Customers $0$1'] = 'Zoznam odpojenęch zákazníkov $0$1'; +$_LANG['List of Disconnected Customers $a$b'] = 'Zoznam odpojenęch zákazníkov $a$b'; $_LANG['List of Disconnected Nodes'] = 'Zoznam odpojenęch poèítaèov'; $_LANG['Discount:'] = 'Z”ava:'; $_LANG['Display customers matching the following criteria:'] = 'Zobrazenie zákazníkov splnajúcich následujúce kritéria:'; @@ -395,7 +395,7 @@ $_LANG['Documentation'] = 'Dokumentácia'; $_LANG['Document with specified number exists!'] = 'Dokument z uvedenęm èíslom uŸ existuje!'; $_LANG['Domain:'] = 'Doména:'; -$_LANG['Domain Edit: $0'] = 'Editácia domény: $0'; +$_LANG['Domain Edit: $a'] = 'Editácia domény: $a'; $_LANG['Domain name is required!'] = 'Meno domény je povinné!'; $_LANG['Domains'] = 'Domény'; $_LANG['Domains List'] = 'Zoznam domén'; @@ -406,8 +406,8 @@ $_LANG['Download rate:'] = 'Download rate:'; $_LANG['Downrate:'] = 'Downrate:'; $_LANG['Downrate (ceil):'] = 'Downrate (ceil):'; -$_LANG['Do you want to remove $0 customer?'] = 'Praječ si odstráni» zákazníka $0?'; -$_LANG['Do you want to remove queue called $0?'] = 'Praječ si odstráni» radu s oznaèením $0?'; +$_LANG['Do you want to remove $a customer?'] = 'Praječ si odstráni» zákazníka $a?'; +$_LANG['Do you want to remove queue called $a?'] = 'Praječ si odstráni» radu s oznaèením $a?'; $_LANG['Draw-up date'] = 'Dátum vystavenia'; $_LANG['Draw-up date:'] = 'Dátum vystavenia:'; $_LANG['Edit'] = 'Editácia'; @@ -560,7 +560,7 @@ $_LANG['entries'] = 'záznamy'; $_LANG['Error:'] = 'Chyba:'; $_LANG['Error!'] = 'Chyba!'; -$_LANG['Error: Unknown reload type: "$0"!'] = 'Chyba: Neznámy typ pre obnovenie: "$0"!'; +$_LANG['Error: Unknown reload type: "$a"!'] = 'Chyba: Neznámy typ pre obnovenie: "$a"!'; $_LANG['Event Edit'] = 'Editácia udalostí'; $_LANG['Event Info'] = 'Informácie o udalosti'; $_LANG['Event Search'] = 'Vyh”adávanie udalostí'; @@ -610,9 +610,9 @@ $_LANG['Gross value'] = 'Cena celkom s DPH'; $_LANG['Gross Value:'] = 'Cena celkom s DPH:'; $_LANG['Group:'] = 'Skupina:'; -$_LANG['(Group: $0)'] = '(Skupina: $0)'; -$_LANG['Group Edit: $0'] = 'Editovaná skupina: $0'; -$_LANG['Group Info: $0'] = 'Info o skupine: $0'; +$_LANG['(Group: $a)'] = '(Skupina: $a)'; +$_LANG['Group Edit: $a'] = 'Editovaná skupina: $a'; +$_LANG['Group Info: $a'] = 'Info o skupine: $a'; $_LANG['Group List'] = 'Zoznam skupiny'; $_LANG['Group members:'] = 'Èlenovia skupiny:'; $_LANG['Group name is too long!'] = 'Meno skupiny je prílič dlhé!'; @@ -620,7 +620,7 @@ $_LANG['Groups'] = 'Skupiny'; $_LANG['Groups Membership:'] = 'Èlenstvo v skupinách:'; $_LANG['Group with members cannot be deleted!'] = 'Skupina obsahujúca èlena nemôŸe by» zmazaná!'; -$_LANG['Group with name $0 already exists!'] = 'Skupina s menom $0 uż existuje!'; +$_LANG['Group with name $a already exists!'] = 'Skupina s menom $a uż existuje!'; $_LANG['Has'] = 'Má'; $_LANG['Headers:'] = 'Záhlavie:'; $_LANG['Helpdesk'] = 'Helpdesk'; @@ -631,7 +631,7 @@ $_LANG['High'] = 'Vysokę'; $_LANG['Homedir:'] = 'Domovskę adresár:'; $_LANG['Host:'] = 'Hos»:'; -$_LANG['Host Edit: $0'] = 'Editácia hos»a: $0'; +$_LANG['Host Edit: $a'] = 'Editácia hos»a: $a'; $_LANG['Hostname:'] = 'Meno hos»a:'; $_LANG['Host name is required!'] = 'Meno hos»a je povinné!'; $_LANG['Hosts List'] = 'Zoznam hos»ov'; @@ -689,12 +689,12 @@ $_LANG['Incorrect ZIP code!'] = 'Nesprávne PSÈ!'; $_LANG['in debt'] = 'dlŸiaci zákazníci'; $_LANG['Nodes List for Customers In Debt'] = 'Zoznam poèítaèov dlŸiacich zákazníkov'; -$_LANG['Indebted Customers List $0$1'] = 'Zoznam dlŸiacich zákazníkov $0$1'; +$_LANG['Indebted Customers List $a$b'] = 'Zoznam dlŸiacich zákazníkov $a$b'; $_LANG['indebted owner'] = 'dlŸiaci vlastník'; $_LANG['Info'] = 'Informácie'; -$_LANG['Info Network: $0'] = 'Informácie o sieti: $0'; +$_LANG['Info Network: $a'] = 'Informácie o sieti: $a'; $_LANG['in it:'] = 'z toho:'; -$_LANG['Instance Edit: $0'] = 'Editácia inčtancie: $0'; +$_LANG['Instance Edit: $a'] = 'Editácia inčtancie: $a'; $_LANG['Instance host is required!'] = 'Hos» inčtancie je povinnę!'; $_LANG['Instance module is required!'] = 'Modul inčtancie je povinnę!'; $_LANG['Instance name is required!'] = 'Meno inčtancie je povinné!'; @@ -708,29 +708,29 @@ $_LANG['Interface:'] = 'Rozhranie:'; $_LANG['Invalid chars in group name!'] = 'Nepovolené znaky v mene skupiny!'; $_LANG['Invalid date format!'] = 'Nesprávny formát dátumu!'; -$_LANG['Invalid date format: $0.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Nedovolenę formát dátumu: $0.\\nPovolenę formát je \'YYYY/MM/DD hh:mm\'.'; -$_LANG['Invalid date format: $0.\\nNo day of month value can be found.'] = 'Nedovolenę formát dátumu: $0.\\nNenájdené èíslo dòa v mesiaci.'; -$_LANG['Invalid date format: $0.\\nNo month value can be found.'] = 'Nedovolenę formát dátumu: $0.\\nNenájdené èíslo mesiaca.'; -$_LANG['Invalid date format: $0.\\nNo year value can be found.'] = 'Nedovolenę formát dátumu: $0.\\nNenájdené èíslo roka.'; -$_LANG['Invalid day of month value: $0.\\nAllowed range is 01-$1.'] = 'Nedovolené èíslo dòa v mesiaci: $0.\\nPovolenę rozsah 01-$1'; -$_LANG['Invalid day of month value: $0.\\nAllowed values are unsigned integers.'] = 'Nedovolené èíslo dòa v mesiaci: $0.\\nPovolené sú hodnoty typu integer.'; -$_LANG['Invalid hour value: $0.\\nAllowed range is 00-23.'] = 'Nedovolená hodina: $0.\\nPovolené sú hodnoty v rozsahu 00-23'; -$_LANG['Invalid hour value: $0.\\nAllowed values are unsigned integers.'] = 'Nedovolená hodina: $0.\\nPovolené sú hodnoty typu integer.'; -$_LANG['Invalid minutes value: $0.\\nAllowed range is 00-59.'] = 'Nedovolená minúta: $0.\\nPovolené sú hodnoty v rozsahu 00-59.'; -$_LANG['Invalid minutes value: $0.\\nAllowed values are unsigned integers.'] = 'Nedovolená minúta: $0.\\nPovolené sú hodnoty typu integer.'; -$_LANG['Invalid month value: $0.\\nAllowed range is 01-12.'] = 'Nedovolenę mesiac: $0.\\nPovolené sú hodnoty v rozsahu 01-12.'; -$_LANG['Invalid month value: $0.\\nAllowed values are unsigned integers.'] = 'Nedovolenę mesiac: $0.\\nPovolené sú hodnoty typu integer.'; -$_LANG['Invalid year value: $0.\\nAllowed values are unsigned integers.'] = 'Nedovolenę rok: $0.\\nPovolené sú hodnoty typu integer.'; +$_LANG['Invalid date format: $a.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Nedovolenę formát dátumu: $a.\\nPovolenę formát je \'YYYY/MM/DD hh:mm\'.'; +$_LANG['Invalid date format: $a.\\nNo day of month value can be found.'] = 'Nedovolenę formát dátumu: $a.\\nNenájdené èíslo dòa v mesiaci.'; +$_LANG['Invalid date format: $a.\\nNo month value can be found.'] = 'Nedovolenę formát dátumu: $a.\\nNenájdené èíslo mesiaca.'; +$_LANG['Invalid date format: $a.\\nNo year value can be found.'] = 'Nedovolenę formát dátumu: $a.\\nNenájdené èíslo roka.'; +$_LANG['Invalid day of month value: $a.\\nAllowed range is 01-$b.'] = 'Nedovolené èíslo dòa v mesiaci: $a.\\nPovolenę rozsah 01-$b'; +$_LANG['Invalid day of month value: $a.\\nAllowed values are unsigned integers.'] = 'Nedovolené èíslo dòa v mesiaci: $a.\\nPovolené sú hodnoty typu integer.'; +$_LANG['Invalid hour value: $a.\\nAllowed range is 00-23.'] = 'Nedovolená hodina: $a.\\nPovolené sú hodnoty v rozsahu 00-23'; +$_LANG['Invalid hour value: $a.\\nAllowed values are unsigned integers.'] = 'Nedovolená hodina: $a.\\nPovolené sú hodnoty typu integer.'; +$_LANG['Invalid minutes value: $a.\\nAllowed range is 00-59.'] = 'Nedovolená minúta: $a.\\nPovolené sú hodnoty v rozsahu 00-59.'; +$_LANG['Invalid minutes value: $a.\\nAllowed values are unsigned integers.'] = 'Nedovolená minúta: $a.\\nPovolené sú hodnoty typu integer.'; +$_LANG['Invalid month value: $a.\\nAllowed range is 01-12.'] = 'Nedovolenę mesiac: $a.\\nPovolené sú hodnoty v rozsahu 01-12.'; +$_LANG['Invalid month value: $a.\\nAllowed values are unsigned integers.'] = 'Nedovolenę mesiac: $a.\\nPovolené sú hodnoty typu integer.'; +$_LANG['Invalid year value: $a.\\nAllowed values are unsigned integers.'] = 'Nedovolenę rok: $a.\\nPovolené sú hodnoty typu integer.'; $_LANG['Invoice'] = 'Faktúra'; $_LANG['Invoice:'] = 'Faktúra:'; $_LANG['Invoice draw-up place.'] = 'Faktúra vyhotovená.'; -$_LANG['Invoice Edit: $0'] = 'Editácia faktúry: $0'; +$_LANG['Invoice Edit: $a'] = 'Editácia faktúry: $a'; $_LANG['Invoice have no items!'] = 'Faktúra neobsahuje Ÿiadne poloŸky!'; $_LANG['Invoice have no items. Use form below for items addition.'] = 'Faktúra neobsahuje Ÿiadne poloŸky. PouŸi formulár niŸčie pre pridanie poloŸiek.'; $_LANG['Invoice No.'] = 'Èíslo faktúry'; -$_LANG['Invoice No. $0'] = 'Faktúra È. $0'; +$_LANG['Invoice No. $a'] = 'Faktúra È. $a'; $_LANG['Invoice number:'] = 'È. faktúry:'; -$_LANG['Invoice number $0 already exists!'] = 'Faktúra s èíslom $0 uż existuje!'; +$_LANG['Invoice number $a already exists!'] = 'Faktúra s èíslom $a uż existuje!'; $_LANG['Invoice number must be integer!'] = 'Èislo faktúry musí by» typu integer!'; $_LANG['Invoices'] = 'Faktúry'; $_LANG['Invoices List'] = 'Zoznam faktúr'; @@ -755,12 +755,12 @@ $_LANG['It scans for ports in destination device!'] = 'Scanuje porty cielového zariadenia!'; $_LANG['It scans for ports in source device!'] = 'Scanuje porty zdrojového zariadenia!'; $_LANG['Last:'] = 'Poslednę:'; -$_LANG['last $0 transactions'] = 'poslednęch $0 transakcií'; +$_LANG['last $a transactions'] = 'poslednęch $a transakcií'; $_LANG['Last 30 Days'] = 'Poslednęch 30 dní'; -$_LANG['Last date of invoice settlement is $0. If sure, you want to write invoice with date of $1, then click "Submit" again.'] = 'Poslednę dátum vystavenia faktúry je $0. Pokia” ste si istí, Ÿe chcete zapísa» faktúru s datumom $1, potom kliknite na "Potvrdi»".'; +$_LANG['Last date of invoice settlement is $a. If sure, you want to write invoice with date of $b, then click "Submit" again.'] = 'Poslednę dátum vystavenia faktúry je $a. Pokia” ste si istí, Ÿe chcete zapísa» faktúru s datumom $b, potom kliknite na "Potvrdi»".'; $_LANG['Last Day'] = 'Poslednę deò'; $_LANG['Last day stats for all networks'] = '©tatistika posledného dòa pre včetky sie»e'; -$_LANG['Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.'] = 'Poslednę dátum prímu faktúry je $0. Pokia” ste si istí, Ÿe chcete zapísa» potvrdenku s dátumom $1, potom kliknite na "Potvrdi»".'; +$_LANG['Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.'] = 'Poslednę dátum prímu faktúry je $a. Pokia” ste si istí, Ÿe chcete zapísa» potvrdenku s dátumom $b, potom kliknite na "Potvrdi»".'; $_LANG['Last failed login:'] = 'Posledné neúspečné prihlásenie:'; $_LANG['Last Hour'] = 'Posledná hodina'; $_LANG['Last hour stats for all networks'] = '©tatistika poslednej hodiny pre včetky siete'; @@ -769,14 +769,14 @@ $_LANG['Last month stats for all networks'] = '©tatistika posledného mesiaca pre včetky siete'; $_LANG['last online:'] = 'poslednę online:'; $_LANG['Last online:'] = 'Poslednę online:'; -$_LANG['Last online: $0'] = 'Poslednę online: $0'; +$_LANG['Last online: $a'] = 'Poslednę online: $a'; $_LANG['Last Reload:'] = 'Posledné obnovenie:'; $_LANG['Last Year'] = 'Poslednę rok'; $_LANG['Last year stats for all networks'] = '©tatistika posledného roku pre včetky sie»e'; $_LANG['Length of (auto-generated) node password. Max.32. Default: 16.'] = 'DćŸka (automaticky generovaného) hesla poèítaèa. Max.32. Vęchodzie: 16.'; $_LANG['liability'] = 'záväzok'; $_LANG['Liability Report'] = 'Správa záväzku'; -$_LANG['Liability Report on $0'] = 'Správa záväzku na $0'; +$_LANG['Liability Report on $a'] = 'Správa záväzku na $a'; $_LANG['lifetime'] = 'Ÿivotnos»'; $_LANG['Limit of nodes displayed on one page in Network Information. Default: 256. With 0, this information is omitted (page is displaying faster).'] = 'Limit poèítaèov zobrazenęch na stránke Sie»ovęch informací. Vęchodzie: 256. Pokia” je hodnota nadstavená na 0, informácia je vynechána (stránka je zobrazená ręchlejčie).'; $_LANG['Limit of records displayed on one page in accounts list. Default: 100.'] = 'Limit záznamov zobrazenęch na jednej strane zoznamu uètov. Vęchodzie: 100.'; @@ -853,7 +853,7 @@ $_LANG['Module:'] = 'Modul:'; $_LANG['Module Title'] = 'Nádpis modulu'; $_LANG['monthly'] = 'mesaène'; -$_LANG['monthly ($0)'] = 'mesaène ($0)'; +$_LANG['monthly ($a)'] = 'mesaène ($a)'; $_LANG['Move customers to subscription:'] = 'Zákazníci presunutę do tarifu:'; $_LANG['MySQL version:'] = 'Verzia MySQL:'; $_LANG['Name'] = 'Meno'; @@ -868,7 +868,7 @@ $_LANG['Name/Surname:'] = 'Priezvisko:'; $_LANG['First/last or Company name'] = 'Meno/Priezvisko alebo Meno spoloènosti'; $_LANG['First/last or Company name:'] = 'Meno/Priezvisko alebo Meno spoloènosti:'; -$_LANG[' (Net: $0)'] = ' (Sie»: $0)'; +$_LANG[' (Net: $a)'] = ' (Sie»: $a)'; $_LANG['Net device:'] = 'Sie»ové zariadenie:'; $_LANG['Net devices:'] = 'Sie»ové zariadenia:'; $_LANG['Net Devices'] = 'Sie»ové zariadenia'; @@ -880,7 +880,7 @@ $_LANG['Network Balance Sheet'] = 'História peòaŸnęch operácií'; $_LANG['Network Devices'] = 'Sie»ové zariadenia'; $_LANG['Network devices list'] = 'Zoznam sie»ovęch zariadenę'; -$_LANG['Network Edit: $0'] = 'Editácia siete: $0'; +$_LANG['Network Edit: $a'] = 'Editácia siete: $a'; $_LANG['Network Map'] = 'Sie»ová mapa'; $_LANG['Network map type. Use "flash" if you have Ming library or "gd" if your PHP supports gdlib. By default LMS will try to generate flash map, with fallback to GD if it fails.'] = 'Typ sie»ovej mapy. Pokia” pouŸíváte kniŸnicu Ming pouŸite "flash" alebo pokia” vače PHP podporuje gdlib pouŸite "gd". Vęchodzie nastavenie LMS generuje flash mapu a v prípade neúspechu sa volá kniŸnica GD.'; $_LANG['Network name:'] = 'Meno siete:'; @@ -909,7 +909,7 @@ $_LANG['New Network'] = 'Nová sie»'; $_LANG['New network is too small!'] = 'Nová sie» je prílič malá!'; $_LANG['New Node'] = 'Novę poèítaè'; -$_LANG['New Option for Instance: $0/$1'] = 'Nová vo”ba pre inčtanciu: $0/$1'; +$_LANG['New Option for Instance: $a/$b'] = 'Nová vo”ba pre inčtanciu: $a/$b'; $_LANG['New password:'] = 'Nové heslo:'; $_LANG['New Payment'] = 'Nová platba'; $_LANG['New Queue'] = 'Nová rada'; @@ -919,14 +919,14 @@ $_LANG['none'] = 'niè'; $_LANG['no.'] = 'è.'; $_LANG['No.'] = 'È.'; -$_LANG['No. $0'] = 'È. $0'; +$_LANG['No. $a'] = 'È. $a'; $_LANG['no access'] = 'Ÿiadny prístup'; $_LANG['No cash operations to import.'] = 'źiadna peòaŸná operácia k importu.'; $_LANG['No computers were found, either exists in the database or nbtscan binary not found.'] = 'Nebol nájdenę Ÿiadny poèítaè, Ÿiadny najdenę v databázy alebo nezistenę pomocou nbtscanu.'; $_LANG['No configuration options in database. Click here to import them from lms.ini.'] = 'źiadne konfiguraèné vo”by v databázy. Klikni sem pre ich import zo súboru lms.ini.'; -$_LANG['Node $0 was deleted'] = 'Poèítaè $0 bol vymazanę'; +$_LANG['Node $a was deleted'] = 'Poèítaè $a bol vymazanę'; $_LANG['Node ID:'] = 'Identifikátor poèítaèa:'; -$_LANG['Node Info: $0'] = 'Informácie o poèítaèi: $0'; +$_LANG['Node Info: $a'] = 'Informácie o poèítaèi: $a'; $_LANG['Node IP address'] = 'IP adresa poèítaèa'; $_LANG['Node IP address is required!'] = 'IP adresa poèítaèa je povinná!'; $_LANG['Node name'] = 'Meno poèítaèa'; @@ -996,8 +996,8 @@ $_LANG['Open'] = 'Otvori»'; $_LANG['opened'] = 'otvorenę'; $_LANG['Opened:'] = 'Otvorené:'; -$_LANG['Option Edit: $0'] = 'Editácia vo”by: $0'; -$_LANG['Option Edit: $0/$1/$2'] = 'Editácia vo”by: $0/$1/$2'; +$_LANG['Option Edit: $a'] = 'Editácia vo”by: $a'; +$_LANG['Option Edit: $a/$b/$c'] = 'Editácia vo”by: $a/$b/$c'; $_LANG['Option exists!'] = 'Vo”ba uŸ existuje!'; $_LANG['Option name contains forbidden characters!'] = 'Meno vo”by obsahuje zakázané znaky.'; $_LANG['Option name is required!'] = 'Meno vo”by je povinné!'; @@ -1017,20 +1017,20 @@ $_LANG['Owner ID:'] = 'ID vlastníka:'; $_LANG['Packet limit:'] = 'Limit paketov:'; $_LANG['Page:'] = 'Strana:'; -$_LANG['Page $0 of $1'] = 'Strana $0 z $1'; +$_LANG['Page $a of $b'] = 'Strana $a z $b'; $_LANG['Password'] = 'Heslo'; $_LANG['Password:'] = 'Heslo:'; $_LANG['Password Change'] = 'Zmena hesla'; -$_LANG['Password Change for Account: $0'] = 'Zmena hesla pre úèet: $0'; -$_LANG['Password Change for User $0'] = 'Zmena hesla pre uŸívate”a $0'; +$_LANG['Password Change for Account: $a'] = 'Zmena hesla pre úèet: $a'; +$_LANG['Password Change for User $a'] = 'Zmena hesla pre uŸívate”a $a'; $_LANG['Password is too long (max.32 characters)!'] = 'Heslo je prílič dlhé (max.32 znakov)!'; $_LANG['Passwords does not match!'] = 'Heslo nezodpovedá!'; $_LANG['Path to file was not specified.'] = 'Cesta k súboru nebola čpecifikovaná.'; $_LANG['Payment:'] = 'Platba:'; $_LANG['Payment day:'] = 'Splatnos»:'; -$_LANG['Payment Edit: $0'] = 'Editácia platby: $0'; -$_LANG['Payment for invoice No. $0'] = 'Platba za faktúru DPH è. $0'; -$_LANG['Payment Info: $0'] = 'Informácie o platbe: $0'; +$_LANG['Payment Edit: $a'] = 'Editácia platby: $a'; +$_LANG['Payment for invoice No. $a'] = 'Platba za faktúru DPH è. $a'; +$_LANG['Payment Info: $a'] = 'Informácie o platbe: $a'; $_LANG['Payment name is required!'] = 'Meno platby je povinné!'; $_LANG['Payments List'] = 'Zoznam platieb'; $_LANG['Payment type:'] = 'Typ platieb:'; @@ -1052,7 +1052,7 @@ $_LANG['Postcode:'] = 'PSÈ:'; $_LANG['PostgreSQL version:'] = 'Verzia PostgreSQL:'; $_LANG['Prefix for account home directory. Default: /home/'] = 'Prefix pre domovskę adresár. Vęchodzie: /home/'; -$_LANG['Prepared by: $0'] = 'Pripravil: $0'; +$_LANG['Prepared by: $a'] = 'Pripravil: $a'; $_LANG['Print'] = 'Tlaèi»'; $_LANG['Print cash receipts'] = 'Tlaè hotovostné potvrdenia'; $_LANG['Print invoices'] = 'Tlaè faktúry'; @@ -1075,33 +1075,33 @@ $_LANG['Qualify to use current day of month for payment day. Default: 0 (off).'] = 'Kvalifikuj pre platbu dnečnę deò v mesiaci ako deò pre platenie. Vęchodzie: 0 (vypnuté).'; $_LANG['Qualify the day of month for payment day. Default: 0 (undefined).'] = 'Kvalifikujte deò v mesiaci ako deò pre platby. Vęchodzie: 0 (nedefinované).'; $_LANG['quarterly'] = 'čtvr»roène'; -$_LANG['quarterly ($0)'] = 'čtvr»roène ($0)'; +$_LANG['quarterly ($a)'] = 'čtvr»roène ($a)'; $_LANG['Query:'] = 'Dotaz:'; $_LANG['Question'] = 'Otázka'; $_LANG['Queue'] = 'Rada'; $_LANG['Queue:'] = 'Rada:'; -$_LANG['Queue Edit: $0'] = 'Editácia rady: $0'; -$_LANG['Queue Info: $0'] = 'Informácie o rade: $0'; +$_LANG['Queue Edit: $a'] = 'Editácia rady: $a'; +$_LANG['Queue Info: $a'] = 'Informácie o rade: $a'; $_LANG['Queue name must be defined!'] = 'Meno rady je povinné!'; $_LANG['Tickets List'] = 'Zoznam lístkov'; $_LANG['Queues List'] = 'Zoznam rád'; $_LANG['Queue with specified name already exists!'] = 'Rada s uvedenęm názvom uŸ existuje!'; $_LANG['Quota (sh/mail/www/ftp/sql):'] = 'Limity (sh/mail/www/ftp/sql):'; $_LANG['Read'] = 'Èíta»'; -$_LANG['Readdressing network $0'] = 'Preèíslovanie siete $0'; -$_LANG['Readdressing Network $0'] = 'Prèíslovanie sie»e $0'; +$_LANG['Readdressing network $a'] = 'Preèíslovanie siete $a'; +$_LANG['Readdressing Network $a'] = 'Prèíslovanie sie»e $a'; $_LANG['read only (excluding helpdesk)'] = 'len k èítaniu (bez Helpdesku)'; $_LANG['Reassign to network:'] = 'Pridelenie k sieti:'; $_LANG['Receipt'] = 'Potvrdenka'; $_LANG['Receipt have no items!'] = 'Potvrdenka nemá Ÿiadne poloŸky!'; $_LANG['Receipt have no items. Use form below for items addition.'] = 'Potvrdenka nemá Ÿiadne poloŸky. PouŸite formulár niŸčie pre pridanie poloŸiek.'; $_LANG['Receipt number:'] = 'Potvrdenka èíslo:'; -$_LANG['Receipt number $0 already exists!'] = 'Potvrdenka èíslo $0 uŸ existuje!'; +$_LANG['Receipt number $a already exists!'] = 'Potvrdenka èíslo $a uŸ existuje!'; $_LANG['Receipt number must be integer!'] = 'Èíslo potvrdenky musí by» typu integer!'; $_LANG['Recipients:'] = 'Príjemca:'; $_LANG['Recipient\'s e-mail:'] = 'E-mail príjemcu:'; $_LANG['Record of Network Devices'] = 'Záznam sie»ovęch zariadení'; -$_LANG['records $0 - $1 of $2'] = 'záznamy $0 - $1 z $2'; +$_LANG['records $a - $b of $c'] = 'záznamy $a - $b z $c'; $_LANG['Registered for:'] = 'Registrované na meno:'; $_LANG['Register your installation today! ;-)'] = 'Zaregistrujte si vaču inčtaláciu ečte dnes! ;-)'; $_LANG['Registration ID:'] = 'Èíslo registrácie:'; @@ -1111,9 +1111,9 @@ $_LANG['Remove'] = 'Odstráni»'; $_LANG['Remove customer from group'] = 'Odstráni» zákazníka zo skupiny'; $_LANG['Remove customers from group'] = 'Odstráni» zákazníkoa zo skupiny'; -$_LANG['Remove queue ID: $0'] = 'Odstráni» radu ID: $0'; +$_LANG['Remove queue ID: $a'] = 'Odstráni» radu ID: $a'; $_LANG['Remove this item from list'] = 'Odstráni» túto poloŸku zo zoznamu'; -$_LANG['Removing network $0'] = 'Odstránovanie siete $0'; +$_LANG['Removing network $a'] = 'Odstránovanie siete $a'; $_LANG['Repeat password:'] = 'Zopakuj heslo:'; $_LANG['Reply'] = 'Odpoveï'; $_LANG['Requester name required!'] = 'Meno Ÿiadate”a je povinné!'; @@ -1124,7 +1124,7 @@ $_LANG['Restore'] = 'Obnovi»'; $_LANG['Sale date:'] = 'Dátum predaja:'; $_LANG['Sale Registry'] = 'Obchodnę register'; -$_LANG['Sale Registry for period $0 - $1'] = 'Obchodnę register za obdobie $0 - $1'; +$_LANG['Sale Registry for period $a - $b'] = 'Obchodnę register za obdobie $a - $b'; $_LANG['Save'] = 'UloŸi»'; $_LANG['Save & Print'] = 'UloŸi» a vytlaèi»'; $_LANG['Scan'] = 'Scanova»'; @@ -1234,7 +1234,7 @@ $_LANG['SMTP settings.'] = 'Nastavenie SMTP.'; $_LANG['Sorting:'] = 'Triedenie:'; $_LANG['Specified address does not belongs to any network!'] = '©pecifikovaná adresa nepatrí do Ÿiadnej sieti!'; -$_LANG['Specified address is not a network address, setting $0'] = '©pecifikovaná adresa nieje sie»ovou adresou, nastavenie $0'; +$_LANG['Specified address is not a network address, setting $a'] = '©pecifikovaná adresa nieje sie»ovou adresou, nastavenie $a'; $_LANG['Specified domain contains forbidden characters!'] = '©pecifikovaná doména obsahuje zakázané znaky!'; $_LANG['Specified e-mail is not correct!'] = '©pecifikovanę e-mail je neplatnę!'; $_LANG['Specified gateway address does not match with network address!'] = '©pecifikovaná brána neodpovedá sie»ovej adrese!'; @@ -1246,7 +1246,7 @@ $_LANG['Specified MAC address is in use!'] = '©pecifikovaná MAC adresa sa uŸ pouŸíva!'; $_LANG['Specified name contains forbidden characters!'] = '©pecifikované meno obsahuje zakázané znaky!'; $_LANG['Specified name is in use!'] = '©pecifikované meno sa uŸ poŸíva!'; -$_LANG['Specified name is too long (max.$0 characters)!'] = '©pecifikované meno je prílič dlhé (max. $0 znakov)!'; +$_LANG['Specified name is too long (max.$a characters)!'] = '©pecifikované meno je prílič dlhé (max. $a znakov)!'; $_LANG['Specify format of verbal amounts representation (on invoices). e.g. for value "1" verbal expand of 123,15 will be "one two thr 15/100". Default: 0.'] = 'Zvolte formát reprezentacie slovného mnoŸstva liczb (na faktúrach). napr. pre hodnotu "1" slovná podoba èiastky 123,15 bude "jed dva tri 15/100". Vęchodzie: 0.'; $_LANG['Specify time (in seconds), after which node will be marked offline. It should match with frequency of running nodes activity script (i.e. lms-fping). Default: 600.'] = 'Zvolte èas (v sekundách) po ktorom bude poèítaè oznaèenę ako offline. Táto hodnota by mala odpoveda» frekvencií spoustenia skriptu, kterę detekuje aktivitu poèítaèa (napr. lms-fping). Vęchodzie: 600.'; $_LANG['SQL query executed while reload, if reload_type = sql. By default, query inserts into table \'timestamps\' value \'_force\'. You can use \'%TIME%\' as replacement to current unix timestamp. WARNING! Semicolon is handled as query separator, which means that you can enter couple of SQL queries separated by semicolon sign.'] = 'Dotazy na SQL databázy sú vykonávané pri obnovení, pokia” reload_type = sql. Vęchodzie nastavenie ukladá dotazy do tabu”ky \'timestamps\' hodnoty \'_force\'. MoŸno pouŸí» \'%TIME%\' miesto klasického unix timestampu. POZOR! Medzerník je vyhodnotenę ako oddelovaè dotazov, èo umoŸòuje vklada» nieko”ko SQL príkazov oddelenęch medzerníkov.'; @@ -1273,9 +1273,9 @@ $_LANG['System message:'] = 'Systémová správa:'; $_LANG['System version:'] = 'Verzia systému:'; $_LANG['Table of financial operations'] = 'Tabu”ka peòaŸnęch operácií'; -$_LANG['Subscription $0 already exists!'] = 'Tarifa $0 uŸ existuje!'; -$_LANG['Subscription Edit: $0'] = 'Editácia tarify: $0'; -$_LANG['Subscription Info: $0'] = 'Informácie o tarifie: $0'; +$_LANG['Subscription $a already exists!'] = 'Tarifa $a uŸ existuje!'; +$_LANG['Subscription Edit: $a'] = 'Editácia tarify: $a'; +$_LANG['Subscription Info: $a'] = 'Informácie o tarifie: $a'; $_LANG['Subscription List'] = 'Zoznam taríf'; $_LANG['Subscription name required!'] = 'Meno tarify je povinné!'; $_LANG['Subscription not selected!'] = 'Tarifa nieje oznaèená!'; @@ -1316,13 +1316,13 @@ $_LANG['This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation.'] = 'Tento program je free softwarem; je teda čirite”nę a modifikovate”nę za podmienok danęch GNU verzia 2 publikovanęch Free Software Foundation.'; $_LANG['This queue is empty.'] = 'Táto rada je prázdna.'; $_LANG['Ticket date:'] = 'Dátum lístku:'; -$_LANG['Ticket Edit: $0'] = 'Editácia lístku: $0'; +$_LANG['Ticket Edit: $a'] = 'Editácia lístku: $a'; $_LANG['Ticket History'] = 'História lístku'; $_LANG['Ticket must have its body!'] = 'Lístok musí ma» obsah!'; $_LANG['Ticket must have its title!'] = 'Lístok musí ma» nadpis!'; -$_LANG['Ticket No $0'] = 'Lístok È. $0'; +$_LANG['Ticket No $a'] = 'Lístok È. $a'; $_LANG['Ticket Review'] = 'Revízia lístku'; -$_LANG['Ticket Review: No. $0'] = 'Revízia lístku: È $0'; +$_LANG['Ticket Review: No. $a'] = 'Revízia lístku: È $a'; $_LANG['Tickets'] = 'Lístky'; $_LANG['Ticket Search'] = 'Vyhlada» lístok'; $_LANG['Tickets searching'] = 'Vyhladanie lístku'; @@ -1340,10 +1340,10 @@ $_LANG['To (day/month/year hh:mm):'] = 'Do (deò/miesiac/rok hh:mm):'; $_LANG['To pay:'] = 'K úhrade:'; $_LANG['Total:'] = 'Celkom:'; -$_LANG['Total: $0'] = 'Celkom: $0'; +$_LANG['Total: $a'] = 'Celkom: $a'; $_LANG['Total Dues:'] = 'Platby v prodlení:'; $_LANG['Total Invoiceless Income'] = 'Celkovę nezdanenę príjem'; -$_LANG['Total Invoiceless Income ($0 to $1)'] = 'Celkovę nezdanenę príjem ($0 do $1)'; +$_LANG['Total Invoiceless Income ($a to $b)'] = 'Celkovę nezdanenę príjem ($a do $b)'; $_LANG['Total Tax'] = 'Celkom DPH'; $_LANG['Type:'] = 'Typ:'; $_LANG['Type/Quota:'] = 'Typ/Quota:'; @@ -1353,7 +1353,7 @@ $_LANG['Unit:'] = 'Jednotka:'; $_LANG['Unitary Net Value:'] = 'Cena jedn. netto:'; $_LANG['Unknown option. No description.'] = 'Neznáma vo”ba. Bez poznámky.'; -$_LANG['unknown OS ($0)'] = 'neznámy OS ($0)'; +$_LANG['unknown OS ($a)'] = 'neznámy OS ($a)'; $_LANG['Unresolved:'] = 'Nevyriečené:'; $_LANG['Upceil:'] = 'Upceil:'; $_LANG['Upload'] = 'Upload'; @@ -1369,8 +1369,8 @@ $_LANG['User'] = 'UŸívate”'; $_LANG['User:'] = 'UŸívate”:'; $_LANG['User-defined stats'] = 'UŸívate”om definované čtatistiky'; -$_LANG['User Edit: $0'] = 'Editácia uŸívate”a: $0'; -$_LANG['User Info: $0'] = 'Informácie o uŸívate”ovi: $0'; +$_LANG['User Edit: $a'] = 'Editácia uŸívate”a: $a'; +$_LANG['User Info: $a'] = 'Informácie o uŸívate”ovi: $a'; $_LANG['User Interface'] = 'UŸivate”ské rozhranie'; $_LANG['User Interface Configuration'] = 'Konfigurácia uŸivate”ského rozhrania'; $_LANG['User interface language code. If not set, language will be determined on browser settings. Default: en.'] = 'Jazyk uŸivate”ského rozhrania. Pokial nieje nastavenę, jazyk je urèenę nastavením prehliadaèa. Vęchodzie: en.'; @@ -1386,12 +1386,12 @@ $_LANG['Value:'] = 'Hodnota:'; $_LANG['Value and description:'] = 'Hodnota a popis:'; $_LANG['Value of tax rate which will be selected by default on tax rates lists. Default: 22.0'] = 'Hodnota daòovej sadzby, ktorá bola zvolená ako vęchodzia na zozname daòovęch sadzieb. Vęchodzia: 22.0'; -$_LANG['Value of option "$0" must be a number grater than zero!'] = 'Hodnota vo”by "$0" musi by» väèčia od nuly!'; +$_LANG['Value of option "$a" must be a number grater than zero!'] = 'Hodnota vo”by "$a" musi by» väèčia od nuly!'; $_LANG['Value required!'] = 'Hodnota je povinná!'; $_LANG['View'] = 'Náhlad'; $_LANG['waiting'] = 'èakajúci na pripojenie'; $_LANG['Waiting:'] = 'Èakajúci na pripojenie:'; -$_LANG['Warning! Debug mode (using address $0).'] = 'POZOR! ReŸim odstránenia chęb (pouŸíva adresu $0).'; +$_LANG['Warning! Debug mode (using address $a).'] = 'POZOR! ReŸim odstránenia chęb (pouŸíva adresu $a).'; $_LANG['Warning! This is example document (default template). You can create your own template in documents/templates/ directory.'] = 'Pozor! Toto je príklad dokumentu (vęchodzia čablóna). MôŸete vytvori» svoju vlastnú čablónu v adresári documents/templates/.'; $_LANG['WARNING! It will backup current database content automatically'] = 'POZOR! Spraví automaticky zálohu obsahu stavajúcej databázy'; $_LANG['Warning message:'] = 'Varovná správa:'; @@ -1400,7 +1400,7 @@ $_LANG['Warning! This version of LMS is under development! Remember that it might work unstable and certainly has still many bugs! If you need stability try 1.10 version!'] = 'Pozor! Táto verzia systému LMS je stále vo vyvoji! Majte na pamäti, Ÿe môŸe by» nestabilná a urèite má ve”a chęb! Pokial dáváte prednos» stabilite pred novęmi funkciami, pouŸite verziu 1.10!'; $_LANG['WARNING! THIS WILL DELETE ALL DATA FROM DATABASE!!!'] = 'POZOR! TÁTO OPERÁCIA VYMAźE V©ETKY ÚDAJE Z DATABÁZY!!!'; $_LANG['weekly'] = 'tęŸdenne'; -$_LANG['weekly ($0)'] = 'tęŸdenne ($0)'; +$_LANG['weekly ($a)'] = 'tęŸdenne ($a)'; $_LANG['Welcome to LMS'] = 'Pavel3 Vás víta v LMS'; $_LANG['When:'] = 'Kedy:'; $_LANG['When enabled, all messages in helpdesk system (except those sent to requester) will be sent to mail server corresponding queue address. lms-rtparser script should be running on server. Messages won\'t be written directly to database, but on solely responsibility of rtparser script. Default: disabled.'] = 'Pokial je povolené, včetky správy v systéme helpdesk (okrem správ odosielanęch Ÿiadate”ovi) budú odoslané na mailovę server do odpovedajúcej rady adres. Skript lms-rtparser by mal by» spustenę na servery. Správy nebudú zapísané priamo do databázy, ale budú len zpracované skriptom rtparser. Vęchodzie: vypnuté.'; @@ -1416,7 +1416,7 @@ $_LANG['Wrong password or login.'] = 'Chybné heslo alebo prihlasovacie meno.'; $_LANG['www'] = 'www'; $_LANG['yearly'] = 'roène'; -$_LANG['yearly ($0)'] = 'roène ($0)'; +$_LANG['yearly ($a)'] = 'roène ($a)'; $_LANG['yes'] = 'áno'; $_LANG['Yes, I am sure.'] = 'Áno, som si istę'; $_LANG['Yes, I do.'] = 'Áno, súhlasím.'; @@ -1442,7 +1442,7 @@ $_LANG['You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'] = 'Mali by ste obdrŸa» kópiu GNU - General Public License spoloène s tęmto programom; pokia” sa tak nestane, napíčte si o òu na adresu Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'; $_LANG['Zip:'] = 'PSÈ:'; $_LANG['Add tax rate'] = 'Pridajte daòovú sadzbu'; -$_LANG['Are you sure, you want to delete taxrate \\\'$0\\\'?'] = 'Ste si istę, Ÿe chcete zmaza» daòovú sadzbu \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete taxrate \\\'$a\\\'?'] = 'Ste si istę, Ÿe chcete zmaza» daòovú sadzbu \\\'$a\\\'?'; $_LANG['Binds from date:'] = 'Platné od:'; $_LANG['Binds to date:'] = 'Platné do:'; $_LANG['Display this form again, when this tax rate is saved'] = 'Zobrazi» tento formulár vŸdy, keï je táto daòová sadzba uloŸená'; @@ -1456,7 +1456,7 @@ $_LANG['No such tax rates in database.'] = 'Odpovedajúca daòová zadzba nieje v adresáry.'; $_LANG['Select taxing status'] = 'Zvolte namáhavę stav'; $_LANG['Taxing:'] = 'Namáhavę:'; -$_LANG['Tax Rate Edit: $0'] = 'Editácia daòovej sadzby: $0'; +$_LANG['Tax Rate Edit: $a'] = 'Editácia daòovej sadzby: $a'; $_LANG['Tax rate label is required!'] = 'Popis daòovej sadzby je povinnę!'; $_LANG['Tax Rates'] = 'Daòové sadzby'; $_LANG['Tax Rates Definitions'] = 'Definícia daòovęch sadzieb'; @@ -1464,7 +1464,7 @@ $_LANG['Tax rate value is not numeric!'] = 'Daòová sadzba nieje èíselná hodnota!'; $_LANG['annex'] = 'doloŸka'; $_LANG['Are you sure, you want to remove that document?'] = 'Ste si istę, Ÿe chcete odstráni» tento dokument?'; -$_LANG['Can\'t save file in "$0" directory!'] = 'Nieje moŸné uloŸi» súbor do adresára "$0"!'; +$_LANG['Can\'t save file in "$a" directory!'] = 'Nieje moŸné uloŸi» súbor do adresára "$a"!'; $_LANG['contract'] = 'zmluva'; $_LANG['Customer\'s Documents:'] = 'Dokumenty zákazníka:'; $_LANG['Display this form again, when that document is saved'] = 'Zobrazi» tento formulár vŸdy, keï je tento dokument uloŸenę'; @@ -1496,7 +1496,7 @@ $_LANG['No. of issued documents:'] = 'È. vydaného dokumentu:'; $_LANG['Document type:'] = 'Typ dokumentu:'; $_LANG['Default:'] = 'Vęchodzie:'; -$_LANG['Are you sure, you want to delete numberplan \\\'$0\\\'?'] = 'Ste si istę, Ÿe chcete zmaza» èíslovací plán \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete numberplan \\\'$a\\\'?'] = 'Ste si istę, Ÿe chcete zmaza» èíslovací plán \\\'$a\\\'?'; $_LANG['Numbering Plans List'] = 'Zoznam èíslovacích plánov'; $_LANG['Add plan'] = 'VloŸi» plán'; $_LANG['cash receipt'] = 'pokladnièná potvrdenka'; @@ -1508,7 +1508,7 @@ $_LANG['New Numbering Plan'] = 'Novę èíslovací plán'; $_LANG['No such numbering plans in database.'] = 'Zodpovedajúci èíslovací plán nieje v databáze.'; $_LANG['Numbering period is required!'] = 'Èíselné obdobie je povinné!'; -$_LANG['Numbering Plan Edit: $0'] = 'Editácia èíslovacieho plánu: $0'; +$_LANG['Numbering Plan Edit: $a'] = 'Editácia èíslovacieho plánu: $a'; $_LANG['Number template is required!'] = 'Èíselná čablóna je povinná!'; $_LANG['select document type'] = 'zvolte typ dokumentu'; $_LANG['Selected document type has already defined default plan!'] = 'Zvolenę typ dokumentu má uŸ definovanę vęchodzí plán!'; @@ -1516,18 +1516,18 @@ $_LANG['Select numbering plan'] = 'Zvolte èíselnę plán'; $_LANG['select period'] = 'zvolte obdobie'; $_LANG['Template must consist "%N" specifier!'] = '©ablóna musí obsahova» čpecifikátor "%N"!'; -$_LANG['Are you sure, you want to remove credit note \\\'$0\\\' from database?'] = 'Ste si istę, Ÿe chcete odstráni» dobropis \\\'$0\\\' z databázy?'; +$_LANG['Are you sure, you want to remove credit note \\\'$a\\\' from database?'] = 'Ste si istę, Ÿe chcete odstráni» dobropis \\\'$a\\\' z databázy?'; $_LANG['Corrected to:'] = 'Opravenę na:'; $_LANG['credit memo'] = 'poznámka k oprave'; $_LANG['credit note'] = 'dobropis'; $_LANG['Credit note'] = 'Dobropis'; -$_LANG['Credit Note for Invoice: $0'] = 'Dobropis faktúry: $0'; -$_LANG['Credit Note No. $0'] = 'Dobropis È $0'; +$_LANG['Credit Note for Invoice: $a'] = 'Dobropis faktúry: $a'; +$_LANG['Credit Note No. $a'] = 'Dobropis È $a'; $_LANG['Credit note number:'] = 'Èíslo dobropisu:'; -$_LANG['Credit note number $0 already exists!'] = 'Dobropis èíslo $0 uŸ existuje!'; +$_LANG['Credit note number $a already exists!'] = 'Dobropis èíslo $a uŸ existuje!'; $_LANG['Credit note number must be integer!'] = 'Èíslo dobropisu musí by» typu integer!'; $_LANG['Enter credit note number. WARNING! Changing this number can be DANGEROUS! (leave this field empty to obtain next number)'] = 'VloŸte èíslo dobropisu.POZOR! Zmena tohto èísla môŸe by» NEBEZPEÈNÁ! (ponechajte pole prázdne pokia” chcete pokraèova» v èíselnej rade)'; -$_LANG['for Invoice No. $0'] = 'na Faktúru DPH È. $0'; +$_LANG['for Invoice No. $a'] = 'na Faktúru DPH È. $a'; $_LANG['Recover this item'] = 'Obnovi» túto poloŸku'; $_LANG['Remove this item'] = 'Odstráni» túto poloŸku'; $_LANG['Revise'] = 'Dobropisova»'; @@ -1545,7 +1545,7 @@ $_LANG['select template'] = 'zvolte čablónu'; $_LANG['Select template to generate new document if you haven\'t got prepared file'] = 'Zvolte čablónu pre vytvorenie nového dokumentu pokial nemáte hotovę súbor'; $_LANG['WINS:'] = 'WINS:'; -$_LANG['last $0 documents'] = 'poslednęch $0 dokumentov'; +$_LANG['last $a documents'] = 'poslednęch $a dokumentov'; $_LANG['Last operation:'] = 'Posledná operácia:'; $_LANG['Limit of records displayed on one page in documents list. Default: 100.'] = 'Limit záznamov zobrazenęch na jednej strane zoznamu dokumentu. Vęchodzie: 100.'; $_LANG['All documents'] = 'Včetky dokumenty'; @@ -1557,7 +1557,7 @@ $_LANG['No such stats for selected period.'] = 'źiadne čtatistiky v zvolenom období.'; $_LANG['Receipts'] = 'Prímy'; $_LANG['Select period'] = 'Zvolte obdobie'; -$_LANG['Stats of Customer $0 in month $1'] = '©tatistika zákazníka $0 za mesiac $1'; +$_LANG['Stats of Customer $a in month $b'] = '©tatistika zákazníka $a za mesiac $b'; $_LANG['Year:'] = 'Rok:'; $_LANG['Add items'] = 'VloŸi» poloŸky'; $_LANG['Last 10 not accounted invoices:'] = 'Poslednęch 10 nevyuètovanęch faktúr:'; @@ -1580,7 +1580,7 @@ $_LANG['Liability name/description is required!'] = 'Meno/popis záväzku je povinné!'; $_LANG['Liability value not specified!'] = 'Nieje uvedená hodnota záväzku!'; $_LANG['or'] = 'alebo'; -$_LANG['Customer ID: $0'] = 'ID zákazníka: $0'; +$_LANG['Customer ID: $a'] = 'ID zákazníka: $a'; $_LANG['Enter balance limit (default 0)'] = 'VloŸte limit zostatkov (vęchodzie 0)'; $_LANG['Transfer forms'] = 'Prenies» formulár'; $_LANG['Not set'] = 'Nenastavené'; @@ -1601,46 +1601,46 @@ $_LANG['Add registry'] = 'Novę register'; $_LANG['Advanced (+R)'] = 'Zvęčenę (+O)'; $_LANG['All receipts in that registry will be lost.'] = 'Včetky potvrdenia v tomto registry budú zmazané.'; -$_LANG['Are you sure, you want to remove registry \\\'$0\\\' and all assigned receipts?'] = 'Ste si istę, że chcete odstráni» register \\\'$0\\\' a včetky priradene potvrdenky?'; +$_LANG['Are you sure, you want to remove registry \\\'$a\\\' and all assigned receipts?'] = 'Ste si istę, że chcete odstráni» register \\\'$a\\\' a včetky priradene potvrdenky?'; $_LANG['Cash-in receipt numbering plan:'] = 'Èíslovací plán primovęch potvrdeniek:'; $_LANG['cash operations'] = 'peòaŸné operácie'; $_LANG['Cash-out receipt numbering plan:'] = 'Èíslovací plán vędajkovęch potvrdeniek:'; $_LANG['Cash Registries List'] = 'Zoznam peòaŸnęch registrov'; -$_LANG['Cash Registry: $0'] = 'PeòaŸnę register: $0'; -$_LANG['Cash Registry Info: $0'] = 'Informácie o registry: $0'; +$_LANG['Cash Registry: $a'] = 'PeòaŸnę register: $a'; +$_LANG['Cash Registry Info: $a'] = 'Informácie o registry: $a'; $_LANG['CR-in'] = 'PP'; $_LANG['CR-out'] = 'PV'; -$_LANG['Do you want to remove registry "$0"?'] = 'Chcete natrvalo odstráni» tento register "$0"?'; -$_LANG['Edit Cash Registry: $0'] = 'Editácia peòaŸného registru: $0'; +$_LANG['Do you want to remove registry "$a"?'] = 'Chcete natrvalo odstráni» tento register "$a"?'; +$_LANG['Edit Cash Registry: $a'] = 'Editácia peòaŸného registru: $a'; $_LANG['List of cash registries'] = 'Zoznam peòaŸnęch registrov'; $_LANG['New Cash Registry'] = 'Novę peòaŸnę register'; $_LANG['Proof of Pay-out'] = 'Dôvod vędaja'; $_LANG['Registry name must be defined!'] = 'Názov registru je povinnę!'; $_LANG['Registry with specified name already exists!'] = 'Register s tęmto názvom uŸ existuje!'; -$_LANG['Removing registry "$0"'] = 'Odstraòovanie registru "$0"'; -$_LANG['Selected customer is in debt for $0!'] = 'Zvolte dlŸiaceho zákazníka za $0!'; +$_LANG['Removing registry "$a"'] = 'Odstraòovanie registru "$a"'; +$_LANG['Selected customer is in debt for $a!'] = 'Zvolte dlŸiaceho zákazníka za $a!'; $_LANG['- select numbering plan -'] = '- zvolte èíslovací plán -'; $_LANG['There are no cash registries.'] = 'źiadne peòaŸné registre'; $_LANG['To whom:'] = 'Komu:'; $_LANG['Cash Receipts'] = 'PeòaŸnę dokumenty'; $_LANG['Cash Registry:'] = 'PeòaŸné registre:'; $_LANG['Moving assets:'] = 'Prenesenie aktív:'; -$_LANG['Moving assets from registry $0 ($1)'] = 'Prenesenie aktív z registru $0 ($1)'; -$_LANG['Moving assets to registry $0'] = 'Prenesenie aktív do registru $0'; +$_LANG['Moving assets from registry $a ($b)'] = 'Prenesenie aktív z registru $a ($b)'; +$_LANG['Moving assets to registry $a'] = 'Prenesenie aktív do registru $a'; $_LANG['Select cash registry'] = 'Zvolte peòaŸnę register'; $_LANG['- select registry -'] = '- zvolte register -'; $_LANG['Target:'] = 'Cie”:'; $_LANG['There is no cash in selected registry!'] = 'źiadna hotovos» vo zvolenom registry!'; -$_LANG['There is no cash in selected registry! You can expense only $0.'] = 'źiadna hotovos» vo zvolenom registry! MôŸeč vyda» len $0.'; +$_LANG['There is no cash in selected registry! You can expense only $a.'] = 'źiadna hotovos» vo zvolenom registry! MôŸeč vyda» len $a.'; $_LANG['You don\'t have permission to add receipt in selected cash registry!'] = 'Nemáte oprávnenie prida» potvrdenku do vybraného peòaŸného registru!'; $_LANG['Registry:'] = 'Register:'; $_LANG['Expense'] = 'Vędaj'; $_LANG['Income'] = 'Príjem'; $_LANG['No such cash receipts in database.'] = 'źiadne potvrdenky v databázy.'; -$_LANG['Registry: $0'] = 'Register: $0'; -$_LANG['Cashier: $0'] = 'Pokladník: $0'; -$_LANG['Cash-in Receipt Edit: $0'] = 'Editácia prímovej potvrdenky: $0'; -$_LANG['Cash-out Receipt Edit: $0'] = 'Editácia vędajovej potvrdenky: $0'; +$_LANG['Registry: $a'] = 'Register: $a'; +$_LANG['Cashier: $a'] = 'Pokladník: $a'; +$_LANG['Cash-in Receipt Edit: $a'] = 'Editácia prímovej potvrdenky: $a'; +$_LANG['Cash-out Receipt Edit: $a'] = 'Editácia vędajovej potvrdenky: $a'; $_LANG['Cash Registry'] = 'PeòaŸnę register'; $_LANG['payed out'] = 'Vyplatené'; $_LANG['received'] = 'prijaté'; @@ -1659,7 +1659,7 @@ $_LANG['Confirm'] = 'Potvri»'; $_LANG['Confirmed:'] = 'Potvrdenę:'; $_LANG['Deleted:'] = 'Zmazanę:'; -$_LANG['Edit Document: $0'] = 'Editácia dokumentu: $0'; +$_LANG['Edit Document: $a'] = 'Editácia dokumentu: $a'; $_LANG['Additional number:'] = 'Dodatoèné èíslo:'; $_LANG['Enter additional document number'] = 'VloŸte dodatoèné èíslo dokumentu'; $_LANG['income/expense'] = 'prímy/vędavky'; @@ -1709,7 +1709,7 @@ $_LANG['Numbering plan:'] = 'Èislovací plán:'; $_LANG['Additional information:'] = 'Dodatoèné informácie:'; $_LANG['extended format'] = 'rozčírenę formát'; -$_LANG['Page $0 from $1'] = 'Strana $0 z $1'; +$_LANG['Page $a from $b'] = 'Strana $a z $b'; $_LANG['Page total:'] = 'Celkom na strane:'; $_LANG['Total from start of period:'] = 'Celkom od spustenia periody:'; $_LANG['Transfered from previous page:'] = 'Prenesené z predchádzajúcej strany:'; @@ -1740,12 +1740,12 @@ $_LANG['Select request cause'] = 'Vyber spôsobenú príèinu'; $_LANG['unknown/other'] = 'neznáma/iná'; $_LANG['unknown/other'] = 'neznáme/iné'; -$_LANG['Go to $0 page'] = 'Choï na $0 stranu'; +$_LANG['Go to $a page'] = 'Choï na $a stranu'; $_LANG['Requests causes (last year):'] = 'Príèiny spôsobené (poslednę rok):'; $_LANG['Adds helpdesk requests causes stats on ticket view and print pages. Default: true'] = 'Pridaj čtatistiky spôsobenęch príèin na zobrazenę lístok a vytlaè stránku. Vęchodzie: áno'; $_LANG['Enables page scroller designed for lists with very big number of pages. Default: false'] = 'Povol scrolovanie stránky navrhnuté pre zoznam s ve”mi vekkęmi èíslami na stránke. Vęchodzie: nepravda'; $_LANG['Support for EtherWerX devices. Default: false'] = 'Podpore pre zariadenia Ether WerX. Vęchodzie: nepravda'; -$_LANG['Customers requesting more than $0 times in last $1 days'] = 'Zákaznizi Ÿiadajúci viac ako $0 krát za posleddęch $1 dní'; +$_LANG['Customers requesting more than $a times in last $b days'] = 'Zákaznizi Ÿiadajúci viac ako $a krát za posleddęch $b dní'; $_LANG['List of Requests'] = 'Zoznam Ÿiadostí'; $_LANG['Lists and reports printing'] = 'Tlaè zoznamov a reportov'; $_LANG['Lists and reports printing'] = 'Tlaè zoznamov a reportov'; @@ -1776,7 +1776,7 @@ $_LANG['- select filter -'] = '- zvol filter -'; $_LANG['Settle advance'] = 'Pokroèilá platba'; $_LANG['Not accounted advances:'] = 'źiadne zistitelné straty:'; -$_LANG['Advance settlement: $0'] = 'Pokroèilé vyúètovanie: $0'; +$_LANG['Advance settlement: $a'] = 'Pokroèilé vyúètovanie: $a'; $_LANG['settlement'] = 'Vyúètovanie'; $_LANG['return'] = 'odpoveï'; $_LANG['Recipient:'] = 'Príjemca:'; @@ -1787,7 +1787,7 @@ $_LANG['Description is required!'] = 'Popis je povinnę!'; $_LANG['Enter receipt description'] = 'VloŸ popis potvrdenky'; $_LANG['Recipient name is required!'] = 'Názov potvrdenky je povinnę!'; -$_LANG['There is only $0 in registry!'] = 'Je tu v registry len $0!'; +$_LANG['There is only $a in registry!'] = 'Je tu v registry len $a!'; $_LANG['Value is required!'] = 'Hodnota je povinná!'; $_LANG['Delete (+R)'] = 'Zmaza» (+O)'; $_LANG['Are you sure, you want to delete that note?'] = 'Trváč na zmazaní tejto poznámky?'; @@ -1822,7 +1822,7 @@ $_LANG['Wrong datetime format!'] = 'Zlę formát dátum/èas!'; $_LANG['Real state:'] = 'Skutoènę stav:'; $_LANG['Select All'] = 'Zvolte včetkęch'; -$_LANG['There is newer version of LMS ($0) available for download from $1.'] = 'Na stránké $1 je uż dostupná nová verzia LMS - $0.'; +$_LANG['There is newer version of LMS ($a) available for download from $b.'] = 'Na stránké $b je uż dostupná nová verzia LMS - $a.'; $_LANG['Are you sure, you want to delete selected documents?'] = 'Trváte na zmazaní zvolenęch dokumentov?'; $_LANG['Enter Gadu-Gadu ID (optional)'] = 'VloŸ ID Gadu-Gadu (nepovinné)'; $_LANG['Enter Skype ID (optional)'] = 'VloŸ ID Skype (nepovinné)'; @@ -1860,8 +1860,8 @@ $_LANG['Selected'] = 'Zvolené'; $_LANG['customers groups management'] = 'Správa zákazníckych skupín'; $_LANG['Groups:'] = 'Skupiny:'; -$_LANG['Group: $0'] = 'Skupina: $0'; -$_LANG['Group: all excluding $0'] = 'Skupina: včetky okrem $0'; +$_LANG['Group: $a'] = 'Skupina: $a'; +$_LANG['Group: all excluding $a'] = 'Skupina: včetky okrem $a'; $_LANG['Position:'] = 'PozíciaStanowisko:'; $_LANG['Configuration error. Patterns array not found!'] = 'Chyba v konfigurácii. Array vzory nenájdené!'; $_LANG['Line:'] = 'Línia:'; @@ -1878,7 +1878,7 @@ $_LANG['Date from the future not allowed!'] = 'Dátum z budúcnosti nie sú povolené!'; $_LANG['no guarantee'] = 'bez záruky'; $_LANG['Select days number of cutoff suspending (optional)'] = 'Vyberte poèet dní od cutoff pozastavenia (nepovinné)'; -$_LANG['Cutoff suspended to $0'] = 'Cutoff preručené do dòa $0'; +$_LANG['Cutoff suspended to $a'] = 'Cutoff preručené do dòa $a'; $_LANG['Customer has got disconnected nodes!'] = 'Zákazník má poèítaè odpojenę!'; $_LANG['Clone'] = 'Klonuj'; $_LANG['Add node to group'] = 'Prida» poèítaè do skupiny'; @@ -1894,14 +1894,14 @@ $_LANG['Select group to attribute to node'] = 'Vyberte skupinu na priradenie k poèítaèu'; $_LANG['That node is not a member of any group.'] = 'Tento poèítaè nepatrí do Ÿiadnej zo skupin.'; $_LANG['Remove Group'] = 'Odstráni» skupinu'; -$_LANG['Node\'s Groups ($0):'] = 'Skupiny poèítaèa ($0):'; +$_LANG['Node\'s Groups ($a):'] = 'Skupiny poèítaèa ($a):'; $_LANG['Are you sure, you want to delete that group?'] = 'Ste si istí, Ÿe chcete zmaza» túto skupinu?'; $_LANG['Are you sure, you want to move members to selected group?'] = 'Ste si istí, Ÿe chcete premiestni» èlenov do vybranej skupiny?'; $_LANG['Move members to group:'] = 'Presunú» do skupiny èlenov:'; $_LANG['Select group to which you want to move members'] = 'Oznaète skupiny, do ktorej chcete presunú» èlenov'; $_LANG['Default period value for assignment. Default: 0'] = 'Predvolená hodnota pre urèenie èasu. Vęchodzie: 0'; -$_LANG['Customer has got nodes in group(s): $0!'] = 'Poèítaè(e) zákazníka patria do skupin(y): $0!'; -$_LANG['Customer has got nodes in groups: $0!'] = 'Poèítaèe zákazníka sú v skupinách: $0!'; +$_LANG['Customer has got nodes in group(s): $a!'] = 'Poèítaè(e) zákazníka patria do skupin(y): $a!'; +$_LANG['Customer has got nodes in groups: $a!'] = 'Poèítaèe zákazníka sú v skupinách: $a!'; $_LANG['Dest. port'] = 'Cie”ovę port'; $_LANG['Device:'] = 'Zariadenie:'; $_LANG['Enter port number in device for connection (optional)'] = 'Zadajte èíslo portu zariadenia pre pripojenie (nepovinné)'; @@ -1919,15 +1919,15 @@ $_LANG['Destination:'] = 'cie”:'; $_LANG['Login'] = 'Login'; $_LANG['Accounts number:'] = 'Èíslo úètu:'; -$_LANG['Account Info: $0'] = 'Informácie o úète: $0'; +$_LANG['Account Info: $a'] = 'Informácie o úète: $a'; $_LANG['Aliases number:'] = 'Aliasy èíslo:'; -$_LANG['Alias Edit: $0'] = 'Edituj alias: $0'; -$_LANG['Alias Info: $0'] = 'Informácie o aliase: $0'; +$_LANG['Alias Edit: $a'] = 'Edituj alias: $a'; +$_LANG['Alias Info: $a'] = 'Informácie o aliase: $a'; $_LANG['Are you sure, you want to delete that account?'] = 'Ste si istí, Ÿe chcete odstráni» tento úèet?'; $_LANG['Are you sure, you want to delete that alias?'] = 'Ste si istí, Ÿe chcete vymaza» tento alias?'; $_LANG['Are you sure, you want to delete that domain and all accounts/aliases in that domain?'] = 'Ste si istí, Ÿe chcete zmaza» túto doménu a včetky úèty / aliasy v nej?'; $_LANG['Domain\'s owner:'] = 'Vlastník domény:'; -$_LANG['Domain Info: $0'] = 'nformácie o doméne: $0'; +$_LANG['Domain Info: $a'] = 'nformácie o doméne: $a'; $_LANG['Hosting'] = 'Hosting'; $_LANG['Node group:'] = 'Skupina poèítaèov:'; $_LANG['You have to select destination account!'] = 'Musíte vybra» miesto urèenia pre úèet!'; @@ -1963,12 +1963,12 @@ $_LANG['Quota limit of shell account:'] = 'Limit ve”kosti váčej schránky:'; $_LANG['Quota limit of sql account:'] = 'Limit ve”kosti váčho SQL:'; $_LANG['Quota limit of www account:'] = 'Limit ve”kosti vačej stránky:'; -$_LANG['Exceeded \'$0\' accounts limit of selected customer ($1)!'] = 'Prekroèenę limit poètu kont typu \'$0\' pre vybraného zákazníka ($1)!'; -$_LANG['Exceeded \'$0\' account quota limit of selected customer ($1)!'] = 'Prekroèenę limit rozmiaru konta typu \'$0\' pre vybraného zákazníka ($1)!'; -$_LANG['Exceeded aliases limit of selected customer ($0)!'] = 'Prekroèenę limit poètu aliasov pre vybraného zákazníka ($0)!'; -$_LANG['Exceeded domains limit of selected customer ($0)!'] = 'Prekroèenę limit poètu domén pre vybraného zákazníka ($0)!'; -$_LANG['Account aliases ($0):'] = 'Aliasy tohto úètu ($0)'; -$_LANG['Are you sure, you want to delete assignment with alias: \\\'$0\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» prepojenie s aliasom: \\\'$0\\\'?'; +$_LANG['Exceeded \'$a\' accounts limit of selected customer ($b)!'] = 'Prekroèenę limit poètu kont typu \'$a\' pre vybraného zákazníka ($b)!'; +$_LANG['Exceeded \'$a\' account quota limit of selected customer ($b)!'] = 'Prekroèenę limit rozmiaru konta typu \'$a\' pre vybraného zákazníka ($b)!'; +$_LANG['Exceeded aliases limit of selected customer ($a)!'] = 'Prekroèenę limit poètu aliasov pre vybraného zákazníka ($a)!'; +$_LANG['Exceeded domains limit of selected customer ($a)!'] = 'Prekroèenę limit poètu domén pre vybraného zákazníka ($a)!'; +$_LANG['Account aliases ($a):'] = 'Aliasy tohto úètu ($a)'; +$_LANG['Are you sure, you want to delete assignment with alias: \\\'$a\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» prepojenie s aliasom: \\\'$a\\\'?'; $_LANG['Delete assignment'] = 'Odstráni» prepojenie'; $_LANG['There are no aliases for that account.'] = 'Neexistujú Ÿiadne aliasy pre danę úèet.'; $_LANG['New alias'] = 'Novę alias'; @@ -1998,7 +1998,7 @@ $_LANG['Open attachment'] = 'Otvori» prílohu'; $_LANG['Consent to personal data processing:'] = 'Súhlas na spracovanie osobnęch údajov:'; $_LANG['TRANSFER'] = 'TRANSFER'; -$_LANG['Rows: $0'] = 'Poèet riadkov: $0'; +$_LANG['Rows: $a'] = 'Poèet riadkov: $a'; $_LANG['private person'] = 'Súkromná osoba'; $_LANG['legal entity'] = 'Právnická osoba / firma'; $_LANG['Select legal personality type'] = 'Vyberte typ právnej subjektivity'; @@ -2009,7 +2009,7 @@ $_LANG['in date:'] = 'v dátume:'; $_LANG['Legal personality:'] = 'Právna subjektivita:'; $_LANG['Add state'] = 'Prida» provinciu'; -$_LANG['Are you sure, you want to delete state \\\'$0\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» provinciu \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete state \\\'$a\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» provinciu \\\'$a\\\'?'; $_LANG['Country States Definitions'] = 'Definícia provincie'; $_LANG['Display this form again, when this state is saved'] = 'Zobrazi» tento formulár znovu, keï je tento región uloŸenę'; $_LANG['Enter state name'] = 'VloŸte názov regiónu'; @@ -2018,7 +2018,7 @@ $_LANG['Select personality type'] = 'Vyberte typ právnej subjektivity'; $_LANG['States'] = 'Regióny'; $_LANG['States List'] = 'Zoznam regiónov'; -$_LANG['State Edit: $0'] = 'Edituj región: $0'; +$_LANG['State Edit: $a'] = 'Edituj región: $a'; $_LANG['State name is required!'] = 'Názov regiónu je povinnę!'; $_LANG['Select country state'] = 'Zvolte región'; $_LANG['Select country state (optional)'] = 'Zvolte región (nepovinné)'; @@ -2028,7 +2028,7 @@ $_LANG['nodes to groups assignment'] = 'Priradenie poèítaèov do skupiny'; $_LANG['Address is required!'] = 'Adresa je povinná!'; $_LANG['Add division'] = 'Nová poboèka'; -$_LANG['Are you sure, you want to delete division \\\'$0\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» poboèku \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete division \\\'$a\\\'?'] = 'Ste si istí, Ÿe chcete odstráni» poboèku \\\'$a\\\'?'; $_LANG['Bank account:'] = 'Bankovę úèet:'; $_LANG['City is required!'] = 'Mesto je povinné!'; $_LANG['Company Divisions Definitions'] = 'Definícia poboèky'; @@ -2038,7 +2038,7 @@ $_LANG['Division long name is required!'] = 'Celé meno poboèky je povinné!'; $_LANG['Division short name is required!'] = 'Krátky názov poboèky je povinnę!'; $_LANG['Division with specified name already exists!'] = 'Poboèka s danęm menom uŸ existuje!'; -$_LANG['Edit Division: $0'] = 'Editácia poboèky: $0'; +$_LANG['Edit Division: $a'] = 'Editácia poboèky: $a'; $_LANG['Enter bank account or mass payments account prefix (optional)'] = 'Zadajte èíslo bankového úèetu alebo predèíslia úètu hromadnej platby (nepovinné)'; $_LANG['Enter division long name'] = 'Zadajte úplnę názov poboèky'; $_LANG['Enter division short name'] = 'Zadajte skrátenę názov pre poboèku'; @@ -2090,10 +2090,10 @@ $_LANG['Voip account phone number is too long (max.32 characters)!'] = 'Zadané telefónne èíslo je prílič dlhé (max. 32 znakov)!'; $_LANG['Specified phone is in use!'] = 'Telefónne èíslo sa pouŸíva!'; $_LANG['Specified phone number contains forbidden characters or is too short!'] = 'Zadané telefónne èíslo obsahuje zakázané znaky, alebo je prílič krátke!'; -$_LANG['Are you sure, you want to remove voip account \'$0\' from database?'] = 'Ste si istí, Ÿe chcete vymaza» úèet VoIP \'$0\' z databázy?'; -$_LANG['Are you sure, you want to remove voip account \\\'$0\\\' from database?'] = 'Ste si istí, Ÿe chcete vymaza» úèet VoIP \\\'$0\\\' z databázy?'; -$_LANG['Delete Voip Account $0'] = 'Zruči» úèet Voip: $0'; -$_LANG['Voip Account Info: $0'] = 'Informácie o úète: $0'; -$_LANG['Voip Account Edit: $0'] = 'Upravi» úèet VoIP: $0'; -$_LANG['Voip Accounts ($0):'] = 'VoIP úèty ($0)'; +$_LANG['Are you sure, you want to remove voip account \'$a\' from database?'] = 'Ste si istí, Ÿe chcete vymaza» úèet VoIP \'$a\' z databázy?'; +$_LANG['Are you sure, you want to remove voip account \\\'$a\\\' from database?'] = 'Ste si istí, Ÿe chcete vymaza» úèet VoIP \\\'$a\\\' z databázy?'; +$_LANG['Delete Voip Account $a'] = 'Zruči» úèet Voip: $a'; +$_LANG['Voip Account Info: $a'] = 'Informácie o úète: $a'; +$_LANG['Voip Account Edit: $a'] = 'Upravi» úèet VoIP: $a'; +$_LANG['Voip Accounts ($a):'] = 'VoIP úèty ($a)'; ?> From cvs w lms.org.pl Fri Oct 14 18:08:57 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:57 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib/locale/pl (strings.php) Message-ID: <20111014160857.7AD3630278A2@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:57 Author: chilek Path: /cvsroot/lms/lib/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/locale/pl/strings.php.diff?&r1=1.393&r2=1.394 Index: lms/lib/locale/pl/strings.php diff -u lms/lib/locale/pl/strings.php:1.393 lms/lib/locale/pl/strings.php:1.394 --- lms/lib/locale/pl/strings.php:1.393 Fri Sep 16 22:48:17 2011 +++ lms/lib/locale/pl/strings.php Fri Oct 14 18:08:57 2011 @@ -21,19 +21,19 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.393 2011/09/16 20:48:17 chilek Exp $ + * $Id: strings.php,v 1.394 2011/10/14 16:08:57 chilek Exp $ */ -$_LANG['$0 ($1 addresses)'] = '$0 ($1 adresów)'; -$_LANG['$0 addresses'] = '$0 adresów'; -$_LANG['$0 ago ($1)'] = '$0 temu ($1)'; -$_LANG['$0 at least one year old records have been removed.
'] = '$0 rekordów starszych niż rok zostało usuniêtych.
'; -$_LANG['$0 dollars $1 cents'] = '$0 złotych $1 groszy'; -$_LANG['$0 months'] = '$0 m-cy'; -$_LANG['$0 of $1 ($2) $3:'] = '$0 z $1 ($2) $3:'; -$_LANG['$0 records after compacting.'] = '$0 rekordów po kompaktowaniu.'; -$_LANG['$0 records before compacting.
'] = '$0 rekordów przed kompaktowaniem.
'; -$_LANG['$0 - removed, $1 - inserted
'] = '$0 - usuniêtych, $1 - dodanych
'; +$_LANG['$a ($b addresses)'] = '$a ($b adresów)'; +$_LANG['$a addresses'] = '$a adresów'; +$_LANG['$a ago ($b)'] = '$a temu ($b)'; +$_LANG['$a at least one year old records have been removed.
'] = '$a rekordów starszych niż rok zostało usuniêtych.
'; +$_LANG['$a dollars $b cents'] = '$a złotych $b groszy'; +$_LANG['$a months'] = '$a m-cy'; +$_LANG['$a of $b ($c) $d:'] = '$a z $b ($c) $d:'; +$_LANG['$a records after compacting.'] = '$a rekordów po kompaktowaniu.'; +$_LANG['$a records before compacting.
'] = '$a rekordów przed kompaktowaniem.
'; +$_LANG['$a - removed, $b - inserted
'] = '$a - usuniêtych, $b - dodanych
'; $_LANG['30 days'] = '30 dni'; $_LANG['365 days'] = '365 dni'; $_LANG['7 days'] = '7 dni'; @@ -44,7 +44,7 @@ $_LANG['Account'] = 'Rozlicz'; $_LANG['Accounts:'] = 'Konta:'; $_LANG['Accounted'] = 'Rozliczono'; -$_LANG['Account Edit: $0'] = 'Edycja konta: $0'; +$_LANG['Account Edit: $a'] = 'Edycja konta: $a'; $_LANG['Accounting day:'] = 'Dzień naliczenia:'; $_LANG['Account payment'] = 'Nalicz'; $_LANG['Account'] = 'Konto'; @@ -118,18 +118,18 @@ $_LANG['Answer'] = 'Odpowiedz'; $_LANG['Approved By'] = 'Zatwierdził'; $_LANG['Are you sure that you want to logout?'] = 'Czy na pewno chcesz siê wylogowaæ?'; -$_LANG['Are you sure, you want to account ALL debts of customer \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz rozliczyæ WSZYSTKIE należno¶ci użytkownika \\\'$0\\\'?'; +$_LANG['Are you sure, you want to account ALL debts of customer \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz rozliczyæ WSZYSTKIE należno¶ci użytkownika \\\'$a\\\'?'; $_LANG['Are you sure, you want to assign new addresses for all computers? Remember, it can make problems for your network!'] = 'Jeste¶ pewien, że chcesz przypisaæ nowe adresy do wszystkich komputerów? Pamiêtaj, to może stwarzaæ problemy w twojej sieci!'; -$_LANG['Are you sure, you want to change network $0 to network \'+getText(document.remap.mapto.value)+\'?'] = 'Jeste¶ pewien, że chcesz przeadresowaæ sieæ $0 do sieci \'+getText(document.remap.mapto.value)+\'?'; +$_LANG['Are you sure, you want to change network $a to network \'+getText(document.remap.mapto.value)+\'?'] = 'Jeste¶ pewien, że chcesz przeadresowaæ sieæ $a do sieci \'+getText(document.remap.mapto.value)+\'?'; $_LANG['Are you sure, you want to check/uncheck selected invoices as accounted?'] = 'Jeste¶ pewien, że chcesz zaznaczyæ/odznaczyæ wybrane faktury jako rozliczone?'; -$_LANG['Are you sure, you want to delete account \\\'$0\\\' and all assigned to them aliases?'] = 'Jeste¶ pewien, że chcesz usun±æ konto \\\'$0\\\' oraz wszystkie aliasy z nim skojarzone?'; -$_LANG['Are you sure, you want to delete address \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ adres \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to delete alias: \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ alias: \\\'$0\\\'?'; -$_LANG['Are you sure, you want to delete database backup created at $0 ?'] = 'Jeste¶ pewien, że chcesz usun±æ kopie bazy danych utworzon±: $0 ?'; -$_LANG['Are you sure, you want to delete domain: \\\'$0\\\' and all accounts/aliases in that domain?'] = 'Jeste¶ pewien, że chcesz usun±æ domenê: \\\'$0\\\' oraz wszystkie konta/aliasy w tej domenie?'; -$_LANG['Are you sure, you want to delete node $0?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer $0?'; -$_LANG['Are you sure, you want to delete node \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to delete option \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ opcjê \\\'$0\\\' z bazy danych?'; +$_LANG['Are you sure, you want to delete account \\\'$a\\\' and all assigned to them aliases?'] = 'Jeste¶ pewien, że chcesz usun±æ konto \\\'$a\\\' oraz wszystkie aliasy z nim skojarzone?'; +$_LANG['Are you sure, you want to delete address \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ adres \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to delete alias: \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ alias: \\\'$a\\\'?'; +$_LANG['Are you sure, you want to delete database backup created at $a ?'] = 'Jeste¶ pewien, że chcesz usun±æ kopie bazy danych utworzon±: $a ?'; +$_LANG['Are you sure, you want to delete domain: \\\'$a\\\' and all accounts/aliases in that domain?'] = 'Jeste¶ pewien, że chcesz usun±æ domenê: \\\'$a\\\' oraz wszystkie konta/aliasy w tej domenie?'; +$_LANG['Are you sure, you want to delete node $a?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer $a?'; +$_LANG['Are you sure, you want to delete node \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to delete option \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ opcjê \\\'$a\\\' z bazy danych?'; $_LANG['Are you sure, you want to delete selected operation(s) and document item(s)?'] = 'Czy na pewno usun±æ wybrane operacje wraz z pozycjami dokumentów?'; $_LANG['Are you sure, you want to delete that connection?'] = 'Jeste¶ pewien, że chcesz usun±æ to poł±czenie?'; $_LANG['Are you sure, you want to delete that device?'] = 'Jeste¶ pewien, że chcesz usun±æ to urz±dzenie?'; @@ -140,27 +140,27 @@ $_LANG['Are you sure, you want to delete that tariff?'] = 'Jeste¶ pewien, że chcesz usun±æ t± taryfê?'; $_LANG['Are you sure, you want to delete this database backup?'] = 'Jeste¶ pewien, że chcesz usun±æ t± kopiê bazy danych?'; $_LANG['Are you sure, you want to delete this liability?'] = 'Jeste¶ pewien, że chcesz usun±æ to zobowi±zanie?'; -$_LANG['Are you sure, you want to drop user $0 from that event?'] = 'Jeste¶ pewien, że chcesz usun±æ użytkownika $0 z tego zdarzenia?'; +$_LANG['Are you sure, you want to drop user $a from that event?'] = 'Jeste¶ pewien, że chcesz usun±æ użytkownika $a z tego zdarzenia?'; $_LANG['Are you sure, you want to generate new password?'] = 'Jeste¶ pewien, że chcesz wygenerowaæ nowe hasło?'; $_LANG['Are you sure, you want to generate new PIN?'] = 'Jeste¶ pewien, że chcesz wygenerowaæ nowy PIN?'; $_LANG['Are you sure, you want to irreversibly delete that user account?'] = 'Jeste¶ pewien, że chcesz nieodwracalnie usun±æ to konto?'; $_LANG['Are you sure, you want to move customers to tariff \'+getText(document.tmove.to.value)+\'?'] = 'Jeste¶ pewien, że chcesz przesun±æ klientów do taryfy \'+getText(document.tmove.to.value)+\'?'; -$_LANG['Are you sure, you want to readdress network $0 to network $1 ?'] = 'Jeste¶ pewien, że chcesz przeadresowaæ sieæ $0 do sieci $1 ?'; -$_LANG['Are you sure, you want to recover database created at $0?'] = 'Czy jeste¶ pewien, że chcesz odtworzyæ bazê danych z kopii stworzonej $0?'; -$_LANG['Are you sure, you want to remove customer \\\'$0\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Jeste¶ pewien, że chcesz usun±æ klienta \\\'$0\\\' z bazy danych?\\n\\nJeżeli klient posiada jakie¶ komputery zostan± one również usuniête, a ich dane bezpowrotnie utracone!'; +$_LANG['Are you sure, you want to readdress network $a to network $b ?'] = 'Jeste¶ pewien, że chcesz przeadresowaæ sieæ $a do sieci $b ?'; +$_LANG['Are you sure, you want to recover database created at $a?'] = 'Czy jeste¶ pewien, że chcesz odtworzyæ bazê danych z kopii stworzonej $a?'; +$_LANG['Are you sure, you want to remove customer \\\'$a\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Jeste¶ pewien, że chcesz usun±æ klienta \\\'$a\\\' z bazy danych?\\n\\nJeżeli klient posiada jakie¶ komputery zostan± one również usuniête, a ich dane bezpowrotnie utracone!'; $_LANG['Are you sure, you want to remove customer from group?'] = 'Jeste¶ pewien, że chcesz usun±æ klienta z grupy?'; -$_LANG['Are you sure, you want to remove device \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ urz±dzenie \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to remove host \\\'$0\\\' and all assigned configuration?'] = 'Jeste¶ pewien, że chcesz usun±æ hosta \\\'$0\\\' i cał± jego konfiguracjê?'; -$_LANG['Are you sure, you want to remove instance \\\'$0\\\' and all assigned configuration?'] = 'Jeste¶ pewien, że chcesz usun±æ instancjê \\\'$0\\\' i cał± jej konfiguracjê?'; -$_LANG['Are you sure, you want to remove invoice \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ fakturê \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to remove network \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ sieæ \\\'$0\\\'?'; -$_LANG['Are you sure, you want to remove node \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to remove option \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ opcjê \\\'$0\\\' z bazy danych?'; -$_LANG['Are you sure, you want to remove queue \\\'$0\\\' and all assigned tickets and messages?'] = 'Jeste¶ pewien, że chcesz usun±æ kolejkê \\\'$0\\\' oraz wszelkie zgłoszenia i wiadomo¶ci z ni± skojarzone?'; -$_LANG['Are you sure, you want to remove receipt \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ dowód wpłaty nr \\\'$0\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove device \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ urz±dzenie \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove host \\\'$a\\\' and all assigned configuration?'] = 'Jeste¶ pewien, że chcesz usun±æ hosta \\\'$a\\\' i cał± jego konfiguracjê?'; +$_LANG['Are you sure, you want to remove instance \\\'$a\\\' and all assigned configuration?'] = 'Jeste¶ pewien, że chcesz usun±æ instancjê \\\'$a\\\' i cał± jej konfiguracjê?'; +$_LANG['Are you sure, you want to remove invoice \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ fakturê \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove network \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ sieæ \\\'$a\\\'?'; +$_LANG['Are you sure, you want to remove node \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ komputer \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove option \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ opcjê \\\'$a\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove queue \\\'$a\\\' and all assigned tickets and messages?'] = 'Jeste¶ pewien, że chcesz usun±æ kolejkê \\\'$a\\\' oraz wszelkie zgłoszenia i wiadomo¶ci z ni± skojarzone?'; +$_LANG['Are you sure, you want to remove receipt \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ dowód wpłaty nr \\\'$a\\\' z bazy danych?'; $_LANG['Are you sure, you want to remove that customer from database?\\n\\nIf that customer have any computers, they will be automatically removed from database too, and information about them irreversible losed!'] = 'Czy na pewno chcesz usun±æ tego klienta z bazy danych?\\n\\nJe¶li klient ten posiada jakie¶ komputery, zostan± one usuniête, a dane o nich nieodwracalnie utracone!'; $_LANG['Are you sure, you want to remove this group?'] = 'Jeste¶ pewien, że chcesz usun±æ tê grupê?'; -$_LANG['Are you sure, you want to remove ticket $0?'] = 'Jeste¶ pewien, że chcesz usun±æ zgłoszenie nr $0?'; +$_LANG['Are you sure, you want to remove ticket $a?'] = 'Jeste¶ pewien, że chcesz usun±æ zgłoszenie nr $a?'; $_LANG['Are you sure, you want to reorder that network?'] = 'Jeste¶ pewien, że chcesz uporz±dkowaæ sieæ?'; $_LANG['Are you sure, you want to restore this database backup?'] = 'Jeste¶ pewien, że chcesz przywróciæ t± kopiê bazy danych?'; $_LANG['ascending'] = 'rosn±co'; @@ -172,15 +172,15 @@ $_LANG['Avg. monthly income:'] = 'Šr. mies. przychód:'; $_LANG['awaiting'] = 'oczekuj±cy'; $_LANG['List of awaiting customers'] = 'Lista klientów oczekuj±cych'; -$_LANG['$0'] = '$0'; +$_LANG['$a'] = '$a'; $_LANG['Backup Delete'] = 'Backup Delete'; $_LANG['Backups'] = 'Kopie zapasowe'; $_LANG['Balance'] = 'Saldo'; $_LANG['Balance:'] = 'Saldo:'; $_LANG['Balance date:'] = 'Data bilansu:'; $_LANG['Balance Sheet'] = 'Historia operacji'; -$_LANG['Balance Sheet ($0 to $1)'] = 'Historia operacji ($0 do $1)'; -$_LANG['Balance Sheet of User: $0 ($1 to $2)'] = 'Historia operacji dla użytkownika: $0 ($1 do $2)'; +$_LANG['Balance Sheet ($a to $b)'] = 'Historia operacji ($a do $b)'; +$_LANG['Balance Sheet of User: $a ($b to $c)'] = 'Historia operacji dla użytkownika: $a ($b do $c)'; $_LANG['Allows you to logout'] = 'Zakończenie pracy'; $_LANG['Basic system information'] = 'Podstawowe informacje o systemie'; $_LANG['Begin:'] = 'Pocz±tek:'; @@ -200,7 +200,7 @@ $_LANG['Cash'] = 'Kasa'; $_LANG['Cash Operations Import'] = 'Import operacji kasowych'; $_LANG['Cash receipt'] = 'Dowód wpłaty'; -$_LANG['Cash Receipt No. $0'] = 'Dokument kasowy Nr $0'; +$_LANG['Cash Receipt No. $a'] = 'Dokument kasowy Nr $a'; $_LANG['Cash receipt template file. Default: "receipt.html". Should be placed in templates directory.'] = 'Szablon dowodu wpłaty. Domy¶lnie: "receipt.html". Powinien znajdowaæ siê w katalogu templates.'; $_LANG['Cash Report'] = 'Raport kasowy'; $_LANG['Cautions:'] = 'Uwagi:'; @@ -235,7 +235,7 @@ $_LANG['compressed'] = 'skompresowan±'; $_LANG['Computers found:'] = 'Znalezione komputery:'; $_LANG['Configuration'] = 'Konfiguracja'; -$_LANG['Configuration of Instance: $0/$1'] = 'Konfiguracja instancji: $0/$1'; +$_LANG['Configuration of Instance: $a/$b'] = 'Konfiguracja instancji: $a/$b'; $_LANG['configuration reload'] = 'przeładowanie konfiguracji'; $_LANG['Configuration Reload'] = 'Przeładowanie konfiguracji'; $_LANG['Confirm password'] = 'Powtórz hasło'; @@ -245,9 +245,9 @@ $_LANG['connected'] = 'podł±czeni'; $_LANG['connected'] = 'podł±czony'; $_LANG['Connected:'] = 'Podł±czeni:'; -$_LANG['List of Connected Customers $0$1'] = 'Lista podł±czonych klientów $0$1'; -$_LANG['Connected devices ($0):'] = 'Podł±czone urz±dzenia ($0):'; -$_LANG['Connected nodes ($0):'] = 'Podł±czone komputery ($0):'; +$_LANG['List of Connected Customers $a$b'] = 'Lista podł±czonych klientów $a$b'; +$_LANG['Connected devices ($a):'] = 'Podł±czone urz±dzenia ($a):'; +$_LANG['Connected nodes ($a):'] = 'Podł±czone komputery ($a):'; $_LANG['Connected:'] = 'Podł±czone:'; $_LANG['List of Connected Nodes'] = 'Lista podł±czonych komputerów'; $_LANG['Connection limit:'] = 'Limit poł±czeń:'; @@ -263,7 +263,7 @@ $_LANG['Country:'] = 'Kraj:'; $_LANG['Create alias'] = 'Utwórz alias'; $_LANG['Created:'] = 'Utworzony:'; -$_LANG['Created by: $0'] = 'Utworzone przez: $0'; +$_LANG['Created by: $a'] = 'Utworzone przez: $a'; $_LANG['Create new'] = 'Utwórz now±'; $_LANG['Create time:'] = 'Data utworzenia:'; $_LANG['Generating subscriptions...'] = 'Generujê taryfy...'; @@ -274,26 +274,26 @@ $_LANG['customer'] = 'klient'; $_LANG['Customer'] = 'Klient'; $_LANG['Customer:'] = 'Klient:'; -$_LANG['Customer $0 Balance Sheet ($1 to $2)'] = 'Historia operacji klienta $0 ($1 do $2)'; -$_LANG['Customer $0 has been removed.'] = 'Klient $0 został usuniêty.'; +$_LANG['Customer $a Balance Sheet ($b to $c)'] = 'Historia operacji klienta $a ($b do $c)'; +$_LANG['Customer $a has been removed.'] = 'Klient $a został usuniêty.'; $_LANG['Customer Account:'] = 'Konto klienta:'; -$_LANG['Customer Balance: $0'] = 'Rachunek klienta: $0'; +$_LANG['Customer Balance: $a'] = 'Rachunek klienta: $a'; $_LANG['Customer Balance Sheet'] = 'Historia operacji klienta'; $_LANG['Customer cannot send message!'] = 'Klient nie może wysłaæ wiadomo¶ci!'; -$_LANG['Customer Edit: $0'] = 'Edycja klienta: $0'; +$_LANG['Customer Edit: $a'] = 'Edycja klienta: $a'; $_LANG['Customers Group:'] = 'Grupa klientów:'; $_LANG['customer ID'] = 'ID klienta'; $_LANG['Customer ID'] = 'ID klienta'; $_LANG['Customer ID:'] = 'ID klienta:'; -$_LANG['Customer Info: $0'] = 'Informacje o kliencie: $0'; -$_LANG['Node Edit: $0'] = 'Edycja komputera: $0'; +$_LANG['Customer Info: $a'] = 'Informacje o kliencie: $a'; +$_LANG['Node Edit: $a'] = 'Edycja komputera: $a'; $_LANG['Customer Liabilities:'] = 'Zobowi±zania klienta:'; $_LANG['customer name'] = 'nazwisko klienta'; $_LANG['Customer name'] = 'Nazwisko klienta'; -$_LANG['Customer No.: $0'] = 'Numer klienta: $0'; -$_LANG['Customer Nodes ($0):'] = 'Komputery klienta ($0):'; +$_LANG['Customer No.: $a'] = 'Numer klienta: $a'; +$_LANG['Customer Nodes ($a):'] = 'Komputery klienta ($a):'; $_LANG['Customer not selected!'] = 'Nie wybrano klienta!'; -$_LANG['Customer Remove: $0'] = 'Usuniêcie klienta: $0'; +$_LANG['Customer Remove: $a'] = 'Usuniêcie klienta: $a'; $_LANG['Customers'] = 'Klienci'; $_LANG['Customers:'] = 'Klienci:'; $_LANG['Customer Search'] = 'Wyszukiwanie klientów'; @@ -301,10 +301,10 @@ $_LANG['Customers in Subscription:'] = 'Klienci w taryfie:'; $_LANG['Customers List'] = 'Lista klientów'; $_LANG['Customers List:'] = 'Lista klientów:'; -$_LANG['Customers List $0$1'] = 'Lista klientów $0$1'; +$_LANG['Customers List $a$b'] = 'Lista klientów $a$b'; $_LANG['Customers Management'] = 'Zarz±dzanie klientami'; $_LANG['customers management'] = 'zarz±dzanie klientami'; -$_LANG['Customers Without Nodes List $0$1'] = 'Lista klientów bez komputerów $0$1'; +$_LANG['Customers Without Nodes List $a$b'] = 'Lista klientów bez komputerów $a$b'; $_LANG['CVS Repository'] = 'Repozytorium CVS'; $_LANG['Daemon'] = 'Demon'; $_LANG['daemon management and configuration'] = 'konfiguracja i zarz±dzanie demonem'; @@ -336,22 +336,22 @@ $_LANG['deleted'] = 'usuniêci'; $_LANG['Delete data older than one year'] = 'Usuń dane starsze niż jeden rok'; $_LANG['deleted customer'] = 'klient usuniêty'; -$_LANG['Delete Node $0'] = 'Usuń komputer $0'; +$_LANG['Delete Node $a'] = 'Usuń komputer $a'; $_LANG['Delete stats of non-existing (deleted) nodes'] = 'Usuń statystyki nieistniej±cych (usuniêtych) komputerów'; $_LANG['Deletion of Database Backup'] = 'Usuniêcie kopii zapasowej bazy danych'; -$_LANG['Deletion of Device with ID: $0'] = 'Usuniêcie urz±dzenia o identyfikatorze: $0'; +$_LANG['Deletion of Device with ID: $a'] = 'Usuniêcie urz±dzenia o identyfikatorze: $a'; $_LANG['descending'] = 'malej±co'; $_LANG['Description'] = 'Opis'; $_LANG['Description:'] = 'Opis:'; $_LANG['Details'] = 'Szczegóły'; $_LANG['Device connected to other device or node can\'t be deleted.'] = 'Urz±dzenie podł±czone do innego urz±dzenia lub komputera nie może zostaæ usuniête.'; -$_LANG['Device Edit: $0 ($1)'] = 'Edycja urz±dzenia: $0 ($1)'; +$_LANG['Device Edit: $a ($b)'] = 'Edycja urz±dzenia: $a ($b)'; $_LANG['No free ports on device!'] = 'Urz±dzenie nie posiada wolnych portów!'; $_LANG['No IP addresses on device.'] = 'Urz±dzenie nie posiada adresu IP.'; -$_LANG['Device Info: $0 $1 $2'] = 'Informacje o urz±dzeniu: $0 $1 $2'; +$_LANG['Device Info: $a $b $c'] = 'Informacje o urz±dzeniu: $a $b $c'; $_LANG['Device name is required!'] = 'Nazwa urz±dzenia jest wymagana!'; $_LANG['Device name is too long (max.32 characters)!'] = 'Nazwa urz±dzenia jest za długa (maksymalnie 32 znaki)!'; -$_LANG['IP addresses ($0):'] = 'Adresy IP ($0):'; +$_LANG['IP addresses ($a):'] = 'Adresy IP ($a):'; $_LANG['Device has been deleted.'] = 'Urz±dzenie zostało usuniête.'; $_LANG['DHCP range:'] = 'Zakres DHCP:'; $_LANG['Disable'] = 'Wył±cz'; @@ -367,7 +367,7 @@ $_LANG['disconnected'] = 'odł±czony'; $_LANG['Disconnected:'] = 'Odł±czone:'; $_LANG['Documents List'] = 'Lista dokumentów'; -$_LANG['List of Disconnected Customers $0$1'] = 'Lista klientów odł±czonych $0$1'; +$_LANG['List of Disconnected Customers $a$b'] = 'Lista klientów odł±czonych $a$b'; $_LANG['List of Disconnected Nodes'] = 'Lista odł±czonych komputerów'; $_LANG['Discount:'] = 'Rabat:'; $_LANG['Display customers matching the following criteria:'] = 'Wy¶wietl klientów spełniaj±cych nastêpuj±ce kryteria:'; @@ -386,7 +386,7 @@ $_LANG['Document with specified number exists!'] = 'Dokument z podanym numerem już istnieje!'; $_LANG['Domain:'] = 'Domena:'; $_LANG['domain alias'] = 'alias domenowy'; -$_LANG['Domain Edit: $0'] = 'Edycja domeny: $0'; +$_LANG['Domain Edit: $a'] = 'Edycja domeny: $a'; $_LANG['Domain name is required!'] = 'Nazwa domeny jest wymagana!'; $_LANG['Domains'] = 'Domeny'; $_LANG['Domains List'] = 'Lista domen'; @@ -396,8 +396,8 @@ $_LANG['Download ceil:'] = 'Download ceil:'; $_LANG['Download rate:'] = 'Download rate:'; $_LANG['Downrate:'] = 'Downrate:'; -$_LANG['Do you want to remove $0 customer?'] = 'Czy chcesz usun±æ klienta $0?'; -$_LANG['Do you want to remove queue called $0?'] = 'Czy chcesz usun±æ kolejkê $0?'; +$_LANG['Do you want to remove $a customer?'] = 'Czy chcesz usun±æ klienta $a?'; +$_LANG['Do you want to remove queue called $a?'] = 'Czy chcesz usun±æ kolejkê $a?'; $_LANG['Draw-up date'] = 'Data wystawienia'; $_LANG['Draw-up date:'] = 'Data wystawienia:'; $_LANG['Edit'] = 'Edytuj'; @@ -546,7 +546,7 @@ $_LANG['entries'] = 'wpisów'; $_LANG['Error:'] = 'Bł±d:'; $_LANG['Error!'] = 'Bł±d!'; -$_LANG['Error: Unknown reload type: "$0"!'] = 'Bł±d: Nieznany typ przeładowania: "$0"!'; +$_LANG['Error: Unknown reload type: "$a"!'] = 'Bł±d: Nieznany typ przeładowania: "$a"!'; $_LANG['Event Edit'] = 'Edytuj zdarzenie'; $_LANG['Event Info'] = 'Informacje o zdarzeniu'; $_LANG['Event Search'] = 'Wyszukiwanie zdarzeń'; @@ -595,15 +595,15 @@ $_LANG['Gross value'] = 'Warto¶æ brutto'; $_LANG['Gross Value:'] = 'Warto¶æ brutto:'; $_LANG['Group:'] = 'Grupa:'; -$_LANG['(Group: $0)'] = '(Grupa: $0)'; -$_LANG['Group Edit: $0'] = 'Edycja grupy: $0'; -$_LANG['Group Info: $0'] = 'Informacje o grupie: $0'; +$_LANG['(Group: $a)'] = '(Grupa: $a)'; +$_LANG['Group Edit: $a'] = 'Edycja grupy: $a'; +$_LANG['Group Info: $a'] = 'Informacje o grupie: $a'; $_LANG['Group members:'] = 'Członkowie grupy:'; $_LANG['Group name is too long!'] = 'Nazwa grupy za długa!'; $_LANG['Group name required!'] = 'Wymagana nazwa grupy!'; $_LANG['Groups'] = 'Grupy'; $_LANG['Group with members cannot be deleted!'] = 'Nie można usun±æ grupy posiadaj±cej członków!'; -$_LANG['Group with name $0 already exists!'] = 'Grupa o nazwie $0 już istnieje!'; +$_LANG['Group with name $a already exists!'] = 'Grupa o nazwie $a już istnieje!'; $_LANG['Guarantee:'] = 'Gwarancja:'; $_LANG['Guarantee period:'] = 'Okres gwarancji:'; $_LANG['Has'] = 'Ma'; @@ -616,7 +616,7 @@ $_LANG['High'] = 'Wysoki'; $_LANG['Homedir:'] = 'Katalog domowy:'; $_LANG['Host:'] = 'Host:'; -$_LANG['Host Edit: $0'] = 'Edycja hosta: $0'; +$_LANG['Host Edit: $a'] = 'Edycja hosta: $a'; $_LANG['Hostname:'] = 'Nazwa hosta:'; $_LANG['Host name is required!'] = 'Nazwa hosta jest wymagana!'; $_LANG['Hosts List'] = 'Lista hostów'; @@ -674,12 +674,12 @@ $_LANG['Incorrect ZIP code! If you are sure you want to accept it, then click "Submit" again.'] = 'Niepoprawny kod pocztowy! Je¶li chcesz zaakceptowaæ, to ponownie kliknij "Zapisz".'; $_LANG['in debt'] = 'zadłużeni'; $_LANG['Nodes List for Customers In Debt'] = 'Lista komputerów zadłużonych klientów'; -$_LANG['Indebted Customers List $0$1'] = 'Lista klientów zadłużonych $0$1'; +$_LANG['Indebted Customers List $a$b'] = 'Lista klientów zadłużonych $a$b'; $_LANG['indebted owner'] = 'zadłużony wła¶ciciel'; $_LANG['Info'] = 'Informacje'; -$_LANG['Info Network: $0'] = 'Informacje o Sieci: $0'; +$_LANG['Info Network: $a'] = 'Informacje o Sieci: $a'; $_LANG['in it:'] = 'w tym:'; -$_LANG['Instance Edit: $0'] = 'Edycja instancji: $0'; +$_LANG['Instance Edit: $a'] = 'Edycja instancji: $a'; $_LANG['Instance host is required!'] = 'Host instancji jest wymagany!'; $_LANG['Instance module is required!'] = 'Moduł instancji jest wymagany!'; $_LANG['Instance name is required!'] = 'Nazwa instancji jest wymagana!'; @@ -693,29 +693,29 @@ $_LANG['Interface:'] = 'Interfejs:'; $_LANG['Invalid chars in group name!'] = 'Niedozwolone znaki w nazwie grupy!'; $_LANG['Invalid date format!'] = 'Nieprawidłowy format daty!'; -$_LANG['Invalid date format: $0.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Błêdny format daty: $0.\\nDozwolony format to \'YYYY/MM/DD gg:mm\'.'; -$_LANG['Invalid date format: $0.\\nNo day of month value can be found.'] = 'Błêdny format daty: $0.\\nNie znaleziono numeru dnia miesi±ca.'; -$_LANG['Invalid date format: $0.\\nNo month value can be found.'] = 'Błêdny format daty: $0.\\nNie znaleziono numeru miesi±ca.'; -$_LANG['Invalid date format: $0.\\nNo year value can be found.'] = 'Błêdny format daty: $0.\\nNie znaleziono numeru roku.'; -$_LANG['Invalid day of month value: $0.\\nAllowed range is 01-$1.'] = 'Błêdny dzień miesi±ca: $0.\\nDozwolone s± warto¶ci z zakresu 01-$1'; -$_LANG['Invalid day of month value: $0.\\nAllowed values are unsigned integers.'] = 'Błêdny dzień miesi±ca: $0.\\nDozwolone s± liczby całkowite bez znaku.'; -$_LANG['Invalid hour value: $0.\\nAllowed range is 00-23.'] = 'Błêdna godzina: $0.\\nDozwolone s± warto¶ci z zakresu 00-23'; -$_LANG['Invalid hour value: $0.\\nAllowed values are unsigned integers.'] = 'Błêdna godzina: $0.\\nDozwolone s± liczby całkowite bez znaku.'; -$_LANG['Invalid minutes value: $0.\\nAllowed range is 00-59.'] = 'Błêdna liczba minut: $0.\\nDozwolone s± warto¶ci z zakresu 00-59.'; -$_LANG['Invalid minutes value: $0.\\nAllowed values are unsigned integers.'] = 'Błêdna liczba minut: $0.\\nDozwolone s± liczby całkowite bez znaku.'; -$_LANG['Invalid month value: $0.\\nAllowed range is 01-12.'] = 'Błêdny numer miesi±ca: $0.\\nDozwolone s± warto¶ci z zakresu 01-12.'; -$_LANG['Invalid month value: $0.\\nAllowed values are unsigned integers.'] = 'Błêdny numer miesi±ca: $0.\\nDozwolone s± liczby całkowite bez znaku.'; -$_LANG['Invalid year value: $0.\\nAllowed values are unsigned integers.'] = 'Błêdny rok: $0.\\nDozwolone s± liczby całkowite bez znaku.'; +$_LANG['Invalid date format: $a.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Błêdny format daty: $a.\\nDozwolony format to \'YYYY/MM/DD gg:mm\'.'; +$_LANG['Invalid date format: $a.\\nNo day of month value can be found.'] = 'Błêdny format daty: $a.\\nNie znaleziono numeru dnia miesi±ca.'; +$_LANG['Invalid date format: $a.\\nNo month value can be found.'] = 'Błêdny format daty: $a.\\nNie znaleziono numeru miesi±ca.'; +$_LANG['Invalid date format: $a.\\nNo year value can be found.'] = 'Błêdny format daty: $a.\\nNie znaleziono numeru roku.'; +$_LANG['Invalid day of month value: $a.\\nAllowed range is 01-$b.'] = 'Błêdny dzień miesi±ca: $a.\\nDozwolone s± warto¶ci z zakresu 01-$b'; +$_LANG['Invalid day of month value: $a.\\nAllowed values are unsigned integers.'] = 'Błêdny dzień miesi±ca: $a.\\nDozwolone s± liczby całkowite bez znaku.'; +$_LANG['Invalid hour value: $a.\\nAllowed range is 00-23.'] = 'Błêdna godzina: $a.\\nDozwolone s± warto¶ci z zakresu 00-23'; +$_LANG['Invalid hour value: $a.\\nAllowed values are unsigned integers.'] = 'Błêdna godzina: $a.\\nDozwolone s± liczby całkowite bez znaku.'; +$_LANG['Invalid minutes value: $a.\\nAllowed range is 00-59.'] = 'Błêdna liczba minut: $a.\\nDozwolone s± warto¶ci z zakresu 00-59.'; +$_LANG['Invalid minutes value: $a.\\nAllowed values are unsigned integers.'] = 'Błêdna liczba minut: $a.\\nDozwolone s± liczby całkowite bez znaku.'; +$_LANG['Invalid month value: $a.\\nAllowed range is 01-12.'] = 'Błêdny numer miesi±ca: $a.\\nDozwolone s± warto¶ci z zakresu 01-12.'; +$_LANG['Invalid month value: $a.\\nAllowed values are unsigned integers.'] = 'Błêdny numer miesi±ca: $a.\\nDozwolone s± liczby całkowite bez znaku.'; +$_LANG['Invalid year value: $a.\\nAllowed values are unsigned integers.'] = 'Błêdny rok: $a.\\nDozwolone s± liczby całkowite bez znaku.'; $_LANG['Invoice'] = 'Faktura'; $_LANG['Invoice:'] = 'Faktura:'; $_LANG['Invoice draw-up place.'] = 'Miejsce wystawienia.'; -$_LANG['Invoice Edit: $0'] = 'Edycja Faktury: $0'; +$_LANG['Invoice Edit: $a'] = 'Edycja Faktury: $a'; $_LANG['Invoice have no items!'] = 'Brak pozycji na fakturze!'; $_LANG['Invoice have no items. Use form below for items addition.'] = 'Faktura nie ma żadnych pozycji. Użyj poniższego formularza aby je dodaæ.'; $_LANG['Invoice No.'] = 'Numer faktury'; -$_LANG['Invoice No. $0'] = 'Faktura VAT Nr $0'; +$_LANG['Invoice No. $a'] = 'Faktura VAT Nr $a'; $_LANG['Invoice number:'] = 'Nr faktury:'; -$_LANG['Invoice number $0 already exists!'] = 'Faktura o numerze $0 już istnieje!'; +$_LANG['Invoice number $a already exists!'] = 'Faktura o numerze $a już istnieje!'; $_LANG['Invoice number must be integer!'] = 'Numer faktury musi byæ liczb± całkowit±!'; $_LANG['Invoices'] = 'Faktury'; $_LANG['Invoices List'] = 'Lista faktur'; @@ -740,12 +740,12 @@ $_LANG['It scans for ports in destination device!'] = 'Brak wolnych portów w urz±dzeniu docelowym!'; $_LANG['It scans for ports in source device!'] = 'Brak wolnych portów w urz±dzeniu Œródłowym!'; $_LANG['Last:'] = 'Ostatni:'; -$_LANG['last $0 transactions'] = 'ostatnie $0 transakcji'; +$_LANG['last $a transactions'] = 'ostatnie $a transakcji'; $_LANG['Last 30 Days'] = 'Ostatnie 30 dni'; -$_LANG['Last date of invoice settlement is $0. If sure, you want to write invoice with date of $1, then click "Submit" again.'] = 'Ostatnia data wystawienia faktury to $0. Jeżeli jeste¶ pewien, że chcesz zapisaæ fakturê z dat± $1, to ponownie kliknij "Zapisz".'; +$_LANG['Last date of invoice settlement is $a. If sure, you want to write invoice with date of $b, then click "Submit" again.'] = 'Ostatnia data wystawienia faktury to $a. Jeżeli jeste¶ pewien, że chcesz zapisaæ fakturê z dat± $b, to ponownie kliknij "Zapisz".'; $_LANG['Last Day'] = 'Ostatni dzień'; $_LANG['Last day stats for all networks'] = 'Statystyki z ostatniego dnia dla wszystkich sieci'; -$_LANG['Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.'] = 'Ostatnia data wystawienia pokwitowania to $0. Je¶li na pewno chcesz wystawiæ dowód wpłaty z dat± $1 kliknij ponownie "Zapisz".'; +$_LANG['Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.'] = 'Ostatnia data wystawienia pokwitowania to $a. Je¶li na pewno chcesz wystawiæ dowód wpłaty z dat± $b kliknij ponownie "Zapisz".'; $_LANG['Last failed login:'] = 'Ostatnie błêdne logowanie:'; $_LANG['Last Hour'] = 'Ostatnia godzina'; $_LANG['Last hour stats for all networks'] = 'Statystyki z ostatniej godziny dla wszystkich sieci'; @@ -754,14 +754,14 @@ $_LANG['Last month stats for all networks'] = 'Statystyki z ostatniego miesi±ca dla wszystkich sieci'; $_LANG['last online:'] = 'ostatnio wł±czony:'; $_LANG['Last online:'] = 'Ostatnio wł±czony:'; -$_LANG['Last online: $0'] = 'Ostatnio wł±czony: $0'; +$_LANG['Last online: $a'] = 'Ostatnio wł±czony: $a'; $_LANG['Last Reload:'] = 'Ostatnie przeładowanie:'; $_LANG['Last Year'] = 'Ostatni rok'; $_LANG['Last year stats for all networks'] = 'Statystyki z ostatniego roku dla wszystkich sieci'; $_LANG['Length of (auto-generated) node password. Max.32. Default: 16.'] = 'Długo¶æ (automatycznie generowanego) hasła komputera. Max.32. Domy¶lnie: 16.'; $_LANG['liability'] = 'zobowi±zanie'; $_LANG['Liability Report'] = 'Raport wierzytelno¶ci'; -$_LANG['Liability Report on $0'] = 'Raport wierzytelno¶ci na $0'; +$_LANG['Liability Report on $a'] = 'Raport wierzytelno¶ci na $a'; $_LANG['lifetime'] = 'wieczysta'; $_LANG['Limit of nodes displayed on one page in Network Information. Default: 256. With 0, this information is omitted (page is displaying faster).'] = 'Limit wy¶wietlanych komputerów na jednej stronie w Informacjach o Sieci. Domy¶lnie: 256. Ustawiaj±c na 0, informacje te zostan± pominiête (strona bêdzie siê wy¶wietlaæ szybciej).'; $_LANG['Limit of records displayed on one page in accounts list. Default: 100.'] = 'Limit wy¶wietlanych rekordów na jednej stronie listy kont. Domy¶lnie: 100.'; @@ -836,7 +836,7 @@ $_LANG['Module:'] = 'Moduł:'; $_LANG['Module Title'] = 'Tytuł modułu'; $_LANG['monthly'] = 'miesiêcznie'; -$_LANG['monthly ($0)'] = 'miesiêcznie ($0)'; +$_LANG['monthly ($a)'] = 'miesiêcznie ($a)'; $_LANG['Move customers to subscription:'] = 'Przenie¶ klientów do taryfy:'; $_LANG['MySQL version:'] = 'Wersja MySQL:'; $_LANG['Name'] = 'Nazwa'; @@ -851,7 +851,7 @@ $_LANG['Name/Surname:'] = 'Nazwa/Nazwisko:'; $_LANG['First/last or Company name'] = 'Nazwa/Nazwisko i imiê'; $_LANG['First/last or Company name:'] = 'Nazwa/Nazwisko i imiê:'; -$_LANG[' (Net: $0)'] = ' (Sieæ: $0)'; +$_LANG[' (Net: $a)'] = ' (Sieæ: $a)'; $_LANG['Net device:'] = 'Urz±dzenie sieciowe:'; $_LANG['Net devices:'] = 'Urz±dzenia sieciowe:'; $_LANG['Net Devices'] = 'Osprzêt sieciowy'; @@ -863,7 +863,7 @@ $_LANG['Network Balance Sheet'] = 'Historia operacji finansowych'; $_LANG['Network Devices'] = 'Urz±dzenia sieciowe'; $_LANG['Network devices list'] = 'Lista urz±dzeń sieciowych'; -$_LANG['Network Edit: $0'] = 'Edycja sieci: $0'; +$_LANG['Network Edit: $a'] = 'Edycja sieci: $a'; $_LANG['Network Map'] = 'Mapa sieci'; $_LANG['Network map type. Use "flash" if you have Ming library or "gd" if your PHP supports gdlib. By default LMS will try to generate flash map, with fallback to GD if it fails.'] = 'Typ mapy urz±dzeń sieciowych. Jesli posiadasz bibliotekê Ming użyj "flash", a je¶li twoje PHP wspiera gdlib możesz ustawiæ na "gd". Domy¶lnie LMS spróbuje wygenerowaæ mapê we flashu, a je¶li to siê nie uda, utworzy mapê przy pomocy GD.'; $_LANG['Network name:'] = 'Nazwa sieci:'; @@ -892,7 +892,7 @@ $_LANG['New Network'] = 'Nowa sieæ'; $_LANG['New network is too small!'] = 'Nowa sieæ jest zbyt mała!'; $_LANG['New Node'] = 'Nowy komputer'; -$_LANG['New Option for Instance: $0/$1'] = 'Nowa opcja dla instancji: $0/$1'; +$_LANG['New Option for Instance: $a/$b'] = 'Nowa opcja dla instancji: $a/$b'; $_LANG['New password:'] = 'Nowe hasło:'; $_LANG['New Payment'] = 'Nowa płatno¶æ'; $_LANG['New Queue'] = 'Nowa kolejka'; @@ -902,14 +902,14 @@ $_LANG['none'] = 'brak'; $_LANG['no.'] = 'nr'; $_LANG['No.'] = 'Lp.'; -$_LANG['No. $0'] = 'Nr $0'; +$_LANG['No. $a'] = 'Nr $a'; $_LANG['no access'] = 'brak dostêpu'; $_LANG['No cash operations to import.'] = 'Brak operacji kasowych do zaimportowania.'; $_LANG['No computers were found, either exists in the database or nbtscan binary not found.'] = 'Nie znaleziono żadnych komputerów b±dŒ wszystkie komputery s± już w bazie danych lub program nbtscan nie jest dostêpny w systemie.'; $_LANG['No configuration options in database.'] = 'Brak opcji konfiguracyjnych w bazie danych.'; $_LANG['Click here to import them from lms.ini.'] = 'Kliknij tutaj aby je zaimportowaæ do bazy.'; $_LANG['Node ID:'] = 'ID komputera:'; -$_LANG['Node Info: $0'] = 'Informacje o komputerze: $0'; +$_LANG['Node Info: $a'] = 'Informacje o komputerze: $a'; $_LANG['Node IP address'] = 'Adres IP komputera'; $_LANG['Node IP address is required!'] = 'Adres IP komputera jest wymagany!'; $_LANG['Node name'] = 'Nazwa komputera'; @@ -979,8 +979,8 @@ $_LANG['Open'] = 'Otwórz'; $_LANG['opened'] = 'otwarty'; $_LANG['Opened:'] = 'Otwarte:'; -$_LANG['Option Edit: $0'] = 'Edycja opcji: $0'; -$_LANG['Option Edit: $0/$1/$2'] = 'Edycja opcji: $0/$1/$2'; +$_LANG['Option Edit: $a'] = 'Edycja opcji: $a'; +$_LANG['Option Edit: $a/$b/$c'] = 'Edycja opcji: $a/$b/$c'; $_LANG['Option exists!'] = 'Opcja juz istnieje!'; $_LANG['Option name contains forbidden characters!'] = 'Nazwa opcji zawiera niedozwolone znaki.'; $_LANG['Option name is required!'] = 'Nazwa opcji jest wymagana!'; @@ -1000,20 +1000,20 @@ $_LANG['Owner ID:'] = 'Identyfikator wła¶ciciela:'; $_LANG['Packet limit:'] = 'Limit pakietów:'; $_LANG['Page:'] = 'Strona:'; -$_LANG['Page $0 of $1'] = 'Strona $0 z $1'; +$_LANG['Page $a of $b'] = 'Strona $a z $b'; $_LANG['Password'] = 'Hasło'; $_LANG['Password:'] = 'Hasło:'; $_LANG['Password Change'] = 'Zmiana hasła'; -$_LANG['Password Change for Account: $0'] = 'Zmiana hasła dla konta: $0'; -$_LANG['Password Change for User $0'] = 'Zmiana hasła dla użytkownika $0'; +$_LANG['Password Change for Account: $a'] = 'Zmiana hasła dla konta: $a'; +$_LANG['Password Change for User $a'] = 'Zmiana hasła dla użytkownika $a'; $_LANG['Password is too long (max.32 characters)!'] = 'Hasło jest za długie (max.32 znaki)!'; $_LANG['Passwords does not match!'] = 'Hasła nie pasuj± do siebie!'; $_LANG['Path to file was not specified.'] = 'Šcieżka do pliku nie została okre¶lona.'; $_LANG['Payment:'] = 'Płatno¶æ:'; $_LANG['Payment day:'] = 'Dzień zapłaty:'; -$_LANG['Payment Edit: $0'] = 'Edycja płatno¶ci: $0'; -$_LANG['Payment for invoice No. $0'] = 'Zapłata za fakturê VAT nr $0'; -$_LANG['Payment Info: $0'] = 'Informacje o płatno¶ci: $0'; +$_LANG['Payment Edit: $a'] = 'Edycja płatno¶ci: $a'; +$_LANG['Payment for invoice No. $a'] = 'Zapłata za fakturê VAT nr $a'; +$_LANG['Payment Info: $a'] = 'Informacje o płatno¶ci: $a'; $_LANG['Payment name is required!'] = 'Nazwa płatno¶ci jest wymagana!'; $_LANG['Payments List'] = 'Lista płatno¶ci'; $_LANG['Payment type:'] = 'Typ płatno¶ci:'; @@ -1036,7 +1036,7 @@ $_LANG['Postcode:'] = 'Kod pocztowy:'; $_LANG['PostgreSQL version:'] = 'Wersja PostgreSQL:'; $_LANG['Prefix for account home directory. Default: /home/'] = 'Prefix katalogu domowego dla konta. Domy¶lnie: /home/'; -$_LANG['Prepared by: $0'] = 'Przygotowany przez: $0'; +$_LANG['Prepared by: $a'] = 'Przygotowany przez: $a'; $_LANG['Print'] = 'Drukuj'; $_LANG['Print cash receipts'] = 'Drukuj dowody wpłaty'; $_LANG['Print invoices'] = 'Drukuj faktury'; @@ -1059,32 +1059,32 @@ $_LANG['Qualify to use current day of month for payment day. Default: 0 (off).'] = 'Wybieraj aktualny dzień miesi±ca jako dzień tworzenia nowych płatno¶ci. Domy¶lnie: 0 (Wył±czone).'; $_LANG['Qualify the day of month for payment day. Default: 0 (undefined).'] = 'Domy¶lny dzień miesi±ca przypisywany nowym płatno¶ciom miesiêcznym. Domy¶lnie: 0 (niezdefiniowany).'; $_LANG['quarterly'] = 'kwartalnie'; -$_LANG['quarterly ($0)'] = 'kwartalnie ($0)'; +$_LANG['quarterly ($a)'] = 'kwartalnie ($a)'; $_LANG['Query:'] = 'Zapytanie:'; $_LANG['Question'] = 'Pytanie'; $_LANG['Queue'] = 'Kolejka'; $_LANG['Queue:'] = 'Kolejka:'; -$_LANG['Queue Edit: $0'] = 'Edycja kolejki: $0'; -$_LANG['Queue Info: $0'] = 'Informacje o kolejce: $0'; +$_LANG['Queue Edit: $a'] = 'Edycja kolejki: $a'; +$_LANG['Queue Info: $a'] = 'Informacje o kolejce: $a'; $_LANG['Queue name must be defined!'] = 'Kolejka musi posiadaæ swoj± nazwê!'; $_LANG['Tickets List'] = 'Lista zgłoszeń'; $_LANG['Queues List'] = 'Lista kolejek'; $_LANG['Queue with specified name already exists!'] = 'Kolejka o podanej nazwie już istnieje!'; $_LANG['Quota (sh/mail/www/ftp/sql):'] = 'Limit (sh/mail/www/ftp/sql):'; $_LANG['Read'] = 'Odczyt'; -$_LANG['Readdressing network $0'] = 'Przeadresowanie sieci $0'; -$_LANG['Readdressing Network $0'] = 'Przeadresowanie sieci $0'; +$_LANG['Readdressing network $a'] = 'Przeadresowanie sieci $a'; +$_LANG['Readdressing Network $a'] = 'Przeadresowanie sieci $a'; $_LANG['read only (excluding helpdesk)'] = 'tylko do odczytu (bez Helpdesku)'; $_LANG['Reassign to network:'] = 'Przenie¶ do sieci:'; $_LANG['Receipt'] = 'Pokwitowanie'; $_LANG['Receipt have no items!'] = 'Pokwitowanie nie ma żadnej pozycji!'; $_LANG['Receipt have no items. Use form below for items addition.'] = 'Brak pozycji na pokwitowaniu. Użyj formularza poniżej aby dodaæ pozycje.'; $_LANG['Receipt number:'] = 'Numer potwierdzenia:'; -$_LANG['Receipt number $0 already exists!'] = 'Potwierdzenie nr $0 już istnieje!'; +$_LANG['Receipt number $a already exists!'] = 'Potwierdzenie nr $a już istnieje!'; $_LANG['Receipt number must be integer!'] = 'Numer potwierdzenia musi byæ liczb± całkowit±!'; $_LANG['Recipients:'] = 'Odbiorcy:'; $_LANG['Recipient\'s e-mail:'] = 'E-mail odbiorcy:'; -$_LANG['records $0 - $1 of $2'] = 'rekordy $0 - $1 z $2'; +$_LANG['records $a - $b of $c'] = 'rekordy $a - $b z $c'; $_LANG['Registered for:'] = 'Zarejestrowano dla:'; $_LANG['Register your installation today! ;-)'] = 'Zarejestruj swoj± instalacjê jeszcze dzi¶! ;-)'; $_LANG['Registration ID:'] = 'Nr rejestracyjny:'; @@ -1093,9 +1093,9 @@ $_LANG['Reload type. Allowed values: exec - call some command (most often with sudo, some script or something else, configurable below); sql - writes down to SQL (multiple queries separated with semicolon may be setup).'] = 'Typ przeładowania. Dostêpne opcje: exec - wykonanie komendy (najczê¶ciej jakiego skryptu lub innego programu przy użyciu sudo - konfigurowalne dalej); sql - zapisuje zlecenie w bazie danych SQL (konkretne zapytanie sql również może byæ zdefiniowane).'; $_LANG['Remove'] = 'Usuń'; $_LANG['Remove customer from group'] = 'Usuń klienta z grupy'; -$_LANG['Remove queue ID: $0'] = 'Usuń kolejkê ID: $0'; +$_LANG['Remove queue ID: $a'] = 'Usuń kolejkê ID: $a'; $_LANG['Remove this item from list'] = 'Usuń t± pozycjê z listy'; -$_LANG['Removing network $0'] = 'Usuń sieæ $0'; +$_LANG['Removing network $a'] = 'Usuń sieæ $a'; $_LANG['Repeat password:'] = 'Powtórz hasło:'; $_LANG['Reply'] = 'OdpowiedŒ'; $_LANG['Requester name required!'] = 'Nazwa lub nazwisko zgłaszaj±cego jest wymagane!'; @@ -1108,7 +1108,7 @@ $_LANG['Sale date:'] = 'Data sprzedaży:'; $_LANG['Sale date'] = 'Data sprzedaży'; $_LANG['Sale Registry'] = 'Rejestr sprzedaży'; -$_LANG['Sale Registry for period $0 - $1'] = 'Rejestr sprzedaży za okres $0 - $1'; +$_LANG['Sale Registry for period $a - $b'] = 'Rejestr sprzedaży za okres $a - $b'; $_LANG['Save'] = 'Zapisz'; $_LANG['Save & Print'] = 'Zapisz i drukuj'; $_LANG['Scan'] = 'Skanuj'; @@ -1211,7 +1211,7 @@ $_LANG['SMTP settings.'] = 'Ustawienia SMTP.'; $_LANG['Sorting:'] = 'Sortowanie:'; $_LANG['Specified address does not belongs to any network!'] = 'Wybrany adres nie należy do żadnej sieci!'; -$_LANG['Specified address is not a network address, setting $0'] = 'Wybrany adres nie jest adresem sieci, ustawiam $0'; +$_LANG['Specified address is not a network address, setting $a'] = 'Wybrany adres nie jest adresem sieci, ustawiam $a'; $_LANG['Specified domain contains forbidden characters!'] = 'Domena zawiera niepoprawne znaki ustawiam!'; $_LANG['Specified e-mail is not correct!'] = 'Wybrany email nie jest poprawny!'; $_LANG['Specified gateway address does not match with network address!'] = 'Okre¶lony adres bramy nie pokrywa siê z adresem sieci!'; @@ -1223,7 +1223,7 @@ $_LANG['Specified MAC address is in use!'] = 'Wybrany adres MAC jest już w użyciu!'; $_LANG['Specified name contains forbidden characters!'] = 'Wybrana nazwa zawiera zabronione znaki!'; $_LANG['Specified name is in use!'] = 'Wybrana nazwa jest już w użyciu!'; -$_LANG['Specified name is too long (max.$0 characters)!'] = 'Wybrana nazwa jest za długa (maksymalnie $0 znaków)!'; +$_LANG['Specified name is too long (max.$a characters)!'] = 'Wybrana nazwa jest za długa (maksymalnie $a znaków)!'; $_LANG['Specify format of verbal amounts representation (on invoices). e.g. for value "1" verbal expand of 123,15 will be "one two thr 15/100". Default: 0.'] = 'Okre¶l typ reprezentacji słownej liczb (na fakturach). np dla warto¶ci "1" słowne okre¶lenie sumy 123,15 wêdzie wygl±dało "jed dwa trz 15/100". Domy¶lnie: 0.'; $_LANG['Specify time (in seconds), after which node will be marked offline. It should match with frequency of running nodes activity script (i.e. lms-fping). Default: 600.'] = 'Okre¶l czas (w sekundach) po jakim komputer bêdzie uważany za wył±czony. Powinno siê to pokrywaæ z czêstotliwo¶ci± uruchamiania skryptu dokonuj±cego sprawdzenia aktywno¶ci komputerów (np lms-fping). Domy¶lnie: 600.'; $_LANG['SQL query executed while reload, if reload_type = sql. Default: empty. You can use \'%TIME%\' as replacement to current unix timestamp. WARNING! Semicolon is handled as query separator, which means that you can enter couple of SQL queries separated by semicolon sign.'] = 'Zapytanie SQL wykonywane pod czas przeładownia jeżeli reload_type = sql. Domy¶lnie: pusta. W zapytaniu może byæ użyta zmienna \'%TIME%\' jako zastêpstwo wła¶ciwego czasu zapisanego w formacie UNIX_TIMESTAMP. UWAGA! Šrednik jest interpretowany jako znak rozdzielaj±cy zapytania. Oznacza to, że możesz wpisaæ kilka zapytań SQL oddzielonych ¶rednikami.'; @@ -1247,8 +1247,8 @@ $_LANG['System information and management'] = 'Informacje o systemie i administracja'; $_LANG['System version:'] = 'Wersja systemu:'; $_LANG['Table of financial operations'] = 'Tabela operacji finansowych'; -$_LANG['Subscription Edit: $0'] = 'Edycja taryfy: $0'; -$_LANG['Subscription Info: $0'] = 'Informacje o taryfie: $0'; +$_LANG['Subscription Edit: $a'] = 'Edycja taryfy: $a'; +$_LANG['Subscription Info: $a'] = 'Informacje o taryfie: $a'; $_LANG['Subscription List'] = 'Lista taryf'; $_LANG['Subscription name required!'] = 'Nazwa taryfy jest wymagana!'; $_LANG['Subscriptions and Network Finances Management'] = 'Taryfy i zarz±dzanie finansami sieci'; @@ -1289,13 +1289,13 @@ $_LANG['This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation.'] = 'Niniejszy program jest oprogramowaniem wolnodostêpnym; możesz go rozprowadzaæ dalej i/lub modyfikowaæ na warunkach Powszechnej Licencji Publicznej GNU, wydanej przez Fundacjê Wolnodostêpnego Oprogramowania - według wersji 2-giej tej Licencji lub której¶ z póŒniejszych wersji'; $_LANG['This queue is empty.'] = 'Ta kolejka jest pusta.'; $_LANG['Ticket date:'] = 'Data zgłoszenia:'; -$_LANG['Ticket Edit: $0'] = 'Edycja zgłoszenia: $0'; +$_LANG['Ticket Edit: $a'] = 'Edycja zgłoszenia: $a'; $_LANG['Ticket History'] = 'Historia zgłoszenia'; $_LANG['Ticket must have its body!'] = 'Zgłoszenie musi mieæ jak±¶ zawarto¶æ!'; $_LANG['Ticket must have its title!'] = 'Zgłoszenie musi mieæ tytuł!'; -$_LANG['Ticket No. $0'] = 'Zgłoszenie Nr $0'; +$_LANG['Ticket No. $a'] = 'Zgłoszenie Nr $a'; $_LANG['Ticket Review'] = 'Podgl±d zgłoszenia'; -$_LANG['Ticket Review: $0'] = 'Podgl±d zgłoszenia: $0'; +$_LANG['Ticket Review: $a'] = 'Podgl±d zgłoszenia: $a'; $_LANG['Tickets'] = 'Zgłoszenia'; $_LANG['Ticket Search'] = 'Wyszukiwanie zgłoszeń'; $_LANG['Tickets searching'] = 'Wyszukiwanie zgłoszeń'; @@ -1313,10 +1313,10 @@ $_LANG['To (day/month/year hh:mm):'] = 'Do (dzień/miesi±c/rok gg:mm):'; $_LANG['To pay:'] = 'Do zapłaty:'; $_LANG['Total:'] = 'Razem:'; -$_LANG['Total: $0'] = 'Razem: $0'; +$_LANG['Total: $a'] = 'Razem: $a'; $_LANG['Total Dues:'] = 'W tym zadłużonych:'; $_LANG['Total Invoiceless Income'] = 'ٱczny przychód bezrachunkowy'; -$_LANG['Total Invoiceless Income ($0 to $1)'] = 'ٱczny przychód bezrachunkowy ($0 do $1)'; +$_LANG['Total Invoiceless Income ($a to $b)'] = 'ٱczny przychód bezrachunkowy ($a do $b)'; $_LANG['Total Tax'] = 'Suma PTU'; $_LANG['Type:'] = 'Typ:'; $_LANG['Type/Quota:'] = 'Typ/Quota:'; @@ -1326,7 +1326,7 @@ $_LANG['Unit:'] = 'JM:'; $_LANG['Unitary Net Value:'] = 'Cena jedn. netto:'; $_LANG['Unknown option. No description.'] = 'Nieznana opcja. Brak opisu.'; -$_LANG['unknown OS ($0)'] = 'nieznany OS ($0)'; +$_LANG['unknown OS ($a)'] = 'nieznany OS ($a)'; $_LANG['Unresolved:'] = 'Nierozwi±zane:'; $_LANG['Upceil:'] = 'Upceil:'; $_LANG['Upload'] = 'Upload'; @@ -1342,8 +1342,8 @@ $_LANG['User'] = 'Użytkownik'; $_LANG['User:'] = 'Użytkownik:'; $_LANG['User-defined stats'] = 'Statystyki zdefiniowane przez użytkownika'; -$_LANG['User Edit: $0'] = 'Edycja użytkownika: $0'; -$_LANG['User Info: $0'] = 'Informacje o użytkowniku: $0'; +$_LANG['User Edit: $a'] = 'Edycja użytkownika: $a'; +$_LANG['User Info: $a'] = 'Informacje o użytkowniku: $a'; $_LANG['User Interface'] = 'Interfejs użytkownika'; $_LANG['User Interface Configuration'] = 'Konfiguracja interfejsu użytkownika'; $_LANG['System language code. If not set, language will be determined on browser settings. Default: en.'] = 'Kod jêzykowy systemu. Jeżeli nie jest wybrany to jêzyk bêdzie bazował na ustawieniach przegl±darki. Domy¶lnie: en.'; @@ -1359,16 +1359,16 @@ $_LANG['Value:'] = 'Warto¶æ:'; $_LANG['Value and description:'] = 'Warto¶æ i opis:'; $_LANG['Value of tax rate which will be selected by default on tax rates lists. Default: 22.0'] = 'Warto¶æ stawki procentowej, która ma byæ domy¶lnie zaznaczona na listach wyboru stawki. Domy¶lnie: 22.0'; -$_LANG['Value of option "$0" must be a number grater than zero!'] = 'Warto¶æ opcji "$0" musi byæ wiêksza od zera!'; +$_LANG['Value of option "$a" must be a number grater than zero!'] = 'Warto¶æ opcji "$a" musi byæ wiêksza od zera!'; $_LANG['View'] = 'Podgl±d'; $_LANG['waiting'] = 'oczekuj±cy'; $_LANG['Waiting:'] = 'Oczekuj±cy:'; -$_LANG['Warning! Debug mode (using address $0).'] = 'UWAGA! Tryb debugowania (używam adresu $0).'; +$_LANG['Warning! Debug mode (using address $a).'] = 'UWAGA! Tryb debugowania (używam adresu $a).'; $_LANG['Warning! This is example document (default template). You can create your own template in documents/templates/ directory.'] = 'Uwaga to jest przykładowy dokument (domy¶lny szablon). Możesz utworzyæ własne szablony w katalogu documents/templates/.'; $_LANG['WARNING! It will backup current database content automatically'] = 'UWAGA! Spowoduje to automatyczne utworzenie kopii zapasowej obecnej bazy danych'; $_LANG['WARNING! THIS WILL DELETE ALL DATA FROM DATABASE!!!'] = 'UWAGA! TO USUNIE WSZELKIE DANE Z BAZY!!!'; $_LANG['weekly'] = 'tygodniowo'; -$_LANG['weekly ($0)'] = 'tygodniowo ($0)'; +$_LANG['weekly ($a)'] = 'tygodniowo ($a)'; $_LANG['Welcome to LMS'] = 'Witaj w LMS'; $_LANG['When enabled, all messages in helpdesk system (except those sent to requester) will be sent to mail server corresponding queue address. lms-rtparser script should be running on server. Messages won\'t be written directly to database, but on solely responsibility of rtparser script. Default: disabled.'] = 'Kiedy wł±czona, wszystkie wiadomo¶ci w systemie Helpdesk (oprócz tych od zgłaszaj±cego) bêd± wysyłane do serwera pocztowego na adres odpowiedniej kolejki. Skrypt lms-rtparser powinien byæ uruchomiony na serwerze. Wiadomo¶ci do bazy danych zostan± zapisane przez skrypt. Domy¶lnie: wył±czone.'; $_LANG['When enabled, system will sent notification to all users with rights for current queue after new ticket creation. Default: disabled.'] = 'Gdy wł±czona, system wy¶le informacje o dodaniu nowego zgłoszenia do wszystkich użytkowników, którzy maj± prawa do konkretnej kolejki. Domy¶lnie: wył±czona.'; @@ -1383,9 +1383,9 @@ $_LANG['Wrong password or login.'] = 'Złe hasło lub login.'; $_LANG['www'] = 'www'; $_LANG['half-yearly'] = 'półrocznie'; -$_LANG['half-yearly ($0)'] = 'półrocznie ($0)'; +$_LANG['half-yearly ($a)'] = 'półrocznie ($a)'; $_LANG['yearly'] = 'rocznie'; -$_LANG['yearly ($0)'] = 'rocznie ($0)'; +$_LANG['yearly ($a)'] = 'rocznie ($a)'; $_LANG['yes'] = 'tak'; $_LANG['Yes, I am sure.'] = 'Tak, jestem pewien'; $_LANG['Yes, I do.'] = 'Tak, chcê.'; @@ -1411,7 +1411,7 @@ $_LANG['You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'] = 'Z pewno¶ci± wraz z niniejszym programem otrzymałe¶ też egzemplarz Powszechnej Licencji Publicznej GNU; je¶li nie - napisz do Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'; $_LANG['Zip:'] = 'Kod:'; $_LANG['Add tax rate'] = 'Dodaj stawkê'; -$_LANG['Are you sure, you want to delete taxrate \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ stawkê \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete taxrate \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ stawkê \\\'$a\\\'?'; $_LANG['Binds from date:'] = 'Obowi±zuje od:'; $_LANG['Binds to date:'] = 'Obowi±zuje do:'; $_LANG['Display this form again, when this tax rate is saved'] = 'wy¶wietl formularz ponownie po dodaniu stawki'; @@ -1425,7 +1425,7 @@ $_LANG['No such tax rates in database.'] = 'Brak stawek podatkowych w bazie danych.'; $_LANG['Select taxing status'] = 'Wybierz status opodatkowania'; $_LANG['Taxing:'] = 'Opodatkowanie:'; -$_LANG['Tax Rate Edit: $0'] = 'Edycja stawki podatkowej: $0'; +$_LANG['Tax Rate Edit: $a'] = 'Edycja stawki podatkowej: $a'; $_LANG['Tax rate label is required!'] = 'Etykieta dla stawki podatkowej jest wymagana!'; $_LANG['Tax Rates'] = 'Stawki podatkowe'; $_LANG['Tax Rates Definitions'] = 'Definicje stawek podatkowych'; @@ -1433,7 +1433,7 @@ $_LANG['Tax rate value is not numeric!'] = 'Warto¶æ stawki podatku nie jest liczb±!'; $_LANG['annex'] = 'aneks'; $_LANG['Are you sure, you want to remove that document?'] = 'Jeste¶ pewien, że chcesz usun±æ ten dokument?'; -$_LANG['Can\'t save file in "$0" directory!'] = 'Nie można zapisaæ pliku w katalogu "$0"!'; +$_LANG['Can\'t save file in "$a" directory!'] = 'Nie można zapisaæ pliku w katalogu "$a"!'; $_LANG['contract'] = 'umowa'; $_LANG['Customer\'s Documents:'] = 'Dokumenty klienta:'; $_LANG['Display this form again, when that document is saved'] = 'Wy¶wietl ten formularz ponownie po dodaniu dokumentu'; @@ -1465,7 +1465,7 @@ $_LANG['No. of issued documents:'] = 'Wystawiono dokumentów:'; $_LANG['Document type:'] = 'Typ dokumentu:'; $_LANG['Default:'] = 'Domy¶lny:'; -$_LANG['Are you sure, you want to delete numberplan \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ plan \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete numberplan \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ plan \\\'$a\\\'?'; $_LANG['Numbering Plans List'] = 'Lista planów numeracyjnych'; $_LANG['Add plan'] = 'Dodaj plan'; $_LANG['cash receipt'] = 'dokument kasowy'; @@ -1477,7 +1477,7 @@ $_LANG['New Numbering Plan'] = 'Nowy plan numeracyjny'; $_LANG['No such numbering plans in database.'] = 'Brak planów numeracyjnych w bazie danych.'; $_LANG['Numbering period is required!'] = 'Okres numeracyjny jest wymagany!'; -$_LANG['Numbering Plan Edit: $0'] = 'Edycja planu numeracyjnego: $0'; +$_LANG['Numbering Plan Edit: $a'] = 'Edycja planu numeracyjnego: $a'; $_LANG['Number template is required!'] = 'Szablon numeru jest wymagany!'; $_LANG['select document type'] = 'Wybierz typ dokumentu'; $_LANG['Selected document type has already defined default plan!'] = 'Wybrany typ dokumentu posiada już zdefiniowany plan domy¶lny!'; @@ -1485,18 +1485,18 @@ $_LANG['Select numbering plan'] = 'Wybierz plan numeracyjny'; $_LANG['select period'] = 'wybierz okres'; $_LANG['Template must consist "%N" specifier!'] = 'Szablon musi zawieraæ specyfikator "%N"!'; -$_LANG['Are you sure, you want to remove credit note \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ fakturê koryguj±c± \\\'$0\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove credit note \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ fakturê koryguj±c± \\\'$a\\\' z bazy danych?'; $_LANG['Corrected to:'] = 'Poprawiono na:'; $_LANG['credit memo'] = 'nota koryguj±ca'; $_LANG['credit note'] = 'faktura koryguj±ca'; $_LANG['Credit note'] = 'Faktura koryguj±ca'; -$_LANG['Credit Note for Invoice: $0'] = 'Korekta faktury: $0'; -$_LANG['Credit Note No. $0'] = 'Korekta Nr $0'; +$_LANG['Credit Note for Invoice: $a'] = 'Korekta faktury: $a'; +$_LANG['Credit Note No. $a'] = 'Korekta Nr $a'; $_LANG['Credit note number:'] = 'Numer faktury koryguj±cej:'; -$_LANG['Credit note number $0 already exists!'] = 'Faktura koryguj±ca numer $0 już istnieje!'; +$_LANG['Credit note number $a already exists!'] = 'Faktura koryguj±ca numer $a już istnieje!'; $_LANG['Credit note number must be integer!'] = 'Numer faktury koryguj±cej musi byæ liczb± całkowit±!'; $_LANG['Enter credit note number. WARNING! Changing this number can be DANGEROUS! (leave this field empty to obtain next number)'] = 'WprowadŒ numer faktury koryguj±cej. UWAGA! Zmiana tego numeru może byæ NIEBEZPIECZNA! (pozostaw to pole puste aby uzyskaæ kolejny numer)'; -$_LANG['for Invoice No. $0'] = 'do Faktury VAT Nr $0'; +$_LANG['for Invoice No. $a'] = 'do Faktury VAT Nr $a'; $_LANG['Recover this item'] = 'Przywróæ tê pozycjê'; $_LANG['Recover'] = 'Przywróæ'; $_LANG['Remove this item'] = 'Usuń tê pozycjê'; @@ -1515,7 +1515,7 @@ $_LANG['select template'] = 'wybierz szablon'; $_LANG['Select template to generate new document if you haven\'t got prepared file'] = 'Je¶li nie posiadasz gotowego pliku, wybierz szablon aby wygenerowaæ nowy dokument'; $_LANG['WINS:'] = 'WINS:'; -$_LANG['last $0 documents'] = 'ostatnie $0 dokumentów'; +$_LANG['last $a documents'] = 'ostatnie $a dokumentów'; $_LANG['Last operation:'] = 'Ostatnia operacja:'; $_LANG['Limit of records displayed on one page in documents list. Default: 100.'] = 'Limit rekordów na jednej stronie listy dokumentów. Domy¶lnie: 100.'; $_LANG['All Documents'] = 'Wszystkie dokumenty'; @@ -1527,7 +1527,7 @@ $_LANG['No such stats for selected period.'] = 'Brak statystyk w wybranym okresie.'; $_LANG['Receipts'] = 'Potwierdzenia'; $_LANG['Select period'] = 'Wybierz okres'; -$_LANG['Stats of Customer $0 in month $1'] = 'Statystyki klienta $0 za miesi±c $1'; +$_LANG['Stats of Customer $a in month $b'] = 'Statystyki klienta $a za miesi±c $b'; $_LANG['Year:'] = 'Rok:'; $_LANG['Add items'] = 'Dodaj pozycje'; $_LANG['Last 10 not accounted invoices:'] = 'Ostatnie 10 nierozliczonych faktur:'; @@ -1545,7 +1545,7 @@ $_LANG['Incorrect date!'] = 'Niewła¶ciwa data!'; $_LANG['Liability:'] = 'Zobowi±zanie:'; $_LANG['Liability value is required!'] = 'Kwota zobowi±zania jest wymagana!'; -$_LANG['Customer ID: $0'] = 'ID klienta: $0'; +$_LANG['Customer ID: $a'] = 'ID klienta: $a'; $_LANG['Enter balance limit (default 0)'] = 'WprowadŒ limit bilansu (domy¶lnie 0)'; $_LANG['Transfer forms'] = 'Formularze przelewu'; $_LANG['Not set'] = 'Nie ustawione'; @@ -1566,46 +1566,46 @@ $_LANG['Add registry'] = 'Nowy Rejestr'; $_LANG['Advanced (+R)'] = 'Zaawansowany (+O)'; $_LANG['All receipts in that registry will be lost.'] = 'Wszystkie potwierdzenia w tym rejestrze zostan± usuniête.'; -$_LANG['Are you sure, you want to remove registry \\\'$0\\\' and all assigned receipts?'] = 'Czy jeste¶ pewien, że chcesz usun±æ rejestr \\\'$0\\\' i wszystkie przypisane potwierdzenia?'; +$_LANG['Are you sure, you want to remove registry \\\'$a\\\' and all assigned receipts?'] = 'Czy jeste¶ pewien, że chcesz usun±æ rejestr \\\'$a\\\' i wszystkie przypisane potwierdzenia?'; $_LANG['Cash-in receipt numbering plan:'] = 'Plan num. dowodów wpłaty:'; $_LANG['cash operations'] = 'operacje kasowe'; $_LANG['Cash-out receipt numbering plan:'] = 'Plan num. dowodów wypłaty:'; $_LANG['Cash Registries List'] = 'Lista rejestrów kasowych'; -$_LANG['Cash Registry: $0'] = 'Rejestr kasowy: $0'; -$_LANG['Cash Registry Info: $0'] = 'Informacje o rejestrze: $0'; +$_LANG['Cash Registry: $a'] = 'Rejestr kasowy: $a'; +$_LANG['Cash Registry Info: $a'] = 'Informacje o rejestrze: $a'; $_LANG['CR-in'] = 'KP'; $_LANG['CR-out'] = 'KW'; -$_LANG['Do you want to remove registry "$0"?'] = 'Czy na pewno chcesz usun±æ rejestr "$0"?'; -$_LANG['Edit Cash Registry: $0'] = 'Edycja rejestru kasowego: $0'; +$_LANG['Do you want to remove registry "$a"?'] = 'Czy na pewno chcesz usun±æ rejestr "$a"?'; +$_LANG['Edit Cash Registry: $a'] = 'Edycja rejestru kasowego: $a'; $_LANG['List of cash registries'] = 'Lista rejestrów kasowych'; $_LANG['New Cash Registry'] = 'Nowy rejestr kasowy'; $_LANG['Proof of Pay-out'] = 'Dowód wypłaty'; $_LANG['Registry name must be defined!'] = 'Nazwa rejestru jest wymagana!'; $_LANG['Registry with specified name already exists!'] = 'Rejestr o podanej nazwie już istnieje!'; -$_LANG['Removing registry "$0"'] = 'Usuwanie rejestru "$0"'; -$_LANG['Selected customer is in debt for $0!'] = 'Wybrany klient jest zadłużony na $0!'; +$_LANG['Removing registry "$a"'] = 'Usuwanie rejestru "$a"'; +$_LANG['Selected customer is in debt for $a!'] = 'Wybrany klient jest zadłużony na $a!'; $_LANG['- select numbering plan -'] = '- wybierz plan numeracyjny -'; $_LANG['There are no cash registries.'] = 'Brak rejestrów kasowych'; $_LANG['To whom:'] = 'Komu:'; $_LANG['Cash Receipts'] = 'Dokumenty Kasowe'; $_LANG['Cash Registry:'] = 'Rejestr kasowy:'; $_LANG['Moving assets:'] = 'Przeniesienie ¶rodków:'; -$_LANG['Moving assets from registry $0 ($1)'] = 'Przeniesienie ¶rodków z rejestru $0 ($1)'; -$_LANG['Moving assets to registry $0'] = 'Przeniesienie ¶rodków do rejestru $0'; +$_LANG['Moving assets from registry $a ($b)'] = 'Przeniesienie ¶rodków z rejestru $a ($b)'; +$_LANG['Moving assets to registry $a'] = 'Przeniesienie ¶rodków do rejestru $a'; $_LANG['Select cash registry'] = 'Wybierz rejestr kasowy'; $_LANG['- select registry -'] = '- wybierz rejestr -'; $_LANG['Target:'] = 'Cel:'; $_LANG['There is no cash in selected registry!'] = 'Brak ¶rodków w wybranym rejestrze!'; -$_LANG['There is no cash in selected registry! You can expense only $0.'] = 'Brak ¶rodków w wybranym rejestrze! Możesz wydaæ tylko $0.'; +$_LANG['There is no cash in selected registry! You can expense only $a.'] = 'Brak ¶rodków w wybranym rejestrze! Możesz wydaæ tylko $a.'; $_LANG['You don\'t have permission to add receipt in selected cash registry!'] = 'Nie posiadasz uprawnień aby dodaæ dokument w wybranym rejestrze!'; $_LANG['Registry:'] = 'Rejestr:'; $_LANG['Expense'] = 'Rozchód'; $_LANG['Income'] = 'Przychód'; $_LANG['No such cash receipts in database.'] = 'Brak dokumentów kasowych w bazie danych.'; -$_LANG['Registry: $0'] = 'Rejestr: $0'; -$_LANG['Cashier: $0'] = 'Kasjer: $0'; -$_LANG['Cash-in Receipt Edit: $0'] = 'Edycja KP: $0'; -$_LANG['Cash-out Receipt Edit: $0'] = 'Edycja KW: $0'; +$_LANG['Registry: $a'] = 'Rejestr: $a'; +$_LANG['Cashier: $a'] = 'Kasjer: $a'; +$_LANG['Cash-in Receipt Edit: $a'] = 'Edycja KP: $a'; +$_LANG['Cash-out Receipt Edit: $a'] = 'Edycja KW: $a'; $_LANG['Cash Registry'] = 'Rejestr kasowy'; $_LANG['payed out'] = 'wypłaciłem'; $_LANG['received'] = 'otrzymałem'; @@ -1624,7 +1624,7 @@ $_LANG['Confirm'] = 'ZatwierdŒ'; $_LANG['Confirmed:'] = 'Zatwierdzony:'; $_LANG['Deleted:'] = 'Usuniêty:'; -$_LANG['Edit Document: $0'] = 'Edycja dokumentu: $0'; +$_LANG['Edit Document: $a'] = 'Edycja dokumentu: $a'; $_LANG['Additional number:'] = 'Dodatkowy numer:'; $_LANG['Enter additional document number'] = 'WprowadŒ dodatkowy numer dokumentu'; $_LANG['income/expense'] = 'przychód/rozchód'; @@ -1672,7 +1672,7 @@ $_LANG['Plan:'] = 'Plan:'; $_LANG['Additional information:'] = 'Informacje dodatkowe:'; $_LANG['extended format'] = 'format rozszerzony'; -$_LANG['Page $0 from $1'] = 'Strona $0 z $1'; +$_LANG['Page $a from $b'] = 'Strona $a z $b'; $_LANG['Page total:'] = 'Razem na stronie:'; $_LANG['Total from start of period:'] = 'Razem od pocz±tku okresu:'; $_LANG['Transfered from previous page:'] = 'Przeniesienie z poprzedniej strony:'; @@ -1702,12 +1702,12 @@ $_LANG['Select request cause'] = 'Wybierz przyczynê zgłoszenia'; $_LANG['unknown/other'] = 'nieznana/inna'; $_LANG['unknown/other'] = 'nieznane/inne'; -$_LANG['Go to $0 page'] = 'IdŒ do $0 strony'; +$_LANG['Go to $a page'] = 'IdŒ do $a strony'; $_LANG['Requests causes (last year):'] = 'Przyczyny zgłoszeń (ostatni rok):'; $_LANG['Adds helpdesk requests causes stats on ticket view and print pages. Default: true'] = 'Dodaje statystyki przyczyn zgłoszeń na stronie podgl±du zgłoszenia oraz jego wydruku. Domy¶lnie: wł±czona'; $_LANG['Enables page scroller designed for lists with very big number of pages. Default: false'] = 'Wł±cza formularz zmiany strony zaprojektowany z my¶l± o listach z bardzo duż± ilo¶ci± stron. Domy¶lnie: wył±czona'; $_LANG['Support for EtherWerX devices. Default: false'] = 'Wł±cza wsparcie dla urz±dzeń EtherWerX. Domy¶lnie: wył±czona'; -$_LANG['Customers requesting more than $0 times in last $1 days'] = 'Klienci dokonuj±cy zgłoszeń czê¶ciej niż $0 razy w ci±gu ostatnich $1 dni'; +$_LANG['Customers requesting more than $a times in last $b days'] = 'Klienci dokonuj±cy zgłoszeń czê¶ciej niż $a razy w ci±gu ostatnich $b dni'; $_LANG['List of Requests'] = 'Lista zgłoszeń'; $_LANG['Lists and reports printing'] = 'Wydruk list i raportów'; $_LANG['Reports'] = 'Raporty'; @@ -1738,7 +1738,7 @@ $_LANG['- select filter -'] = '- wybierz filtr -'; $_LANG['Settle advance'] = 'Rozlicz zaliczkê'; $_LANG['Not accounted advances:'] = 'Nierozliczone zaliczki:'; -$_LANG['Advance settlement: $0'] = 'Rozliczenie zaliczki: $0'; +$_LANG['Advance settlement: $a'] = 'Rozliczenie zaliczki: $a'; $_LANG['settlement'] = 'rozliczenie'; $_LANG['return'] = 'zwrot'; $_LANG['Recipient:'] = 'Odbiorca:'; @@ -1749,7 +1749,7 @@ $_LANG['Description is required!'] = 'Opis jest wymagany!'; $_LANG['Enter receipt description'] = 'WprowadŒ opis potwierdzenia'; $_LANG['Recipient name is required!'] = 'Nazwa odbiorcy jest wymagana!'; -$_LANG['There is only $0 in registry!'] = 'W rejestrze jest tylko $0!'; +$_LANG['There is only $a in registry!'] = 'W rejestrze jest tylko $a!'; $_LANG['Value is required!'] = 'Kwota jest wymagana!'; $_LANG['Delete (+R)'] = 'Usuwanie (+O)'; $_LANG['Are you sure, you want to delete that note?'] = 'Czy na pewno chcesz usun±æ t± notatkê?'; @@ -1783,7 +1783,7 @@ $_LANG['Wrong datetime format!'] = 'Błêdny format daty/czasu!'; $_LANG['Real state:'] = 'Stan rzeczywisty:'; $_LANG['Select All'] = 'Zaznacz wszystkich'; -$_LANG['There is newer version of LMS ($0) available for download from $1.'] = 'Na stronie $1 jest już dostêpna nowsza wersja systemu - $0.'; +$_LANG['There is newer version of LMS ($a) available for download from $b.'] = 'Na stronie $b jest już dostêpna nowsza wersja systemu - $a.'; $_LANG['Are you sure, you want to delete selected documents?'] = 'Czy na pewno chcesz usun±æ zaznaczone dokumenty?'; $_LANG['Enter Gadu-Gadu ID (optional)'] = 'WprowadŒ identyfikator komunikatora Gadu-Gadu (opcjonalnie)'; $_LANG['Enter Skype ID (optional)'] = 'WprowadŒ identyfikator komunikatora Skype (opcjonalnie)'; @@ -1821,8 +1821,8 @@ $_LANG['Selected'] = 'Wybrane'; $_LANG['customers groups management'] = 'zarz±dzanie grupami klientów'; $_LANG['Groups:'] = 'Grupy:'; -$_LANG['Group: $0'] = 'Grupa: $0'; -$_LANG['Group: all excluding $0'] = 'Grupa: wszystkie oprócz $0'; +$_LANG['Group: $a'] = 'Grupa: $a'; +$_LANG['Group: all excluding $a'] = 'Grupa: wszystkie oprócz $a'; $_LANG['Position:'] = 'Stanowisko:'; $_LANG['Configuration error. Patterns array not found!'] = 'Bł±d w konfiguracji. Nie znaleziono tablicy wzorców!'; $_LANG['Line:'] = 'Linia:'; @@ -1839,7 +1839,7 @@ $_LANG['Date from the future not allowed!'] = 'Data z przyszło¶ci nie jest dozwolona!'; $_LANG['no guarantee'] = 'brak'; $_LANG['Select days number of cutoff suspending (optional)'] = 'Wybierz ilo¶æ dni zawieszenia blokowania (opcjonalnie)'; -$_LANG['Cutoff suspended to $0'] = 'Blokowanie zawieszone do dnia $0'; +$_LANG['Cutoff suspended to $a'] = 'Blokowanie zawieszone do dnia $a'; $_LANG['Customer has got disconnected nodes!'] = 'Klient posiada odł±czone komputery!'; $_LANG['Clone'] = 'Klonuj'; $_LANG['Add node to group'] = 'Dodaj komputer do grupy'; @@ -1855,14 +1855,14 @@ $_LANG['Select group to attribute to node'] = 'Wybierz grupê aby przypisaæ j± do komputera'; $_LANG['That node is not a member of any group.'] = 'Ten komputer nie należy do żadnej grupy.'; $_LANG['Remove Group'] = 'Usuń grupê'; -$_LANG['Node\'s Groups ($0):'] = 'Grupy komputera ($0):'; +$_LANG['Node\'s Groups ($a):'] = 'Grupy komputera ($a):'; $_LANG['Are you sure, you want to delete that group?'] = 'Jeste¶ pewien, że chcesz usun±æ t± grupê?'; $_LANG['Are you sure, you want to move members to selected group?'] = 'Czy jeste¶ pewien, że chcesz przenie¶æ członków do wybranej grupy?'; $_LANG['Move members to group:'] = 'Przenie¶ członków do grupy:'; $_LANG['Select group to which you want to move members'] = 'Wybierz grupê, do której chcesz przenie¶æ członków'; $_LANG['Default period value for assignment. Default: 0'] = 'Domy¶lna warto¶æ okresu obci±żenia. Domy¶lnie: 0'; -$_LANG['Customer has got nodes in group(s): $0!'] = 'Komputer(y) klienta należ± do grup(y): $0!'; -$_LANG['Customer has got nodes in groups: $0!'] = 'Klient posiada komputery w grupach: $0!'; +$_LANG['Customer has got nodes in group(s): $a!'] = 'Komputer(y) klienta należ± do grup(y): $a!'; +$_LANG['Customer has got nodes in groups: $a!'] = 'Klient posiada komputery w grupach: $a!'; $_LANG['Dest. port'] = 'Port docelowy'; $_LANG['Device:'] = 'Urz±dzenie:'; $_LANG['Enter port number in device for connection (optional)'] = 'WprowadŒ numer portu urz±dzenia podł±czanego (opcjonalnie)'; @@ -1880,15 +1880,15 @@ $_LANG['Destination:'] = 'Cel:'; $_LANG['Login'] = 'Login'; $_LANG['Accounts number:'] = 'Liczba kont:'; -$_LANG['Account Info: $0'] = 'Informacje o koncie: $0'; +$_LANG['Account Info: $a'] = 'Informacje o koncie: $a'; $_LANG['Aliases number:'] = 'Liczba aliasów:'; -$_LANG['Alias Edit: $0'] = 'Edycja aliasu: $0'; -$_LANG['Alias Info: $0'] = 'Informacje o aliasie: $0'; +$_LANG['Alias Edit: $a'] = 'Edycja aliasu: $a'; +$_LANG['Alias Info: $a'] = 'Informacje o aliasie: $a'; $_LANG['Are you sure, you want to delete that account?'] = 'Jeste¶ pewien, że chcesz usun±æ to konto?'; $_LANG['Are you sure, you want to delete that alias?'] = 'Jeste¶ pewien, że chcesz usun±æ ten alias?'; $_LANG['Are you sure, you want to delete that domain and all accounts/aliases in that domain?'] = 'Jeste¶ pewien, że chcesz usun±æ t± domenê i wszystkie konta/aliasy w niej?'; $_LANG['Domain\'s owner:'] = 'Wła¶ciciel domeny:'; -$_LANG['Domain Info: $0'] = 'Informacje o domenie: $0'; +$_LANG['Domain Info: $a'] = 'Informacje o domenie: $a'; $_LANG['Hosting'] = 'Hosting'; $_LANG['Node group:'] = 'Grupa komputerów:'; $_LANG['You have to select destination account!'] = 'Musisz wybraæ konto docelowe!'; @@ -1925,12 +1925,12 @@ $_LANG['Quota limit of shell account:'] = 'Limit rozmiaru konta shellowego:'; $_LANG['Quota limit of sql account:'] = 'Limit rozmiaru konta sql:'; $_LANG['Quota limit of www account:'] = 'Limit rozmiaru konta www:'; -$_LANG['Exceeded \'$0\' accounts limit of selected customer ($1)!'] = 'Przekroczony limit liczby kont typu \'$0\' dla wybranego klienta ($1)!'; -$_LANG['Exceeded \'$0\' account quota limit of selected customer ($1)!'] = 'Przekroczony limit rozmiaru konta typu \'$0\' dla wybranego klienta ($1)!'; -$_LANG['Exceeded aliases limit of selected customer ($0)!'] = 'Przekroczony limit liczby aliasów dla wybranego klienta ($0)!'; -$_LANG['Exceeded domains limit of selected customer ($0)!'] = 'Przekroczony limit liczby domen dla wybranego klienta ($0)!'; -$_LANG['Account aliases ($0):'] = 'Aliasy tego konta ($0)'; -$_LANG['Are you sure, you want to delete assignment with alias: \\\'$0\\\'?'] = 'Czy jeste¶ pewien, że chcesz usun±æ powi±zanie z aliasem: \\\'$0\\\'?'; +$_LANG['Exceeded \'$a\' accounts limit of selected customer ($b)!'] = 'Przekroczony limit liczby kont typu \'$a\' dla wybranego klienta ($b)!'; +$_LANG['Exceeded \'$a\' account quota limit of selected customer ($b)!'] = 'Przekroczony limit rozmiaru konta typu \'$a\' dla wybranego klienta ($b)!'; +$_LANG['Exceeded aliases limit of selected customer ($a)!'] = 'Przekroczony limit liczby aliasów dla wybranego klienta ($a)!'; +$_LANG['Exceeded domains limit of selected customer ($a)!'] = 'Przekroczony limit liczby domen dla wybranego klienta ($a)!'; +$_LANG['Account aliases ($a):'] = 'Aliasy tego konta ($a)'; +$_LANG['Are you sure, you want to delete assignment with alias: \\\'$a\\\'?'] = 'Czy jeste¶ pewien, że chcesz usun±æ powi±zanie z aliasem: \\\'$a\\\'?'; $_LANG['Delete assignment'] = 'Usuń powi±zanie'; $_LANG['There are no aliases for that account.'] = 'Brak aliasów do tego konta.'; $_LANG['New alias'] = 'Nowy alias'; @@ -1962,7 +1962,7 @@ $_LANG['Consent to electronic invoices:'] = 'Zgoda na faktury elektroniczne:'; $_LANG['Consent to invoices delivery via e-mail:'] = 'Zgoda na dostarczanie faktur poczt± elektroniczn±:'; $_LANG['Consent to messages delivery via e-mail or sms:'] = 'Zgoda na dostarczanie informacji poczt± elektr. lub smsem:'; -$_LANG['Rows: $0'] = 'Liczba wierszy: $0'; +$_LANG['Rows: $a'] = 'Liczba wierszy: $a'; $_LANG['private person'] = 'osoba fizyczna'; $_LANG['legal entity'] = 'osoba prawna / firma'; $_LANG['Select legal personality type'] = 'Wybierz typ osobowo¶ci prawnej'; @@ -1973,7 +1973,7 @@ $_LANG['in date:'] = 'z dnia:'; $_LANG['Legal personality:'] = 'Osobowo¶æ prawna:'; $_LANG['Add state'] = 'Dodaj województwo'; -$_LANG['Are you sure, you want to delete state \\\'$0\\\'?'] = 'Czy na pewno chcesz usun±æ województwo \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete state \\\'$a\\\'?'] = 'Czy na pewno chcesz usun±æ województwo \\\'$a\\\'?'; $_LANG['Country States Definitions'] = 'Definicje województw'; $_LANG['Display this form again, when this state is saved'] = 'wy¶wietl formularz ponownie po dodaniu województwa'; $_LANG['Enter state name'] = 'WprowadŒ nazwê województwa'; @@ -1981,7 +1981,7 @@ $_LANG['No such states in database.'] = 'Brak województw w bazie danych.'; $_LANG['States'] = 'Województwa'; $_LANG['States List'] = 'Lista województw'; -$_LANG['State Edit: $0'] = 'Edycja województwa: $0'; +$_LANG['State Edit: $a'] = 'Edycja województwa: $a'; $_LANG['State name is required!'] = 'Nazwa województwa jest wymagana!'; $_LANG['Select country state'] = 'Wybierz województwo'; $_LANG['Select country state (optional)'] = 'Wybierz województwo (opcjonalnie)'; @@ -1991,7 +1991,7 @@ $_LANG['nodes to groups assignment'] = 'przypisywanie komputerów do grup'; $_LANG['Address is required!'] = 'Adres jest wymagany!'; $_LANG['Add division'] = 'Nowa firma'; -$_LANG['Are you sure, you want to delete division \\\'$0\\\'?'] = 'Czy na pewno chcesz usun±æ firmê \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete division \\\'$a\\\'?'] = 'Czy na pewno chcesz usun±æ firmê \\\'$a\\\'?'; $_LANG['Bank account:'] = 'Konto bankowe:'; $_LANG['City is required!'] = 'Miasto jest wymagane!'; $_LANG['Company Divisions Definitions'] = 'Definicje firm (oddziałów)'; @@ -2001,7 +2001,7 @@ $_LANG['Division long name is required!'] = 'Pełna nazwa firmy jest wymagana!'; $_LANG['Division short name is required!'] = 'Skrócona nazwa firmy jest wymagana!'; $_LANG['Division with specified name already exists!'] = 'Firma o podanej nazwie już istnieje!'; -$_LANG['Edit Division: $0'] = 'Edycja firmy: $0'; +$_LANG['Edit Division: $a'] = 'Edycja firmy: $a'; $_LANG['Enter bank account or mass payments account prefix (optional)'] = 'WprowadŒ konto bankowe lub prefiks konta płatno¶ci masowych (opcjonalnie)'; $_LANG['Enter division long name'] = 'WprowadŒ pełn± nazwê firmy'; $_LANG['Enter division short name'] = 'WprowadŒ skrócon± nazwê firmy'; @@ -2053,12 +2053,12 @@ $_LANG['Voip account phone number is too long (max.32 characters)!'] = 'Podany numer telefonu jest za długi (max. 32 znaki)!'; $_LANG['Specified phone is in use!'] = 'Podany numer telefonu jest w użyciu!'; $_LANG['Specified phone number contains forbidden characters or is too short!'] = 'Podany numer telefonu zawiera zabronione znaki lub jest za krótki!'; -$_LANG['Are you sure, you want to remove voip account \'$0\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ kont VoIP \'$0\' z bazy danych?'; -$_LANG['Are you sure, you want to remove voip account \\\'$0\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ kont VoIP \\\'$0\\\' z bazy danych?'; -$_LANG['Delete Voip Account $0'] = 'Usuń konto VoIP: $0'; -$_LANG['Voip Account Info: $0'] = 'Informacje o koncie: $0'; -$_LANG['Voip Account Edit: $0'] = 'Edycja konta VoIP: $0'; -$_LANG['Voip Accounts ($0):'] = 'Konta VoIP ($0):'; +$_LANG['Are you sure, you want to remove voip account \'$a\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ kont VoIP \'$a\' z bazy danych?'; +$_LANG['Are you sure, you want to remove voip account \\\'$a\\\' from database?'] = 'Jeste¶ pewien, że chcesz usun±æ kont VoIP \\\'$a\\\' z bazy danych?'; +$_LANG['Delete Voip Account $a'] = 'Usuń konto VoIP: $a'; +$_LANG['Voip Account Info: $a'] = 'Informacje o koncie: $a'; +$_LANG['Voip Account Edit: $a'] = 'Edycja konta VoIP: $a'; +$_LANG['Voip Accounts ($a):'] = 'Konta VoIP ($a):'; $_LANG['Import'] = 'Importuj'; $_LANG['Download (CSV)'] = 'Pobierz (CSV)'; $_LANG['Download all (TXT)'] = 'Pobierz wszystkie (TXT)'; @@ -2074,12 +2074,12 @@ $_LANG['Select country'] = 'Wybierz kraj'; $_LANG['Select country (optional)'] = 'Wybierz kraj (opcjonalnie)'; $_LANG['VoIP'] = 'VoIP'; -$_LANG['Voip account $0 was deleted'] = 'Konto VoIP $0 zostało usuniête'; +$_LANG['Voip account $a was deleted'] = 'Konto VoIP $a zostało usuniête'; $_LANG['Voip account owner is not connected!'] = 'Wła¶ciciel konta VoIP nie jest podłaczony!'; $_LANG['Selected numbering plan doesn\'t match customer\'s division!'] = 'Wybrany plan numeracyjny nie należy do firmy klienta!'; $_LANG['with document'] = 'z dokumentem'; $_LANG['without document'] = 'bez dokumentu'; -$_LANG['$0 records for deleted nodes has been removed.
'] = '$0 rekordów nieistniej±cych komputerów zostało usuniêtych.
'; +$_LANG['$a records for deleted nodes has been removed.
'] = '$a rekordów nieistniej±cych komputerów zostało usuniêtych.
'; $_LANG['- select category -'] = '- wybierz kategoriê -'; $_LANG['Available:'] = 'Dostêpne:'; $_LANG['Selected:'] = 'Wybrane:'; @@ -2089,7 +2089,7 @@ $_LANG['DOWNLOAD'] = 'DOWNLOAD'; $_LANG['UPLOAD'] = 'UPLOAD'; $_LANG['Customer Timetable:'] = 'Terminarz klienta:'; -$_LANG['last $0 events'] = 'ostatnie $0 zdarzeń'; +$_LANG['last $a events'] = 'ostatnie $a zdarzeń'; $_LANG['There are no events in timetable.'] = 'Brak zdarzeń w kalendarzu.'; $_LANG['Notices'] = 'Powiadomienia'; $_LANG['Allows you to send notices to customers'] = 'Pozwala wysyłaæ powiadomienia do klientów'; @@ -2106,7 +2106,7 @@ $_LANG['List of sent messages'] = 'Lista wysłanych wiadomo¶ci'; $_LANG['Messages List'] = 'Lista wiadomo¶ci'; $_LANG['Message Add'] = 'Nowa wiadomo¶æ'; -$_LANG['Message Info: $0'] = 'Informacje o wiadomo¶ci: $0'; +$_LANG['Message Info: $a'] = 'Informacje o wiadomo¶ci: $a'; $_LANG['messaging (email, sms)'] = 'komunikacja (e-mail, sms)'; $_LANG['Notice content:'] = 'Tre¶æ powiadomienia:'; $_LANG['No such messages in database.'] = 'Brak wiadomo¶ci w bazie danych.'; @@ -2142,12 +2142,12 @@ $_LANG['SMS "service" not set!'] = 'Nie ustawiona opcja "sms/service"!'; $_LANG['Unknown SMS service!'] = 'Nierozpoznana usługa SMS!'; $_LANG['Wrong phone number format!'] = 'Błêdny format numeru telefonicznego!'; -$_LANG['SMSTools outgoing directory not exists ($0)!'] = 'Katalog wiadomo¶ci wychodz±cych SMSTools nie istnieje ($0)!'; -$_LANG['Unable to create file $0!'] = 'Nie można utworzyæ pliku $0!'; -$_LANG['Unable to write to SMSTools outgoing directory ($0)!'] = 'Nie można zapisywaæ do katalogu wiadomo¶ci wychodz±cych SMSTools ($0)!'; +$_LANG['SMSTools outgoing directory not exists ($a)!'] = 'Katalog wiadomo¶ci wychodz±cych SMSTools nie istnieje ($a)!'; +$_LANG['Unable to create file $a!'] = 'Nie można utworzyæ pliku $a!'; +$_LANG['Unable to write to SMSTools outgoing directory ($a)!'] = 'Nie można zapisywaæ do katalogu wiadomo¶ci wychodz±cych SMSTools ($a)!'; $_LANG['All Messages'] = 'Wszystkie wiadomo¶ci'; $_LANG['Customer Messages:'] = 'Wiadomo¶ci klienta:'; -$_LANG['last $0 messages'] = 'ostatnie $0 wiadomo¶ci'; +$_LANG['last $a messages'] = 'ostatnie $a wiadomo¶ci'; $_LANG['There are no messages in database.'] = 'Brak wiadomo¶ci w bazie danych.'; $_LANG['Check invoices as accounted when importing cash operations. Default: false'] = 'Automatyczne oznaczanie faktur jako rozliczonych podczas importu operacji kasowych. Domy¶lnie: wył±czona'; $_LANG['Command which returns IP-MAC bindings. Default: internal backend'] = 'Komenda zwracaj±ca powi±zania IP-MAC. Domy¶lnie: obsługa wewnêtrzna'; @@ -2168,7 +2168,7 @@ $_LANG['Creating'] = 'Tworzenie'; $_LANG['Deleting'] = 'Usuwanie'; $_LANG['Document Types List'] = 'Lista typów dokumentów'; -$_LANG['Document Type Edit: $0'] = 'Edycja typu dokumentu: $0'; +$_LANG['Document Type Edit: $a'] = 'Edycja typu dokumentu: $a'; $_LANG['Editing'] = 'Edycja'; $_LANG['Confirming'] = 'Zatwierdzanie'; $_LANG['payment pre-summons'] = 'przeds±dowe wezwanie do zapłaty'; @@ -2176,10 +2176,10 @@ $_LANG['Users access rights to documents by type'] = 'Uprawnienia do dokumentów wg typu'; $_LANG['Viewing'] = 'Podgl±d'; $_LANG['Add source'] = 'Nowe Œródło'; -$_LANG['Are you sure, you want to remove source \\\'$0\\\'?'] = 'Czy na pewno chcesz usun±æ Œródło \\\'$0\\\'?'; +$_LANG['Are you sure, you want to remove source \\\'$a\\\'?'] = 'Czy na pewno chcesz usun±æ Œródło \\\'$a\\\'?'; $_LANG['Cash Import History'] = 'Historia importu płatno¶ci'; -$_LANG['Cash Import History ($0 to $1)'] = 'Historia importu płatno¶ci ($0 do $1)'; -$_LANG['Cash Import Source Edit: $0'] = 'Edycja Œródła importu: $0'; +$_LANG['Cash Import History ($a to $b)'] = 'Historia importu płatno¶ci ($a do $b)'; +$_LANG['Cash Import Source Edit: $a'] = 'Edycja Œródła importu: $a'; $_LANG['Cash Import Source List'] = 'Lista Œródeł importu płatno¶ci'; $_LANG['Cash Import Source New'] = 'Nowe Œródło importu'; $_LANG['Display this form again, when this source is saved'] = 'Wy¶wietl ten formularz ponownie po dodaniu Œródła'; @@ -2201,22 +2201,22 @@ $_LANG['Use current division data:'] = 'Zastosuj dane bież±cej firmy (oddziału):'; $_LANG['Seller data change'] = 'Zmiana danych sprzedawcy'; $_LANG['Are you sure, you want to check/uncheck selected debit notes as accounted?'] = 'Czy na pewno chcesz oznaczyæ wybrane noty obci±żeniowe jako rozliczone/nierozliczone?'; -$_LANG['Are you sure, you want to remove debit note \\\'$0\\\' from database?'] = 'Czy na pewno chcesz usun±æ notê obci±żeniow± \\\'$0\\\' z bazy danych?'; +$_LANG['Are you sure, you want to remove debit note \\\'$a\\\' from database?'] = 'Czy na pewno chcesz usun±æ notê obci±żeniow± \\\'$a\\\' z bazy danych?'; $_LANG['debit note'] = 'nota obci±żeniowa'; $_LANG['Debit note'] = 'Nota obci±żeniowa'; $_LANG['Debit Notes'] = 'Noty obci±żeniowe'; $_LANG['Debit Notes List'] = 'Lista not obc.'; $_LANG['Debit Notes List'] = 'Lista not obci±żeniowych'; $_LANG['Debit note have no items. Use form below for items addition.'] = 'Nota obci±żeniowa nie posiada danych. Użyj poniższego formularza aby dodaæ rekord.'; -$_LANG['Debit Note No. $0'] = 'Nota obci±żeniowa Nr $0'; +$_LANG['Debit Note No. $a'] = 'Nota obci±żeniowa Nr $a'; $_LANG['Debit note number:'] = 'Numer noty obci±żeniowej:'; -$_LANG['Debit note number $0 already exists!'] = 'Numer noty obci±żeniowej $0 już istnieje!'; +$_LANG['Debit note number $a already exists!'] = 'Numer noty obci±żeniowej $a już istnieje!'; $_LANG['Debit note number must be integer!'] = 'Numer noty obci±żeniowej musi byæ liczb± całkowit±!'; $_LANG['Document has no items!'] = 'Dokument nie posiada jeszcze pozycji!'; $_LANG['Enter description'] = 'WprowadŒ opis'; $_LANG['Enter note number. WARNING! Changing this number can be DANGEROUS! (leave this field empty to obtain next number)'] = 'WprowadŒ numer noty. UWAGA! Zmiana numeru może byæ NIEBEZPIECZNA! (pozostaw to pole puste aby uzyskaæ kolejny numer)'; $_LANG['Generate debit note'] = 'Tworzenie noty obci±żeniowej'; -$_LANG['Last date of debit note settlement is $0. If sure, you want to write note with date of $1, then click "Submit" again.'] = 'Data wystawienia ostatniej noty obci±żeniowej to $0. Je¶li na pewno chcesz wystawiæ notê z dat± $1 naci¶nij "Zapisz" ponownie.'; +$_LANG['Last date of debit note settlement is $a. If sure, you want to write note with date of $b, then click "Submit" again.'] = 'Data wystawienia ostatniej noty obci±żeniowej to $a. Je¶li na pewno chcesz wystawiæ notê z dat± $b naci¶nij "Zapisz" ponownie.'; $_LANG['List of debit notes'] = 'Lista not obci±żeniowych'; $_LANG['New Debit Note'] = 'Nowa nota obc.'; $_LANG['New Debit Note'] = 'Nowa nota obci±żeniowa'; @@ -2233,7 +2233,7 @@ $_LANG['transactions'] = 'transakcje'; $_LANG['invoices'] = 'faktury'; $_LANG['debit notes'] = 'noty obci±żeniowe'; -$_LANG['Debit Note Edit: $0'] = 'Edycja noty: $0'; +$_LANG['Debit Note Edit: $a'] = 'Edycja noty: $a'; $_LANG['default'] = 'domy¶lny'; $_LANG['(domain alias)'] = '(alias domenowy)'; $_LANG['night:'] = 'noc:'; @@ -2280,7 +2280,7 @@ $_LANG['Add new STM channel'] = 'Utworzenie nowego kanału STM'; $_LANG['Are you sure, you want to delete this channel?'] = 'Czy na pewno chcesz usun±æ ten kanał?'; $_LANG['Channels List'] = 'Lista kanałów'; -$_LANG['Channel Edit: $0'] = 'Edycja kanału: $0'; +$_LANG['Channel Edit: $a'] = 'Edycja kanału: $a'; $_LANG['Channel name:'] = 'Nazwa kanału:'; $_LANG['Channel name is required!'] = 'Nazwa kanału jest wymagana!'; $_LANG['Channel name too long!'] = 'Nazwa kanału jest zbyt długa!'; @@ -2290,14 +2290,14 @@ $_LANG['Enter maximal download value (optional)'] = 'WprowadŒ maksymaln± warto¶æ downloadu (opcjonalnie)'; $_LANG['Enter maximal upload value'] = 'WprowadŒ maksymaln± warto¶æ uploadu'; $_LANG['Enter maximal upload value (optional)'] = 'WprowadŒ maksymaln± warto¶æ uploadu (opcjonalnie)'; -$_LANG['Info Channel: $0'] = 'Informacje o kanale: $0'; +$_LANG['Info Channel: $a'] = 'Informacje o kanale: $a'; $_LANG['List of STM channels'] = 'Lista kanałów STM'; $_LANG['Network Devices Management'] = 'Zarz±dzanie urz±dzeniami sieciowymi'; $_LANG['New Channel'] = 'Nowy kanał'; $_LANG['Night Downceil:'] = 'Nocny downceil:'; $_LANG['Night Upceil:'] = 'Nocny upceil:'; $_LANG['No such channels in database.'] = 'Brak kanałów w bazie danych.'; -$_LANG['Removing channel $0'] = 'Usuwanie kanału $0'; +$_LANG['Removing channel $a'] = 'Usuwanie kanału $a'; $_LANG['This field must contain number greater than 8!'] = 'To pole musi zawieraæ liczbê wiêksz± od 8!'; $_LANG['TTL'] = 'TTL'; $_LANG['Add device to the channel'] = 'Dodaj urz±dzenie do kanału'; @@ -2350,9 +2350,9 @@ $_LANG['Add MAC address'] = 'Dodaj adres MAC'; $_LANG['Accounting:'] = 'Naliczanie:'; $_LANG['check all'] = 'zaznacz wszystkie'; -$_LANG['Liability Edit: $0'] = 'Edycja zobowi±zania: $0'; +$_LANG['Liability Edit: $a'] = 'Edycja zobowi±zania: $a'; $_LANG['New Liability'] = 'Nowe zobowi±zanie'; -$_LANG['New Liability: $0'] = 'Nowe zobowi±zanie: $0'; +$_LANG['New Liability: $a'] = 'Nowe zobowi±zanie: $a'; $_LANG['Numbering Plan:'] = 'Plan numeracyjny:'; $_LANG['Payment Type:'] = 'Typ płatno¶ci:'; $_LANG['Select liability type'] = 'Wybierz typ zobowi±zania'; @@ -2365,10 +2365,10 @@ $_LANG['transfer/cash'] = 'przelew/gotówka'; $_LANG['with settlement'] = 'z wyrównaniem'; $_LANG['Liability\'s Options:'] = 'Opcje zobowi±zania:'; -$_LANG['Channel Devices ($0):'] = 'Urz±dzenia w kanale ($0)'; -$_LANG['Channel Nodes ($0):'] = 'Komputery w kanale ($0)'; +$_LANG['Channel Devices ($a):'] = 'Urz±dzenia w kanale ($a)'; +$_LANG['Channel Nodes ($a):'] = 'Komputery w kanale ($a)'; $_LANG['Default payment type not defined!'] = 'Domy¶lny typ płatno¶ci nie zdefiniowany!'; -$_LANG['Devices ($0):'] = 'Urz±dzenia ($0)'; +$_LANG['Devices ($a):'] = 'Urz±dzenia ($a)'; $_LANG['No devices found in database.'] = 'Nie znaleziono urz±dzeń w bazie danych.'; $_LANG['No nodes found in database.'] = 'Nie znaleziono komputerów w bazie danych.'; $_LANG['Select default invoices payment type'] = 'Wybierz domy¶lny typ płatno¶ci faktury'; @@ -2381,12 +2381,12 @@ $_LANG['Enter zip code of service address (optional)'] = 'WprowadŒ kod pocztowy dla adresu do dorêczeń (opcjonalnie)'; $_LANG['All cash operations from that package will be lost.'] = 'Wszystkie operacje kasowe z tego pakietu zostan± usuniête.'; $_LANG['Are you sure, you want to delete this package and related operations?'] = 'Czy na pewno chcesz usun±æ t± paczkê i powi±zane operacje?'; -$_LANG['Do you want to remove package "$0"?'] = 'Czy chesz usun±æ paczkê "$0"?'; +$_LANG['Do you want to remove package "$a"?'] = 'Czy chesz usun±æ paczkê "$a"?'; $_LANG['Filename:'] = 'Nazwa pliku:'; -$_LANG['last $0 packages'] = 'ostatnie $0 paczek'; +$_LANG['last $a packages'] = 'ostatnie $a paczek'; $_LANG['Packages:'] = 'Paczki:'; $_LANG['Records:'] = 'Rekordy:'; -$_LANG['Removing package "$0"'] = 'Usuwanie paczki "$0"'; +$_LANG['Removing package "$a"'] = 'Usuwanie paczki "$a"'; $_LANG['There are no packages in database.'] = 'Brak paczek w bazie danych.'; $_LANG['period undefined'] = 'okres niezdefiniowany'; $_LANG['Select time period of tariff accounting'] = 'Wybierz okres naliczania taryfy'; @@ -2397,8 +2397,8 @@ $_LANG['Are you sure, you want to delete this assignment?'] = 'Czy na pewno chcesz usun±æ to powi±zanie?'; $_LANG['Are you sure, you want to delete this promotion?'] = 'Czy na pewno chcesz usun±æ t± promocjê?'; $_LANG['Are you sure, you want to delete this schema?'] = 'Czy na pewno chcesz usun±æ ten schemat?'; -$_LANG['Are you sure, you want to remove promotion \\\'$0\\\'?'] = 'Czy na pewno chcesz usun±æ promocjê \\\'$0\\\'?'; -$_LANG['Are you sure, you want to remove schema \\\'$0\\\'?'] = 'Czy na pewno chcesz usun±æ schemat \\\'$0\\\'?'; +$_LANG['Are you sure, you want to remove promotion \\\'$a\\\'?'] = 'Czy na pewno chcesz usun±æ promocjê \\\'$a\\\'?'; +$_LANG['Are you sure, you want to remove schema \\\'$a\\\'?'] = 'Czy na pewno chcesz usun±æ schemat \\\'$a\\\'?'; $_LANG['Display this form again, when this promotion is saved'] = 'Wy¶wietl formularz ponownie po dodaniu tej promocji'; $_LANG['Display this form again, when this schema is saved'] = 'Wy¶wietl formularz ponownie po dodaniu tego schematu'; $_LANG['Edit assignment'] = 'Edytuj powi±zanie'; @@ -2407,23 +2407,23 @@ $_LANG['Enter schema name'] = 'WprowadŒ nazwê schematu'; $_LANG['Enter subscription value for specified period'] = 'WprowadŒ kwotê abonamentu w wybranym okresie'; $_LANG['List of promotions'] = 'Lista promocji'; -$_LANG['Months $0-$1'] = 'M-ce $0-$1'; -$_LANG['Month $0'] = 'M-c $0'; +$_LANG['Months $a-$b'] = 'M-ce $a-$b'; +$_LANG['Month $a'] = 'M-c $a'; $_LANG['New Promotion'] = 'Nowa promocja'; $_LANG['New Schema'] = 'Nowy schemat'; $_LANG['Periods:'] = 'Okresy:'; $_LANG['Promotion:'] = 'Promocja:'; $_LANG['Promotions'] = 'Promocje'; $_LANG['Promotions List'] = 'Lista promocji'; -$_LANG['Promotion\'s Schemas ($0):'] = 'Schematy promocji ($0)'; -$_LANG['Promotion\'s Tariffs ($0):'] = 'Taryfy promocji ($0)'; -$_LANG['Promotion Edit: $0'] = 'Edycja promocji: $0'; -$_LANG['Promotion Info: $0'] = 'Informacje o promocji: $0'; +$_LANG['Promotion\'s Schemas ($a):'] = 'Schematy promocji ($a)'; +$_LANG['Promotion\'s Tariffs ($a):'] = 'Taryfy promocji ($a)'; +$_LANG['Promotion Edit: $a'] = 'Edycja promocji: $a'; +$_LANG['Promotion Info: $a'] = 'Informacje o promocji: $a'; $_LANG['Promotion name is required!'] = 'Nazwa promocji jest wymagana!'; $_LANG['Schemas:'] = 'Schematy:'; -$_LANG['Schema\'s Tariffs ($0):'] = 'Taryfy schematu ($0)'; -$_LANG['Schema Edit: $0'] = 'Edycja schematu: $0'; -$_LANG['Schema Info: $0'] = 'Informacje o schemacie: $0'; +$_LANG['Schema\'s Tariffs ($a):'] = 'Taryfy schematu ($a)'; +$_LANG['Schema Edit: $a'] = 'Edycja schematu: $a'; +$_LANG['Schema Info: $a'] = 'Informacje o schemacie: $a'; $_LANG['Schema name is required!'] = 'Nazwa schematu jest wymagana!'; $_LANG['Select length of the period (in months)'] = 'Wybierz długo¶æ okresu (w miesi±cach)'; $_LANG['Select subscription'] = 'Wybierz taryfê'; @@ -2452,7 +2452,7 @@ $_LANG['SMS message is empty!'] = 'Wiadomo¶æ SMS jest pusta!'; $_LANG['First name cannot be empty!'] = 'Pole Imiê nie może byæ puste!'; $_LANG['Last/Company name cannot be empty!'] = 'Pole Nazwisko/Nazwa firmy nie może byæ puste!'; -$_LANG['Warning! Debug mode (using phone $0).'] = 'UWAGA! Tryb debugowania (używam numeru $0).'; +$_LANG['Warning! Debug mode (using phone $a).'] = 'UWAGA! Tryb debugowania (używam numeru $a).'; $_LANG['RBE'] = 'EDG/KRS'; $_LANG['ICN'] = 'Dow. os.'; $_LANG['Option'] = 'Opcja'; @@ -2487,7 +2487,7 @@ $_LANG['Enter category name'] = 'Podaj nazwê kategorii'; $_LANG['Owners:'] = 'Wła¶ciciele:'; -$_LANG['Are you sure, you want to remove category \\\'$0\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ kategoriê \\\'$0\\\'?'; +$_LANG['Are you sure, you want to remove category \\\'$a\\\'?'] = 'Jeste¶ pewien, że chcesz usun±æ kategoriê \\\'$a\\\'?'; $_LANG['Categories:'] = 'Kategorie:'; $_LANG['Category'] = 'Kategoria'; $_LANG['Category:'] = 'Kategoria'; @@ -2496,10 +2496,10 @@ $_LANG['Category name must be defined!'] = 'Kategoria musi posiadaæ swoj± nazwê!'; $_LANG['Category with specified name already exists!'] = 'Kategoria o podanej nazwie już istnieje!'; $_LANG['New Category'] = 'Nowa kategoria'; -$_LANG['Remove category ID: $0'] = 'Usuń kategoriê: $0'; -$_LANG['Do you want to remove category called $0?'] = 'Czy chcesz usun±æ kategoriê $0?'; -$_LANG['Category Edit: $0'] = 'Edycja kategorii: $0'; -$_LANG['Category Info: $0'] = 'Informacje o kategorii: $0'; +$_LANG['Remove category ID: $a'] = 'Usuń kategoriê: $a'; +$_LANG['Do you want to remove category called $a?'] = 'Czy chcesz usun±æ kategoriê $a?'; +$_LANG['Category Edit: $a'] = 'Edycja kategorii: $a'; +$_LANG['Category Info: $a'] = 'Informacje o kategorii: $a'; $_LANG['Categories List'] = 'Lista kategorii'; $_LANG['List of categories'] = 'Lista kategorii'; $_LANG['Add new category'] = 'Utworzenie nowej kategorii'; From cvs w lms.org.pl Fri Oct 14 18:09:10 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:10 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/helpdesk/locale/lt (strings.php) Message-ID: <20111014160910.1F91030278B7@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:10 Author: chilek Path: /cvsroot/lms/userpanel/modules/helpdesk/locale/lt Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/helpdesk/locale/lt/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/helpdesk/locale/lt/strings.php diff -u lms/userpanel/modules/helpdesk/locale/lt/strings.php:1.5 lms/userpanel/modules/helpdesk/locale/lt/strings.php:1.6 --- lms/userpanel/modules/helpdesk/locale/lt/strings.php:1.5 Tue Jan 18 09:12:35 2011 +++ lms/userpanel/modules/helpdesk/locale/lt/strings.php Fri Oct 14 18:09:10 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:35 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:10 chilek Exp $ */ $_LANG['Allows you to contact with network administrator'] = 'LeidŸia Jums susisiekti su administratoriumi'; @@ -50,7 +50,7 @@ $_LANG['Number:'] = 'Numeris:'; $_LANG['open'] = 'atviras'; $_LANG['Request history'] = 'Pračym? istorija'; -$_LANG['Request No. $0'] = 'Pračymas Nr. $0'; +$_LANG['Request No. $a'] = 'Pračymas Nr. $a'; $_LANG['resolved'] = 'ičsprêstas'; $_LANG['- select queue -'] = '- pasirink eilê -'; $_LANG['- select user -'] = '- pasirink vartotoj± -'; From cvs w lms.org.pl Fri Oct 14 18:09:07 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:07 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/lib/locale/lt (strings.php) Message-ID: <20111014160907.D247630278AB@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:07 Author: chilek Path: /cvsroot/lms/userpanel/lib/locale/lt Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/locale/lt/strings.php.diff?&r1=1.4&r2=1.5 Index: lms/userpanel/lib/locale/lt/strings.php diff -u lms/userpanel/lib/locale/lt/strings.php:1.4 lms/userpanel/lib/locale/lt/strings.php:1.5 --- lms/userpanel/lib/locale/lt/strings.php:1.4 Tue Jan 18 09:12:32 2011 +++ lms/userpanel/lib/locale/lt/strings.php Fri Oct 14 18:09:07 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.4 2011/01/18 08:12:32 alec Exp $ + * $Id: strings.php,v 1.5 2011/10/14 16:09:07 chilek Exp $ * LT VERSION BY ETANETAS ver.0.1 */ @@ -29,7 +29,7 @@ $_LANG['and'] = 'ir'; $_LANG['Cancel'] = 'Panaikink'; $_LANG['classic'] = 'klasikinis'; -$_LANG['Configure Module: $0'] = 'Modulio konfig?racija: $0'; +$_LANG['Configure Module: $a'] = 'Modulio konfig?racija: $a'; $_LANG['Customer ID:'] = 'Kliento ID:'; $_LANG['Customers\' rights'] = 'Klient? ?galiojimai'; $_LANG['Database errors occurred!'] = 'Atsirado duomen? baz?s aptarnavimo klaid?!'; @@ -42,14 +42,14 @@ $_LANG['Error:'] = 'Klaida:'; $_LANG['Error!'] = 'Klaida!'; $_LANG['For more information see'] = 'Kad suŸinotum?te daugiau informacijos pasiŸi?r?kite'; -$_LANG['Function $0 in module $1 not found!'] = 'Funkcija $0 modulyje $1 nerasta!'; +$_LANG['Function $a in module $b not found!'] = 'Funkcija $a modulyje $b nerasta!'; $_LANG['Hint style:'] = 'UŸuominos stilius:'; -$_LANG['Idle time limit exceeded ($0 sec.)'] = 'Virčytas neveiklumo laiko limitas ($0 sek.)'; +$_LANG['Idle time limit exceeded ($a sec.)'] = 'Virčytas neveiklumo laiko limitas ($a sek.)'; $_LANG['Login'] = 'Prisijunk'; $_LANG['Basic Configuration:'] = 'Pagrindin? konfig?racija:'; $_LANG['modern'] = 'čiuolaikinis'; $_LANG['Module'] = 'Modulis'; -$_LANG['Module $0 not found!'] = 'Modulis $0 nerastas!'; +$_LANG['Module $a not found!'] = 'Modulis $a nerastas!'; $_LANG['Module Configuration:'] = 'Modulio konfig?racija:'; $_LANG['monthly'] = 'per m?nes?'; $_LANG['No modules found!'] = 'Nerstas nei vienas modulis!'; @@ -68,7 +68,7 @@ $_LANG['Userpanel Configuration'] = 'Vartotojo panel?s konfig?racija'; $_LANG['Userpanel design style'] = 'Vartotojo panel?s dizainas'; $_LANG['Userpanel hints style. Chose modern for animated assistant, classic for tips in LMS style, or none to disable hints displaying'] = 'UŸuominos stilius Vartotojo panel?je. Pasirink čiuolaikin?, kad rodyt? animuot± asistent±, klasikin? ? uŸuomina LMS stiliumi arba jokio, kad ičjungtum uŸuomin? rodym±'; -$_LANG['Userpanel module $0 not found!'] = 'Nerastas modulis $0!'; +$_LANG['Userpanel module $a not found!'] = 'Nerastas modulis $a!'; $_LANG['Userpanel Rights:'] = '?galiojimai Vartotojo panel?je:'; $_LANG['Userpanel style:'] = 'Vartotojo panel?s stilius:'; $_LANG['VCS'] = 'wBOK'; From cvs w lms.org.pl Fri Oct 14 18:09:08 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:08 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/finances/locale/lt (strings.php) Message-ID: <20111014160908.D724B30278AF@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:08 Author: chilek Path: /cvsroot/lms/userpanel/modules/finances/locale/lt Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/locale/lt/strings.php.diff?&r1=1.6&r2=1.7 Index: lms/userpanel/modules/finances/locale/lt/strings.php diff -u lms/userpanel/modules/finances/locale/lt/strings.php:1.6 lms/userpanel/modules/finances/locale/lt/strings.php:1.7 --- lms/userpanel/modules/finances/locale/lt/strings.php:1.6 Thu Apr 14 01:17:38 2011 +++ lms/userpanel/modules/finances/locale/lt/strings.php Fri Oct 14 18:09:08 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.6 2011/04/13 23:17:38 chilek Exp $ + * $Id: strings.php,v 1.7 2011/10/14 16:09:08 chilek Exp $ */ -$_LANG['$0 dollars $1 cents'] = '$0 Lt? $1 cnt.'; +$_LANG['$a dollars $b cents'] = '$a Lt? $b cnt.'; $_LANG['Accounting day:'] = 'Priskaièiavimo diena:'; $_LANG['Admin:'] = 'Administratorius:'; $_LANG['After:'] = 'Po:'; @@ -33,7 +33,7 @@ $_LANG['Balance'] = 'Balansas'; $_LANG['Cancel'] = 'Panaikink'; $_LANG['Click here to print payment form'] = 'Paspauskite èia, kad ičspausdintum?te ?mokos form±'; -$_LANG['Customer No.: $0'] = 'Kliento numeris: $0'; +$_LANG['Customer No.: $a'] = 'Kliento numeris: $a'; $_LANG['Date:'] = 'Data:'; $_LANG['Deadline:'] = 'Mok?jimo terminas:'; $_LANG['Description:'] = 'Apračas:'; @@ -46,7 +46,7 @@ $_LANG['Gross Value:'] = 'Bruto vert?:'; $_LANG['in it:'] = '?skaitant:'; $_LANG['Invoice:'] = 'Fakt?ra:'; -$_LANG['Invoice No. $0'] = 'PVM Fakt?ra Nr.$0'; +$_LANG['Invoice No. $a'] = 'PVM Fakt?ra Nr.$a'; $_LANG['Invoices'] = 'Fakt?ros'; $_LANG['In words:'] = 'źodŸiais:'; $_LANG['Module Configuration:'] = 'Modulio konfiguracija:'; @@ -56,7 +56,7 @@ $_LANG['No such transactions on your account.'] = 'J?s? s±skaitoje n?ra joki? pavedim?.'; $_LANG['Notes:'] = 'Pastabos:'; $_LANG['ORIGINAL'] = 'ORIGINALAS'; -$_LANG['Payment for invoice No. $0'] = 'Mok?jimas pagal fakt?r± Nr. $0'; +$_LANG['Payment for invoice No. $a'] = 'Mok?jimas pagal fakt?r± Nr. $a'; $_LANG['Payment type:'] = 'Mok?jimo tipas:'; $_LANG['Period:'] = 'Laikotarpis:'; $_LANG['[ Print ]'] = '[ Spausdink ]'; @@ -90,7 +90,7 @@ $_LANG['You haven\'t got any assigned subscriptions.'] = 'Neturi priskirt? tarif?'; $_LANG['Your balance'] = 'Tavo s±skaita'; $_LANG['Your subscriptions'] = 'Tavo ?kainiai'; -$_LANG['monthly ($0)'] = 'per men?s? ($0)'; +$_LANG['monthly ($a)'] = 'per men?s? ($a)'; $_LANG['Reason:'] = 'PrieŸastis:'; ?> From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/help/templates (setup.html) Message-ID: <20111014160909.CC88E30278B5@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/help/templates Modified: setup.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/help/templates/setup.html.diff?&r1=1.1&r2=1.2 Index: lms/userpanel/modules/help/templates/setup.html diff -u lms/userpanel/modules/help/templates/setup.html:1.1 lms/userpanel/modules/help/templates/setup.html:1.2 --- lms/userpanel/modules/help/templates/setup.html:1.1 Fri Jun 13 11:15:19 2008 +++ lms/userpanel/modules/help/templates/setup.html Fri Oct 14 18:09:09 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -13,7 +13,7 @@ {include file=$treefile tree=$tree treefile=$treefile} {else}


-
{t 0="" 1=""}There is no Help Center tree. Use $0this form$1 to add root item.{/t}
+
{t a="" b=""}There is no Help Center tree. Use $athis form$b to add root item.{/t}



{/if} From cvs w lms.org.pl Fri Oct 14 18:09:10 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:10 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/helpdesk/locale/pl (strings.php) Message-ID: <20111014160910.3E9F630278B8@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:10 Author: chilek Path: /cvsroot/lms/userpanel/modules/helpdesk/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/helpdesk/locale/pl/strings.php.diff?&r1=1.7&r2=1.8 Index: lms/userpanel/modules/helpdesk/locale/pl/strings.php diff -u lms/userpanel/modules/helpdesk/locale/pl/strings.php:1.7 lms/userpanel/modules/helpdesk/locale/pl/strings.php:1.8 --- lms/userpanel/modules/helpdesk/locale/pl/strings.php:1.7 Fri Sep 16 22:48:18 2011 +++ lms/userpanel/modules/helpdesk/locale/pl/strings.php Fri Oct 14 18:09:10 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.7 2011/09/16 20:48:18 chilek Exp $ + * $Id: strings.php,v 1.8 2011/10/14 16:09:10 chilek Exp $ */ $_LANG['Allows you to contact with network administrator'] = 'Pozwala Ci skontaktowaæ siê z administratorem'; @@ -48,7 +48,7 @@ $_LANG['Number:'] = 'Numer:'; $_LANG['open'] = 'otwarty'; $_LANG['Request history'] = 'Historia zgłoszeń'; -$_LANG['Request No. $0'] = 'Zgłoszenie Nr $0'; +$_LANG['Request No. $a'] = 'Zgłoszenie Nr $a'; $_LANG['resolved'] = 'rozwi±zany'; $_LANG['- select queue -'] = '- wybierz kolejkê -'; $_LANG['- select user -'] = '- wybierz użytkownika -'; From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/help/locale/pl (strings.php) Message-ID: <20111014160909.89FC030278B3@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/help/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/help/locale/pl/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/help/locale/pl/strings.php diff -u lms/userpanel/modules/help/locale/pl/strings.php:1.5 lms/userpanel/modules/help/locale/pl/strings.php:1.6 --- lms/userpanel/modules/help/locale/pl/strings.php:1.5 Tue Jan 18 09:12:34 2011 +++ lms/userpanel/modules/help/locale/pl/strings.php Fri Oct 14 18:09:09 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:34 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:09 chilek Exp $ */ $_LANG['Add'] = 'Dodaj'; @@ -44,7 +44,7 @@ $_LANG['Runs problems solving center'] = 'Uruchamia centrum rozwi±zywania problemów'; $_LANG['Select:'] = 'Wybierz:'; $_LANG['Submit'] = 'Zapisz'; -$_LANG['There is no Help Center tree. Use $0this form$1 to add root item.'] = 'Nie ma jeszcze struktury Centrum Pomocy. Użyj $0tego formularza$1 aby dodaæ główn± pozycjê.'; +$_LANG['There is no Help Center tree. Use $athis form$b to add root item.'] = 'Nie ma jeszcze struktury Centrum Pomocy. Użyj $atego formularza$b aby dodaæ główn± pozycjê.'; $_LANG['This cannot be empty'] = 'To nie może byæ puste'; $_LANG['This module is not configured yet.'] = 'Ten moduł nie jest jeszcze skonfigurowany.'; $_LANG['This module shows problems solving center'] = 'Moduł ten wy¶wietla centrum rozwi±zywania problemów'; From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/help/locale/sk (strings.php) Message-ID: <20111014160909.A907A30278B4@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/help/locale/sk Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/help/locale/sk/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/help/locale/sk/strings.php diff -u lms/userpanel/modules/help/locale/sk/strings.php:1.5 lms/userpanel/modules/help/locale/sk/strings.php:1.6 --- lms/userpanel/modules/help/locale/sk/strings.php:1.5 Tue Jan 18 09:12:34 2011 +++ lms/userpanel/modules/help/locale/sk/strings.php Fri Oct 14 18:09:09 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:34 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:09 chilek Exp $ */ $_LANG['Add'] = 'Prida»'; @@ -44,7 +44,7 @@ $_LANG['Runs problems solving center'] = 'Spustí centrum riečenia problémov'; $_LANG['Select:'] = 'Vybra»:'; $_LANG['Submit'] = 'UloŸi»'; -$_LANG['There is no Help Center tree. Use $0this form$1 to add root item.'] = 'Help Center nemá čtruktúru. PouŸí $0tento formulár$1 pre pridanie koreòovej poloŸky.'; +$_LANG['There is no Help Center tree. Use $athis form$b to add root item.'] = 'Help Center nemá čtruktúru. PouŸí $atento formulár$b pre pridanie koreòovej poloŸky.'; $_LANG['This cannot be empty'] = 'To nemôŸe by» prázdne'; $_LANG['This module is not configured yet.'] = 'Tento modul ečte nie je nakonfigurovanę.'; $_LANG['This module shows problems solving center'] = 'Tento modul zobrazuje centrum riečenia problémov'; From cvs w lms.org.pl Fri Oct 14 18:09:03 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:03 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/traffic/templates (printtraffic.html) Message-ID: <20111014160903.2542C30278A6@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:03 Author: chilek Path: /cvsroot/lms/modules/traffic/templates Modified: printtraffic.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/traffic/templates/printtraffic.html.diff?&r1=1.2&r2=1.3 Index: lms/modules/traffic/templates/printtraffic.html diff -u lms/modules/traffic/templates/printtraffic.html:1.2 lms/modules/traffic/templates/printtraffic.html:1.3 --- lms/modules/traffic/templates/printtraffic.html:1.2 Fri Dec 15 23:03:36 2006 +++ lms/modules/traffic/templates/printtraffic.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="clearheader.html"} - +
@@ -8,7 +8,7 @@ LMS {$layout.lmsv} @ {$layout.hostname}
{$smarty.now|date_format:"%A, %x"}
- {t 0=$layout.logname}Created by: $0{/t} + {t a=$layout.logname}Created by: $a{/t}
From cvs w lms.org.pl Fri Oct 14 18:09:10 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:10 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/templates (header.html) Message-ID: <20111014160910.843E630278BA@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:10 Author: chilek Path: /cvsroot/lms/userpanel/templates Modified: header.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/templates/header.html.diff?&r1=1.3&r2=1.4 Index: lms/userpanel/templates/header.html diff -u lms/userpanel/templates/header.html:1.3 lms/userpanel/templates/header.html:1.4 --- lms/userpanel/templates/header.html:1.3 Fri Sep 3 12:22:38 2010 +++ lms/userpanel/templates/header.html Fri Oct 14 18:09:10 2011 @@ -1,5 +1,5 @@ - + @@ -25,6 +25,7 @@ {elseif $_config.userpanel.hint eq 'classic'} -{popup_init src="style/default/overlib.js"} + + {/if} {body} \ No newline at end of file From cvs w lms.org.pl Fri Oct 14 18:09:07 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:07 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel (index.php) Message-ID: <20111014160907.6387030278A9@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:07 Author: chilek Path: /cvsroot/lms/userpanel Modified: index.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/index.php.diff?&r1=1.16&r2=1.17 Index: lms/userpanel/index.php diff -u lms/userpanel/index.php:1.16 lms/userpanel/index.php:1.17 --- lms/userpanel/index.php:1.16 Wed Aug 31 12:58:13 2011 +++ lms/userpanel/index.php Fri Oct 14 18:09:07 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.16 2011/08/31 10:58:13 alec Exp $ + * $Id: index.php,v 1.17 2011/10/14 16:09:07 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOUR CONFIG FILE @@ -91,8 +91,14 @@ // test for proper version of Smarty -if(version_compare('2.6.0', $SMARTY->_version) > 0) - die('Wrong version of Smarty engine! We support only Smarty-2.x greater than 2.6.0.'); +if (constant('Smarty::SMARTY_VERSION')) + $ver_chunks = preg_split('/-/', Smarty::SMARTY_VERSION); +else + $ver_chunks = NULL; +if (count($ver_chunks) != 2 || version_compare('3.0', $ver_chunks[1]) > 0) + die('Wrong version of Smarty engine! We support only Smarty-3.x greater than 3.0.'); + +define('SMARTY_VERSION', $ver_chunks[1]); // Read configuration of LMS-UI from database @@ -145,13 +151,13 @@ @include(USERPANEL_MODULES_DIR.$filename.'/locale/'.$_ui_language.'/strings.php'); include(USERPANEL_MODULES_DIR.$filename.'/configuration.php'); } -}; +}; $SMARTY->assign('_config',$CONFIG); -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); $SMARTY->template_dir = USERPANEL_DIR.'/templates/'; $SMARTY->compile_dir = SMARTY_COMPILE_DIR; $SMARTY->debugging = chkconfig($CONFIG['phpui']['smarty_debug']); @@ -160,12 +166,12 @@ $layout['upv'] = $USERPANEL->_version.' ('.$USERPANEL->_revision.'/'.$SESSION->_revision.')'; $layout['lmsdbv'] = $DB->_version; $layout['lmsv'] = $LMS->_version; -$layout['smarty_version'] = $SMARTY->_version; +$layout['smarty_version'] = SMARTY_VERSION; $layout['hostname'] = hostname(); $layout['dberrors'] =& $DB->errors; -$SMARTY->assign_by_ref('modules', $USERPANEL->MODULES); -$SMARTY->assign_by_ref('layout', $layout); +$SMARTY->assignByRef('modules', $USERPANEL->MODULES); +$SMARTY->assignByRef('layout', $layout); header('X-Powered-By: LMS/'.$layout['lmsv']); @@ -199,7 +205,7 @@ $to_execute = 'module_'.$function; $to_execute(); } else { - $layout['error'] = trans('Function $0 in module $1 not found!', $function, $module); + $layout['error'] = trans('Function $a in module $b not found!', $function, $module); $SMARTY->display('error.html'); } } @@ -226,7 +232,7 @@ } else { - $layout['error'] = trans('Module $0 not found!', $module); + $layout['error'] = trans('Module $a not found!', $module); $SMARTY->display('error.html'); } From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/helpdesk (functions.php) Message-ID: <20111014160910.0050B30278B6@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/helpdesk Modified: functions.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/helpdesk/functions.php.diff?&r1=1.9&r2=1.10 Index: lms/userpanel/modules/helpdesk/functions.php diff -u lms/userpanel/modules/helpdesk/functions.php:1.9 lms/userpanel/modules/helpdesk/functions.php:1.10 --- lms/userpanel/modules/helpdesk/functions.php:1.9 Sat Sep 17 13:32:55 2011 +++ lms/userpanel/modules/helpdesk/functions.php Fri Oct 14 18:09:09 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: functions.php,v 1.9 2011/09/17 11:32:55 chilek Exp $ + * $Id: functions.php,v 1.10 2011/10/14 16:09:09 chilek Exp $ */ if (defined('USERPANEL_SETUPMODE')) @@ -266,7 +266,7 @@ $ticket['id'] = $_GET['id']; - $SMARTY->assign('title', trans('Request No. $0', sprintf('%06d',$ticket['ticketid']))); + $SMARTY->assign('title', trans('Request No. $a', sprintf('%06d',$ticket['ticketid']))); if($ticket['customerid'] == $SESSION->id) { @@ -292,7 +292,7 @@ $SMARTY->assign('helpdesk', $helpdesk); } - $SMARTY->assign('title', trans('Request No. $0', sprintf('%06d',$ticket['ticketid']))); + $SMARTY->assign('title', trans('Request No. $a', sprintf('%06d',$ticket['ticketid']))); if($ticket['customerid'] == $SESSION->id) { $SMARTY->assign('ticket', $ticket); From cvs w lms.org.pl Fri Oct 14 18:09:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/core/actions (init.php) Message-ID: <20111014160902.5F2D330278A2@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:02 Author: chilek Path: /cvsroot/lms/modules/core/actions Modified: init.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/actions/init.php.diff?&r1=1.8&r2=1.9 Index: lms/modules/core/actions/init.php diff -u lms/modules/core/actions/init.php:1.8 lms/modules/core/actions/init.php:1.9 --- lms/modules/core/actions/init.php:1.8 Tue Jan 18 09:12:30 2011 +++ lms/modules/core/actions/init.php Fri Oct 14 18:09:02 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: init.php,v 1.8 2011/01/18 08:12:30 alec Exp $ + * $Id: init.php,v 1.9 2011/10/14 16:09:02 chilek Exp $ */ // Include required files (including sequence is important) @@ -43,10 +43,10 @@ $LMS->ui_lang = $_ui_language; $LMS->lang = $_language; -$SMARTY->assign_by_ref('_LANG', $_LANG); -$SMARTY->assign_by_ref('LANGDEFS', $LANGDEFS); -$SMARTY->assign_by_ref('_ui_language', $LMS->ui_lang); -$SMARTY->assign_by_ref('_language', $LMS->lang); +$SMARTY->assignByRef('_LANG', $_LANG); +$SMARTY->assignByRef('LANGDEFS', $LANGDEFS); +$SMARTY->assignByRef('_ui_language', $LMS->ui_lang); +$SMARTY->assignByRef('_language', $LMS->lang); $SMARTY->assign('_dochref', is_dir('doc/html/'.$LMS->ui_lang) ? 'doc/html/'.$LMS->ui_lang.'/' : 'doc/html/en/'); $SMARTY->assign('_config',$CONFIG); @@ -59,7 +59,7 @@ $layout['dberrors'] =& $DB->errors; $layout['popup'] = isset($_GET['popup']) ? true : false; -$SMARTY->assign_by_ref('layout', $layout); +$SMARTY->assignByRef('layout', $layout); $SMARTY->assign('_module', $ExecStack->module); $SMARTY->assign('_action', $ExecStack->action); From cvs w lms.org.pl Fri Oct 14 18:09:07 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:07 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/lib (3 files) Message-ID: <20111014160907.9BCB430278AA@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:07 Author: chilek Path: /cvsroot/lms/userpanel/lib Modified: LMS.setup.php Session.class.php smarty_addons.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/LMS.setup.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/Session.class.php.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/smarty_addons.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/lib/LMS.setup.php diff -u lms/userpanel/lib/LMS.setup.php:1.8 lms/userpanel/lib/LMS.setup.php:1.9 --- lms/userpanel/lib/LMS.setup.php:1.8 Tue Jan 18 09:12:32 2011 +++ lms/userpanel/lib/LMS.setup.php Fri Oct 14 18:09:07 2011 @@ -21,57 +21,55 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMS.setup.php,v 1.8 2011/01/18 08:12:32 alec Exp $ + * $Id: LMS.setup.php,v 1.9 2011/10/14 16:09:07 chilek Exp $ */ - + define('USERPANEL_SETUPMODE', 1); // register smarty extensions -function module_get_template ($tpl_name, &$tpl_source, &$smarty_obj) +function module_get_template($tpl_name, &$tpl_source, $smarty_obj) { - global $LMS; - $template = explode(':', $tpl_name); - $template_path = $LMS->CONFIG['directories']['userpanel_dir'].'/modules/'.$template[0].'/templates/'.$template[1]; - if (file_exists($template_path)) - { - $tpl_source = file_get_contents($template_path); - return true; - } else { - return false; - } + global $LMS; + $template = explode(':', $tpl_name); + $template_path = $LMS->CONFIG['directories']['userpanel_dir'].'/modules/'.$template[0].'/templates/'.$template[1]; + if (file_exists($template_path)) + { + $tpl_source = file_get_contents($template_path); + return true; + } else + return false; } -function module_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj) +function module_get_timestamp($tpl_name, &$tpl_timestamp, $smarty_obj) { - global $LMS; - $template = explode(':', $tpl_name); - $template_path = $LMS->CONFIG['directories']['userpanel_dir'].'/modules/'.$template[0].'/templates/'.$template[1]; - if (file_exists($template_path)) - { - $tpl_timestamp = filectime($template_path); - return true; - } else { - return false; - } + global $LMS; + $template = explode(':', $tpl_name); + $template_path = $LMS->CONFIG['directories']['userpanel_dir'].'/modules/'.$template[0].'/templates/'.$template[1]; + if (file_exists($template_path)) + { + $tpl_timestamp = filectime($template_path); + return true; + } else + return false; } function module_get_secure($tpl_name, &$smarty_obj) { - // assume all templates are secure - return true; + // assume all templates are secure + return true; } function module_get_trusted($tpl_name, &$smarty_obj) { - // not used for templates + // not used for templates } // register the resource name "module" -$SMARTY->register_resource('module', array('module_get_template', - 'module_get_timestamp', - 'module_get_secure', - 'module_get_trusted')); +$SMARTY->registerResource('module', array('module_get_template', + 'module_get_timestamp', + 'module_get_secure', + 'module_get_trusted')); // Include locale file (main) @include(USERPANEL_DIR.'/lib/locale/'.$_ui_language.'/strings.php'); @@ -84,51 +82,51 @@ $dh = opendir(USERPANEL_MODULES_DIR); while (false !== ($filename = readdir($dh))) { - if ((preg_match('/^[a-zA-Z0-9]/',$filename)) && (is_dir(USERPANEL_MODULES_DIR.$filename)) && file_exists(USERPANEL_MODULES_DIR.$filename.'/configuration.php')) - { - @include(USERPANEL_MODULES_DIR.$filename.'/locale/'.$_ui_language.'/strings.php'); - include(USERPANEL_MODULES_DIR.$filename.'/configuration.php'); - } -}; + if ((preg_match('/^[a-zA-Z0-9]/',$filename)) && (is_dir(USERPANEL_MODULES_DIR.$filename)) && file_exists(USERPANEL_MODULES_DIR.$filename.'/configuration.php')) + { + @include(USERPANEL_MODULES_DIR.$filename.'/locale/'.$_ui_language.'/strings.php'); + include(USERPANEL_MODULES_DIR.$filename.'/configuration.php'); + } +}; -$SMARTY->assign_by_ref('menu', $USERPANEL->MODULES); +$SMARTY->assignByRef('menu', $USERPANEL->MODULES); $module = isset($_GET['module']) ? $_GET['module'] : 'userpanel'; // Execute module -$layout['pagetitle'] = trans('Configure Module: $0',$module); +$layout['pagetitle'] = trans('Configure Module: $a',$module); if($module == 'userpanel') - $modulefile_include = USERPANEL_DIR.'/lib/setup_functions.php'; + $modulefile_include = USERPANEL_DIR.'/lib/setup_functions.php'; else - $modulefile_include = file_exists(USERPANEL_MODULES_DIR.$module.'/functions.php') ? USERPANEL_MODULES_DIR.$module.'/functions.php' : NULL; - + $modulefile_include = file_exists(USERPANEL_MODULES_DIR.$module.'/functions.php') ? USERPANEL_MODULES_DIR.$module.'/functions.php' : NULL; + if (isset($modulefile_include)) { - include($modulefile_include); + include($modulefile_include); + + $function = isset($_GET['f']) && $_GET['f']!='' ? $_GET['f'] : 'setup'; - $function = isset($_GET['f']) && $_GET['f']!='' ? $_GET['f'] : 'setup'; - - if (function_exists('module_'.$function)) - { - $to_execute = 'module_'.$function; - $to_execute(); - } - else - { - if ($function=='setup') { - $layout['info'] = trans('This module does not have any configuration settings'); - $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); - } else { - $layout['error'] = trans('Function $0 in module $1 not found!', $function, $module); - $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); - } - } + if (function_exists('module_'.$function)) + { + $to_execute = 'module_'.$function; + $to_execute(); + } + else + { + if ($function=='setup') { + $layout['info'] = trans('This module does not have any configuration settings'); + $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); + } else { + $layout['error'] = trans('Function $a in module $b not found!', $function, $module); + $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); + } + } } else { - $layout['error'] = trans('Userpanel module $0 not found!', $module); - $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); + $layout['error'] = trans('Userpanel module $a not found!', $module); + $SMARTY->display($LMS->CONFIG['directories']['userpanel_dir'].'/templates/setup_error.html'); } ?> Index: lms/userpanel/lib/Session.class.php diff -u lms/userpanel/lib/Session.class.php:1.6 lms/userpanel/lib/Session.class.php:1.7 --- lms/userpanel/lib/Session.class.php:1.6 Tue Jan 18 09:12:32 2011 +++ lms/userpanel/lib/Session.class.php Fri Oct 14 18:09:07 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: Session.class.php,v 1.6 2011/01/18 08:12:32 alec Exp $ + * $Id: Session.class.php,v 1.7 2011/10/14 16:09:07 chilek Exp $ */ require_once('authentication.inc'); @@ -35,7 +35,7 @@ var $islogged = FALSE; var $error; var $_version = '1.11-cvs'; - var $_revision = '$Revision: 1.6 $'; + var $_revision = '$Revision: 1.7 $'; function Session(&$DB,$timeout = 600) { @@ -151,7 +151,7 @@ { if( (time()-$_SESSION['session_timestamp']) > $timeout ) { - $this->error = trans('Idle time limit exceeded ($0 sec.)', $timeout); + $this->error = trans('Idle time limit exceeded ($a sec.)', $timeout); return FALSE; } else Index: lms/userpanel/lib/smarty_addons.php diff -u lms/userpanel/lib/smarty_addons.php:1.5 lms/userpanel/lib/smarty_addons.php:1.6 --- lms/userpanel/lib/smarty_addons.php:1.5 Tue Jan 18 09:12:32 2011 +++ lms/userpanel/lib/smarty_addons.php Fri Oct 14 18:09:07 2011 @@ -21,30 +21,34 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: smarty_addons.php,v 1.5 2011/01/18 08:12:32 alec Exp $ + * $Id: smarty_addons.php,v 1.6 2011/10/14 16:09:07 chilek Exp $ */ // Smarty extensions -function _smarty_block_box($args, $content, &$SMARTY) +function _smarty_block_box($params, $content, &$template, &$repeat) { global $CONFIG; - $title = smarty_block_t($args, $args['title'], $SMARTY); - - $style = $CONFIG['userpanel']['style'] ? $CONFIG['userpanel']['style'] : 'default'; + if (!empty($content)) + { + $title = smarty_block_t($params, $params['title'], $template, $repeat); + + $style = $CONFIG['userpanel']['style'] ? $CONFIG['userpanel']['style'] : 'default'; - if(file_exists('style/'.$style.'/box.html')) - $file = 'style/'.$style.'/box.html'; - elseif(file_exists('style/default/box.html')) - $file = 'style/default/box.html'; + if(file_exists('style/'.$style.'/box.html')) + $file = 'style/'.$style.'/box.html'; + elseif(file_exists('style/default/box.html')) + $file = 'style/default/box.html'; - $SMARTY->assign('boxtitle', $title); - $SMARTY->assign('boxcontent', $content); - return $SMARTY->fetch('../'.$file); + $template->assignGlobal('boxtitle', $title); + $template->assignGlobal('boxcontent', $content); + + return $template->fetch($CONFIG['directories']['userpanel_dir'].'/'.$file); + } } -function _smarty_function_stylefile($args, &$SMARTY) +function _smarty_function_stylefile($params, $template) { global $CONFIG; @@ -57,7 +61,7 @@ return 'style/default/style.css'; } -function _smarty_function_body($args, &$SMARTY) +function _smarty_function_body($params, $template) { global $CONFIG; @@ -68,32 +72,34 @@ elseif(file_exists('style/default/body.html')) $file = 'style/default/body.html'; - return $SMARTY->fetch('../'.$file); + return $template->fetch($CONFIG['directories']['userpanel_dir'].'/'.$file); } -function _smarty_function_userpaneltip($args, &$SMARTY) +function _smarty_function_userpaneltip($params, $template) { global $CONFIG; - $text = smarty_block_t($args, $args['text'], $SMARTY); + $repeat = FALSE; + $text = smarty_block_t($params, $params['text'], $template, $repeat); - $error = str_replace("'",'\\\'',$SMARTY->_tpl_vars['error'][$args['trigger']]); - $error = str_replace('"','"',$error); - $error = str_replace("\r",'',$error); - $error = str_replace("\n",'
',$error); - - $text = str_replace('\'','\\\'',$text); - $text = str_replace('"','"',$text); - $text = str_replace("\r",'',$text); - $text = str_replace("\n",'
',$text); + $tpl = $template->getTemplateVars('error'); + $error = str_replace("'", '\\\'', $tpl[$params['trigger']]); + $error = str_replace('"', '"', $error); + $error = str_replace("\r", '', $error); + $error = str_replace("\n", '
', $error); + + $text = str_replace('\'', '\\\'', $text); + $text = str_replace('"', '"', $text); + $text = str_replace("\r", '', $text); + $text = str_replace("\n", '
', $text); if ($CONFIG['userpanel']['hint']=='classic') { - if($SMARTY->_tpl_vars['error'][$args['trigger']]) + if($tpl[$params['trigger']]) $result = ' onmouseover="return overlib(\''.$error.'\',HAUTO,VAUTO,OFFSETX,15,OFFSETY,15);" onmouseout="nd();" '; - elseif($args['text'] != '') + elseif($params['text'] != '') $result = 'onmouseover="return overlib(\''.$text.'\',HAUTO,VAUTO,OFFSETX,15,OFFSETY,15);" onmouseout="nd();"'; - $result .= ($SMARTY->_tpl_vars['error'][$args['trigger']] ? ($args['bold'] ? ' CLASS="alert bold" ' : ' CLASS="alert" ') : ($args['bold'] ? ' CLASS="bold" ' : '')); + $result .= ($tpl[$params['trigger']] ? ($params['bold'] ? ' CLASS="alert bold" ' : ' CLASS="alert" ') : ($params['bold'] ? ' CLASS="bold" ' : '')); } elseif ($CONFIG['userpanel']['hint']=='none') { @@ -101,59 +107,61 @@ } else { - if($SMARTY->_tpl_vars['error'][$args['trigger']]) + if($tpl[$params['trigger']]) $result = "onmouseover=\"javascript:displayhint('".$error."')\" onmouseout=\"javascript:hidehint()\" "; else $result = "onmouseover=\"javascript:displayhint('".$text."')\" onmouseout=\"javascript:hidehint()\" "; - $result .= ($SMARTY->_tpl_vars['error'][$args['trigger']] ? ($args['bold'] ? ' class="alert bold" ' : ' class="alert" ') : ($args['bold'] ? ' class="bold" ' : '')); + $result .= ($tpl[$params['trigger']] ? ($params['bold'] ? ' class="alert bold" ' : ' class="alert" ') : ($params['bold'] ? ' class="bold" ' : '')); } return $result; } -function _smarty_function_img($args, &$SMARTY) +function _smarty_function_img($params, $template) { global $CONFIG, $_GET; $style = $CONFIG['userpanel']['style'] ? $CONFIG['userpanel']['style'] : 'default'; - if(file_exists('modules/'.$_GET['m'].'/style/'.$style.'/'.$args['src'])) - $file = 'modules/'.$_GET['m'].'/style/'.$style.'/'.$args['src']; - elseif(file_exists('modules/'.$_GET['m'].'/style/default/'.$args['src'])) - $file = 'modules/'.$_GET['m'].'/style/default/'.$args['src']; - elseif(file_exists('style/'.$style.'/'.$args['src'])) - $file = 'style/'.$style.'/'.$args['src']; - elseif(file_exists('style/default/'.$args['src'])) - $file = 'style/default/'.$args['src']; + if(file_exists('modules/'.$_GET['m'].'/style/'.$style.'/'.$params['src'])) + $file = 'modules/'.$_GET['m'].'/style/'.$style.'/'.$params['src']; + elseif(file_exists('modules/'.$_GET['m'].'/style/default/'.$params['src'])) + $file = 'modules/'.$_GET['m'].'/style/default/'.$params['src']; + elseif(file_exists('style/'.$style.'/'.$params['src'])) + $file = 'style/'.$style.'/'.$params['src']; + elseif(file_exists('style/default/'.$params['src'])) + $file = 'style/default/'.$params['src']; $result = '_tpl_vars['error'][$args['trigger']]); - $error = str_replace('"','"',$error); - $error = str_replace("\r",'',$error); - $error = str_replace("\n",'
',$error); - - $text = str_replace('\'','\\\'',$text); - $text = str_replace('"','"',$text); - $text = str_replace("\r",'',$text); - $text = str_replace("\n",'
',$text); + $tpl = $template->getTemplateVars('error'); + $error = str_replace("'", '\\\'', $tpl[$params['trigger']]); + $error = str_replace('"', '"', $error); + $error = str_replace("\r", '', $error); + $error = str_replace("\n", '
', $error); + + $text = str_replace('\'', '\\\'', $text); + $text = str_replace('"', '"', $text); + $text = str_replace("\r", '', $text); + $text = str_replace("\n", '
', $text); if ($CONFIG['userpanel']['hint']=='classic') { - if($SMARTY->_tpl_vars['error'][$args['trigger']]) + if($tpl[$params['trigger']]) $result .= 'onmouseover="return overlib(\''.$error.'\',HAUTO,VAUTO,OFFSETX,15,OFFSETY,15);" onmouseout="nd();" '; - elseif($args['text'] != '') + elseif($params['text'] != '') $result .= 'onmouseover="return overlib(\''.$text.'\',HAUTO,VAUTO,OFFSETX,15,OFFSETY,15);" onmouseout="nd();" '; - $result .= ($SMARTY->_tpl_vars['error'][$args['trigger']] ? ($args['bold'] ? ' class="alert bold" ' : ' class="alert" ') : ($args['bold'] ? ' class="bold" ' : '')); + $result .= ($tpl[$params['trigger']] ? ($params['bold'] ? ' class="alert bold" ' : ' class="alert" ') : ($params['bold'] ? ' class="bold" ' : '')); } elseif ($CONFIG['userpanel']['hint']=='none') { @@ -165,65 +173,63 @@ } } - if($args['width']) $result .= 'width="'.$args['width'].'" '; - if($args['height']) $result .= 'height="'.$args['height'].'" '; - if($args['style']) $result .= 'style="'.$args['style'].'" '; - if($args['border']) $result .= 'border="'.$args['border'].'" '; + if($params['width']) $result .= 'width="'.$params['width'].'" '; + if($params['height']) $result .= 'height="'.$params['height'].'" '; + if($params['style']) $result .= 'style="'.$params['style'].'" '; + if($params['border']) $result .= 'border="'.$params['border'].'" '; $result .= '/>'; return $result; } -function module_get_template($tpl_name, &$tpl_source, &$smarty_obj) +function module_get_template($tpl_name, &$tpl_source, $template) { - global $CONFIG; - $module = $_GET['m']; - $template_path = $CONFIG["directories"]["userpanel_dir"]."/modules/".$module."/templates/".$tpl_name; - if (file_exists($template_path)) - { - $tpl_source = file_get_contents($template_path); - return true; - } else { - return false; - } + global $CONFIG; + $module = $_GET['m']; + $template_path = $CONFIG['directories']['userpanel_dir'].'/modules/'.$module.'/templates/'.$tpl_name; + if (file_exists($template_path)) + { + $tpl_source = file_get_contents($template_path); + return true; + } else + return false; } -function module_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj) +function module_get_timestamp($tpl_name, &$tpl_timestamp, $template) { - global $CONFIG; - $module = $_GET['m']; - $template_path = $CONFIG["directories"]["userpanel_dir"]."/modules/".$module."/templates/".$tpl_name; - if (file_exists($template_path)) - { - $tpl_timestamp = filectime($template_path); - return true; - } else { - return false; - } + global $CONFIG; + $module = $_GET['m']; + $template_path = $CONFIG['directories']['userpanel_dir'].'/modules/'.$module.'/templates/'.$tpl_name; + if (file_exists($template_path)) + { + $tpl_timestamp = filectime($template_path); + return true; + } else + return false; } -function module_get_secure($tpl_name, &$smarty_obj) +function module_get_secure($tpl_name, $template) { - // assume all templates are secure - return true; + // assume all templates are secure + return true; } -function module_get_trusted($tpl_name, &$smarty_obj) +function module_get_trusted($tpl_name, $template) { - // not used for templates + // not used for templates } // register the resource name "module" -$SMARTY->register_resource("module", array("module_get_template", - "module_get_timestamp", - "module_get_secure", - "module_get_trusted")); +$SMARTY->registerResource("module", array("module_get_template", + "module_get_timestamp", + "module_get_secure", + "module_get_trusted")); -$SMARTY->register_block('box', '_smarty_block_box'); -$SMARTY->register_function('userpaneltip','_smarty_function_userpaneltip'); -$SMARTY->register_function('img','_smarty_function_img'); -$SMARTY->register_function('body','_smarty_function_body'); -$SMARTY->register_function('stylefile','_smarty_function_stylefile'); +$SMARTY->registerPlugin('block', 'box', '_smarty_block_box'); +$SMARTY->registerPlugin('function', 'userpaneltip','_smarty_function_userpaneltip'); +$SMARTY->registerPlugin('function', 'img','_smarty_function_img'); +$SMARTY->registerPlugin('function', 'body','_smarty_function_body'); +$SMARTY->registerPlugin('function', 'stylefile','_smarty_function_stylefile'); ?> From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/help/locale/lt (strings.php) Message-ID: <20111014160909.5AC2830278B2@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/help/locale/lt Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/help/locale/lt/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/help/locale/lt/strings.php diff -u lms/userpanel/modules/help/locale/lt/strings.php:1.5 lms/userpanel/modules/help/locale/lt/strings.php:1.6 --- lms/userpanel/modules/help/locale/lt/strings.php:1.5 Tue Jan 18 09:12:34 2011 +++ lms/userpanel/modules/help/locale/lt/strings.php Fri Oct 14 18:09:09 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:34 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:09 chilek Exp $ */ $_LANG['Add'] = 'Prid?k'; @@ -44,7 +44,7 @@ $_LANG['Runs problems solving center'] = 'PaleidŸia problem? čalinimo centr±'; $_LANG['Select:'] = 'Pasirink:'; $_LANG['Submit'] = 'Têsk'; -$_LANG['There is no Help Center tree. Use $0this form$1 to add root item.'] = 'Dar n?ra Pagalbos Cnetro strukt?ros. Pasinaudok čia forma, kad prid?tum pagrindin? punkt±'; +$_LANG['There is no Help Center tree. Use $athis form$b to add root item.'] = 'Dar n?ra Pagalbos Cnetro strukt?ros. Pasinaudok čia forma, kad prid?tum pagrindin? punkt±'; $_LANG['This cannot be empty'] = 'Tai negali b?ti tučèia'; $_LANG['This module is not configured yet.'] = '©is modulis n?ra sukonfiguruotas.'; $_LANG['This module shows problems solving center'] = '©is modulis parodo problem? sprendimo centr±'; From cvs w lms.org.pl Fri Oct 14 18:08:57 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:08:57 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib/locale/lt (strings.php) Message-ID: <20111014160857.4D0EE30278A1@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:08:57 Author: chilek Path: /cvsroot/lms/lib/locale/lt Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/locale/lt/strings.php.diff?&r1=1.12&r2=1.13 Index: lms/lib/locale/lt/strings.php diff -u lms/lib/locale/lt/strings.php:1.12 lms/lib/locale/lt/strings.php:1.13 --- lms/lib/locale/lt/strings.php:1.12 Thu Apr 14 00:44:03 2011 +++ lms/lib/locale/lt/strings.php Fri Oct 14 18:08:57 2011 @@ -21,19 +21,19 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.12 2011/04/13 22:44:03 chilek Exp $ + * $Id: strings.php,v 1.13 2011/10/14 16:08:57 chilek Exp $ */ -$_LANG['$0 ($1 addresses)'] = '$0 ($1 adresas)'; -$_LANG['$0 addresses'] = '$0 adresu'; -$_LANG['$0 ago ($1)'] = '$0 čitam ($1)'; -$_LANG['$0 at least one year old records have been removed.
'] = '$0 ?račai senesni nei metai buvo pačalinti.
'; -$_LANG['$0 dollars $1 cents'] = '$0 lit? $1 cent?'; -$_LANG['$0 months'] = '$0 m?nesi?'; -$_LANG['$0 of $1 ($2): $3 <$4>'] = '$0 $1 ($2): $3 <$4>'; -$_LANG['$0 records after compacting.'] = '$0 ?rač? po archivavimo.'; -$_LANG['$0 records before compacting.
'] = '$0 ?rač? prieč archivavim±.
'; -$_LANG['$0 - removed, $1 - inserted
'] = '$0 - pačalint?, $1 - prid?t?
'; +$_LANG['$a ($b addresses)'] = '$a ($b adresas)'; +$_LANG['$a addresses'] = '$a adresu'; +$_LANG['$a ago ($b)'] = '$a čitam ($b)'; +$_LANG['$a at least one year old records have been removed.
'] = '$a ?račai senesni nei metai buvo pačalinti.
'; +$_LANG['$a dollars $b cents'] = '$a lit? $b cent?'; +$_LANG['$a months'] = '$a m?nesi?'; +$_LANG['$a of $b ($c): $d <$4>'] = '$a $b ($c): $d <$4>'; +$_LANG['$a records after compacting.'] = '$a ?rač? po archivavimo.'; +$_LANG['$a records before compacting.
'] = '$a ?rač? prieč archivavim±.
'; +$_LANG['$a - removed, $b - inserted
'] = '$a - pačalint?, $b - prid?t?
'; $_LANG['30 days'] = '30 dien?'; $_LANG['365 days'] = '365 dien?'; $_LANG['7 days'] = '7 dienos'; @@ -44,7 +44,7 @@ $_LANG['Account'] = '?račas'; $_LANG['Accounts:'] = '?račai:'; $_LANG['Accounted'] = '?račyta'; -$_LANG['Account Edit: $0'] = '?račo redagavimas: $0'; +$_LANG['Account Edit: $a'] = '?račo redagavimas: $a'; $_LANG['Accounting day:'] = 'S±skaitos diena:'; $_LANG['Account payment'] = 'Priskaièiuok'; $_LANG['Account'] = 'S±skaita'; @@ -123,18 +123,18 @@ $_LANG['Answer'] = 'Atsakymas'; $_LANG['Approved By'] = 'Patvirtinti'; $_LANG['Are you sure that you want to logout?'] = 'Ar tikrai norite atsijungti?'; -$_LANG['Are you sure, you want to account ALL debts of customer \\\'$0\\\'?'] = 'Ar tikrai norite atskaityti visas vartotojo gautinas sumas? Jeste¶ pewien, że chcesz rozliczyæ WSZYSTKIE należno¶ci użytkownika \\\'$0\\\'?'; +$_LANG['Are you sure, you want to account ALL debts of customer \\\'$a\\\'?'] = 'Ar tikrai norite atskaityti visas vartotojo gautinas sumas? Jeste¶ pewien, że chcesz rozliczyæ WSZYSTKIE należno¶ci użytkownika \\\'$a\\\'?'; $_LANG['Are you sure, you want to assign new addresses for all computers? Remember, it can make problems for your network!'] = 'Ar tikai norite priskirti naujus adresusu visiems kompiuterimas? Prisiminkite, tai gali sukelti problemas J?s? tinkle!'; -$_LANG['Are you sure, you want to change network $0 to network \'+getText(document.remap.mapto.value)+\'?'] = 'Ar tikrai norite peradresuoti tinkl± $0 ? tinkl± \'+getText(document.remap.mapto.value)+\'?'; +$_LANG['Are you sure, you want to change network $a to network \'+getText(document.remap.mapto.value)+\'?'] = 'Ar tikrai norite peradresuoti tinkl± $a ? tinkl± \'+getText(document.remap.mapto.value)+\'?'; $_LANG['Are you sure, you want to check/uncheck selected invoices as accounted?'] = 'Ar tikrai norite paŸym?ti/atŸym?ti pasirinktas fakt?ras kaip apmok?tas?'; -$_LANG['Are you sure, you want to delete account \\\'$0\\\' and all assigned to them aliases?'] = 'Ar tikrai norite pačalinti s±sakit± \\\'$0\\\' bei visus pseudonimus su ja susijusius?'; -$_LANG['Are you sure, you want to delete address \\\'$0\\\' from database?'] = 'Ar tikrai norite ičtrinti adres± \\\'$0\\\'ič duomen? baz?s?'; -$_LANG['Are you sure, you want to delete alias: \\\'$0\\\'?'] = 'Ar tikrai norite ičtrinti pseudonim±: \\\'$0\\\'?'; -$_LANG['Are you sure, you want to delete database backup created at $0 ?'] = 'Ar tikrai norite ičtrinti duomen? baz?s kopij± padaryt±: $0 ?'; -$_LANG['Are you sure, you want to delete domain: \\\'$0\\\' and all accounts/aliases in that domain?'] = 'Ar tikrai norite ičtrinti domen±: \\\'$0\\\' bei visas s±skaitas/pseudonimus čiame domene?'; -$_LANG['Are you sure, you want to delete node $0?'] = 'Ar tikrai norite ičtrinti kompiuter? $0?'; -$_LANG['Are you sure, you want to delete node \\\'$0\\\' from database?'] = 'Ar tikrai norite ičtrinti kompiuter? \\\'$0\\\' ič duomen? baz?s?'; -$_LANG['Are you sure, you want to delete option \\\'$0\\\' from database?'] = 'Ar tikrai norite ičtrinti pasirinkt? \\\'$0\\\'ič duomen? baz?s?'; +$_LANG['Are you sure, you want to delete account \\\'$a\\\' and all assigned to them aliases?'] = 'Ar tikrai norite pačalinti s±sakit± \\\'$a\\\' bei visus pseudonimus su ja susijusius?'; +$_LANG['Are you sure, you want to delete address \\\'$a\\\' from database?'] = 'Ar tikrai norite ičtrinti adres± \\\'$a\\\'ič duomen? baz?s?'; +$_LANG['Are you sure, you want to delete alias: \\\'$a\\\'?'] = 'Ar tikrai norite ičtrinti pseudonim±: \\\'$a\\\'?'; +$_LANG['Are you sure, you want to delete database backup created at $a ?'] = 'Ar tikrai norite ičtrinti duomen? baz?s kopij± padaryt±: $a ?'; +$_LANG['Are you sure, you want to delete domain: \\\'$a\\\' and all accounts/aliases in that domain?'] = 'Ar tikrai norite ičtrinti domen±: \\\'$a\\\' bei visas s±skaitas/pseudonimus čiame domene?'; +$_LANG['Are you sure, you want to delete node $a?'] = 'Ar tikrai norite ičtrinti kompiuter? $a?'; +$_LANG['Are you sure, you want to delete node \\\'$a\\\' from database?'] = 'Ar tikrai norite ičtrinti kompiuter? \\\'$a\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to delete option \\\'$a\\\' from database?'] = 'Ar tikrai norite ičtrinti pasirinkt? \\\'$a\\\'ič duomen? baz?s?'; $_LANG['Are you sure, you want to delete selected operation(s) and/or invoice item(s)?'] = 'Ar tikrai ičtrinti paŸym?tas operacijas ir/arba fakt?ros pozicijas?'; $_LANG['Are you sure, you want to delete that connection?'] = 'Ar tikrai norite ičtrinti č? sujungim± (ryč?)?'; $_LANG['Are you sure, you want to delete that device?'] = 'Ar tikrai norite ičtrinti č? ?rengim±?'; @@ -145,27 +145,27 @@ $_LANG['Are you sure, you want to delete that tariff?'] = 'Ar tikrai norite ičtrinti č? ?kain??'; $_LANG['Are you sure, you want to delete this database backup?'] = 'Ar tikrai norite ičtrinti či± duomen? baz?s kopij±?'; $_LANG['Are you sure, you want to delete this liability?'] = 'JAr tikrai norite ičtrinti č? ?sipareigojim±?'; -$_LANG['Are you sure, you want to drop user $0 from that event?'] = 'Ar tikrai norite pačalinti vartotoj± $0 ič čio ?vykio?'; +$_LANG['Are you sure, you want to drop user $a from that event?'] = 'Ar tikrai norite pačalinti vartotoj± $a ič čio ?vykio?'; $_LANG['Are you sure, you want to generate new password?'] = 'Ar tikrai norite sugeneruoti nauj± slaptaŸod??'; $_LANG['Are you sure, you want to generate new PIN?'] = 'Ar tikrai norite sugeneruoti nauj± PIN?'; $_LANG['Are you sure, you want to irreversibly delete that user account?'] = 'Ar tikrai norite panaikinti či± s±skait± negr?Ÿtamai?'; $_LANG['Are you sure, you want to move customers to tariff \'+getText(document.tmove.to.value)+\'?'] = 'Ar tikrai norite priskirti klientams ?kain? \'+getText(document.tmove.to.value)+\'?'; -$_LANG['Are you sure, you want to readdress network $0 to network $1 ?'] = 'Ar tikrai norite peradresuoti tinkl± $0 tinklui $1 ?'; -$_LANG['Are you sure, you want to recover database created at $0?'] = 'Ar tikrai norite atkurti duomen? bazê ič kopijos padarytos $0?'; -$_LANG['Are you sure, you want to remove customer \\\'$0\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Ar tikari norite pačalinti klient± \\\'$0\\\' ič duomen? baz?s?\\n\\n Jei klientas turi kompiuterius jie taip pat bus pačalinti, o j? duomenys negr?Ÿtamai prarasti!'; +$_LANG['Are you sure, you want to readdress network $a to network $b ?'] = 'Ar tikrai norite peradresuoti tinkl± $a tinklui $b ?'; +$_LANG['Are you sure, you want to recover database created at $a?'] = 'Ar tikrai norite atkurti duomen? bazê ič kopijos padarytos $a?'; +$_LANG['Are you sure, you want to remove customer \\\'$a\\\' from database?\\n\\nIf that customer have some nodes, they will be also removed and data definitely lost!'] = 'Ar tikari norite pačalinti klient± \\\'$a\\\' ič duomen? baz?s?\\n\\n Jei klientas turi kompiuterius jie taip pat bus pačalinti, o j? duomenys negr?Ÿtamai prarasti!'; $_LANG['Are you sure, you want to remove customer from group?'] = 'Ar tikrai norite pačalinti klient± ič grup?s?'; -$_LANG['Are you sure, you want to remove device \\\'$0\\\' from database?'] = 'Ar tikrai norite pačalinti ?rengin? \\\'$0\\\' ič duomen? baz?s?'; -$_LANG['Are you sure, you want to remove host \\\'$0\\\' and all assigned configuration?'] = 'Ar tikrai norite pačalinti prieglob± \\\'$0\\\' ir vis± jos konfiguracij±?'; -$_LANG['Are you sure, you want to remove instance \\\'$0\\\' and all assigned configuration?'] = 'Ar tikrai norite pačalinti atv?j? \\\'$0\\\' ir vis± jo konfiguracij±?'; -$_LANG['Are you sure, you want to remove invoice \\\'$0\\\' from database?'] = 'Ar tikrai norite pačalinti fakt?r± \\\'$0\\\' ič duomen? baz?s?'; -$_LANG['Are you sure, you want to remove network \\\'$0\\\'?'] = 'Ar tikrai norite pačalinti tinkl± \\\'$0\\\'?'; -$_LANG['Are you sure, you want to remove node \\\'$0\\\' from database?'] = 'Ar tikrai norite pačalinti kompiuter? \\\'$0\\\' ič duomen? baz?s?'; -$_LANG['Are you sure, you want to remove option \\\'$0\\\' from database?'] = 'Ar tikrai norite pačalinti pasirinkt? \\\'$0\\\' ič duomen? baz?s?'; -$_LANG['Are you sure, you want to remove queue \\\'$0\\\' and all assigned tickets and messages?'] = 'Ar tikrai norite pačalinti eilê \\\'$0\\\' bei visas paraičkas ir Ÿinutes su ja susijusias?'; -$_LANG['Are you sure, you want to remove receipt \\\'$0\\\' from database?'] = 'Ar tikrai norite pačalinti mok?jimo patvritinim± nr \\\'$0\\\'ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove device \\\'$a\\\' from database?'] = 'Ar tikrai norite pačalinti ?rengin? \\\'$a\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove host \\\'$a\\\' and all assigned configuration?'] = 'Ar tikrai norite pačalinti prieglob± \\\'$a\\\' ir vis± jos konfiguracij±?'; +$_LANG['Are you sure, you want to remove instance \\\'$a\\\' and all assigned configuration?'] = 'Ar tikrai norite pačalinti atv?j? \\\'$a\\\' ir vis± jo konfiguracij±?'; +$_LANG['Are you sure, you want to remove invoice \\\'$a\\\' from database?'] = 'Ar tikrai norite pačalinti fakt?r± \\\'$a\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove network \\\'$a\\\'?'] = 'Ar tikrai norite pačalinti tinkl± \\\'$a\\\'?'; +$_LANG['Are you sure, you want to remove node \\\'$a\\\' from database?'] = 'Ar tikrai norite pačalinti kompiuter? \\\'$a\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove option \\\'$a\\\' from database?'] = 'Ar tikrai norite pačalinti pasirinkt? \\\'$a\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove queue \\\'$a\\\' and all assigned tickets and messages?'] = 'Ar tikrai norite pačalinti eilê \\\'$a\\\' bei visas paraičkas ir Ÿinutes su ja susijusias?'; +$_LANG['Are you sure, you want to remove receipt \\\'$a\\\' from database?'] = 'Ar tikrai norite pačalinti mok?jimo patvritinim± nr \\\'$a\\\'ič duomen? baz?s?'; $_LANG['Are you sure, you want to remove that customer from database?\\n\\nIf that customer have any computers, they will be automatically removed from database too, and information about them irreversible losed!'] = 'Ar tikrai norite pačalinti klient± ič duomen? baz?s?\\n\\nJei klientas turi kompiuterius, jie bus pačalinti, o duomenys negr?Ÿtamai prarasti!'; $_LANG['Are you sure, you want to remove this group?'] = 'Ar tikrai norite pačalinti či± grupê?'; -$_LANG['Are you sure, you want to remove ticket $0?'] = 'Ar tikrai norite pačalinti paraičk± nr $0?'; +$_LANG['Are you sure, you want to remove ticket $a?'] = 'Ar tikrai norite pačalinti paraičk± nr $a?'; $_LANG['Are you sure, you want to reorder that network?'] = 'Ar tikrai norite sutvarkyti tinkl±?'; $_LANG['Are you sure, you want to restore this database backup?'] = 'Ar tikrai norite atkurti či± duomen? baz?s kopij±?'; $_LANG['ascending'] = 'did?jantis'; @@ -177,15 +177,15 @@ $_LANG['Avg. monthly income:'] = 'vidur. m?n. pajamos:'; $_LANG['awaiting'] = 'laukaintis'; $_LANG['List of awaiting customers'] = 'Laukianèi? klient? s±račas'; -$_LANG['$0'] = '$0'; +$_LANG['$a'] = '$a'; $_LANG['Backup Delete'] = 'Backup Delete'; $_LANG['Backups'] = 'Atsargin?s kopjos'; $_LANG['Balance'] = 'Saldo'; $_LANG['Balance:'] = 'Saldo:'; $_LANG['Balance date:'] = 'Balanso data:'; $_LANG['Balance Sheet'] = 'Operacij? istoria'; -$_LANG['Balance Sheet ($0 to $1)'] = 'Operacij? istoria ($0 iki $1)'; -$_LANG['Balance Sheet of User: $0 ($1 to $2)'] = 'Operacij? istoria vartotojui: $0 ($1 iki $2)'; +$_LANG['Balance Sheet ($a to $b)'] = 'Operacij? istoria ($a iki $b)'; +$_LANG['Balance Sheet of User: $a ($b to $c)'] = 'Operacij? istoria vartotojui: $a ($b iki $c)'; $_LANG['Allows you to logout'] = 'Darbo pabaiga'; $_LANG['Basic system information'] = 'Pagrindin? informacija apie sistem±'; $_LANG['Begin:'] = 'PradŸia:'; @@ -206,7 +206,7 @@ $_LANG['CASH'] = 'GRYNIEJI'; $_LANG['Cash Operations Import'] = 'Kasos operacij? importas'; $_LANG['Cash receipt'] = 'Mok?jimo patvritinimas'; -$_LANG['Cash Receipt No. $0'] = 'Kasos dokumentas Nr $0'; +$_LANG['Cash Receipt No. $a'] = 'Kasos dokumentas Nr $a'; $_LANG['Cash receipt template file. Default: "receipt.html". Should be placed in templates directory.'] = 'Mok?jimo patvritinimo čablonas. Pagal nutyl?jim±: "receipt.html". Turi b?ti kataloge templates.'; $_LANG['Cash Report'] = 'Kasos ataskaita'; $_LANG['Cautions:'] = 'Pasatbos:'; @@ -239,11 +239,11 @@ $_LANG['Compacting of database removes non-essential data from database and averages existing data. This will decrease number of records in database and reduce results latency, but also decrease stats precision.'] = 'Duomen? baz?s sutraukimas reičkia nereikaling? duomen? pačalinimas ič baz?s bei esam? duomen? vidurkinimas, kas sumaŸins ?rač? skaièi? baz?je, o paskui sutrumpins rezultat? laukimo laik±, bet sumaŸins j? tikslum±'; $_LANG['Compacting parameters'] = 'Sutraukimo parametrai'; $_LANG['compressed'] = 'sutraukta'; -$_LANG['Statistics for computer $0 has been removed
'] = 'Kompiuterio $0 statistiniai duomenys yra pačalinti
'; +$_LANG['Statistics for computer $a has been removed
'] = 'Kompiuterio $a statistiniai duomenys yra pačalinti
'; $_LANG['Error during deleting data for old computers !
'] = 'Klaida čalinant statistinius duomenys pačalint? kompiuteri?!
'; $_LANG['Computers found:'] = 'Rasti kompiuteriai:'; $_LANG['Configuration'] = 'Konfiguracija'; -$_LANG['Configuration of Instance: $0/$1'] = 'Atvejo konfig?racija: $0/$1'; +$_LANG['Configuration of Instance: $a/$b'] = 'Atvejo konfig?racija: $a/$b'; $_LANG['configuration reload'] = 'konfig?racijos perkrovimas '; $_LANG['Configuration Reload'] = 'Konfig?racijos perkrovimas'; $_LANG['Confirm password'] = 'Pakartok slaptaŸod?'; @@ -253,9 +253,9 @@ $_LANG['connected'] = 'prijungti'; $_LANG['connected'] = 'prijungtas'; $_LANG['Connected:'] = 'Prijungti:'; -$_LANG['List of Connected Customers $0$1'] = 'Prijungt? klient? s±račas $0$1'; -$_LANG['Connected devices ($0):'] = 'Prijungti ?rengimai ($0):'; -$_LANG['Connected nodes ($0):'] = 'Prijungti kompiuteriai $0):'; +$_LANG['List of Connected Customers $a$b'] = 'Prijungt? klient? s±račas $a$b'; +$_LANG['Connected devices ($a):'] = 'Prijungti ?rengimai ($a):'; +$_LANG['Connected nodes ($a):'] = 'Prijungti kompiuteriai $a):'; $_LANG['Connected:'] = 'Prijungti:'; $_LANG['List of Connected Nodes'] = 'Prijungt? kompiuteri? s±račas'; $_LANG['Connection limit:'] = 'Jungèi? limitas:'; @@ -270,7 +270,7 @@ $_LANG['Copyrights, authors, etc.'] = 'Autorin?s teis?s, autoriai, ir t.t.'; $_LANG['Create alias'] = 'Sukurk pseudonim±'; $_LANG['Created:'] = 'Sukurtas:'; -$_LANG['Created by: $0'] = 'Skurtas čio: $0'; +$_LANG['Created by: $a'] = 'Skurtas čio: $a'; $_LANG['Create new'] = 'Sukurk now±'; $_LANG['Create time:'] = 'Skurimo data:'; $_LANG['Generating subscriptions...'] = 'Generuoju ?kainius...'; @@ -281,28 +281,28 @@ $_LANG['customer'] = 'klientas'; $_LANG['Customer'] = 'Klientas'; $_LANG['Customer:'] = 'Klientas:'; -$_LANG['Customer $0 Balance Sheet ($1 to $2)'] = '$0 Kliento operacij? istorija ($1 iki $2)'; -$_LANG['Customer $0 has been removed.'] = 'Klientas $0 buvo pačalintas.'; +$_LANG['Customer $a Balance Sheet ($b to $c)'] = '$a Kliento operacij? istorija ($b iki $c)'; +$_LANG['Customer $a has been removed.'] = 'Klientas $a buvo pačalintas.'; $_LANG['Customer Account:'] = 'Kliento s±skaita (vartotojas):'; -$_LANG['Customer Balance: $0'] = 'Kliento s±skaita: $0'; +$_LANG['Customer Balance: $a'] = 'Kliento s±skaita: $a'; $_LANG['Customer Balance Sheet'] = 'Kliento operacij? istorija '; $_LANG['Customer cannot send message!'] = 'Klientas negali ičsi?sti Ÿinuèi?!'; -$_LANG['Customer Charging Edit: $0'] = 'Kliento ?sipareigojim? redagavimas: $0'; -$_LANG['Customer Edit: $0'] = 'Kliento redagavimas: $0'; +$_LANG['Customer Charging Edit: $a'] = 'Kliento ?sipareigojim? redagavimas: $a'; +$_LANG['Customer Edit: $a'] = 'Kliento redagavimas: $a'; $_LANG['Customers Group:'] = 'Klient? grup?:'; $_LANG['customer ID'] = 'Kliento ID'; $_LANG['Customer ID'] = 'Kliento ID'; $_LANG['Customer ID:'] = 'Kliento ID:'; -$_LANG['Customer Info: $0'] = 'Informacija apie klient± : $0'; -$_LANG['Node Edit: $0'] = 'Kompiuterio redagavimas : $0'; -$_LANG['Customer Information: $0'] = 'Informacija apie klient± : $0'; +$_LANG['Customer Info: $a'] = 'Informacija apie klient± : $a'; +$_LANG['Node Edit: $a'] = 'Kompiuterio redagavimas : $a'; +$_LANG['Customer Information: $a'] = 'Informacija apie klient± : $a'; $_LANG['Customer Liabilities:'] = 'Kliento ?sipareigojimai:'; $_LANG['customer name'] = 'kliento pavard? '; $_LANG['Customer name'] = 'Kliento pavard? '; -$_LANG['Customer No.: $0'] = 'Kliento numeris: $0'; -$_LANG['Customer Nodes ($0):'] = 'Kliento kompiuteriai ($0):'; +$_LANG['Customer No.: $a'] = 'Kliento numeris: $a'; +$_LANG['Customer Nodes ($a):'] = 'Kliento kompiuteriai ($a):'; $_LANG['Customer not selected!'] = 'Nepasirinktas klientas !'; -$_LANG['Customer Remove: $0'] = 'Kliento pačalinimas: $0'; +$_LANG['Customer Remove: $a'] = 'Kliento pačalinimas: $a'; $_LANG['Customers'] = 'Klientai'; $_LANG['Customers:'] = 'Klientai:'; $_LANG['Customer Search'] = 'Klient? paiečka'; @@ -310,10 +310,10 @@ $_LANG['Customers in Subscription:'] = 'Klientai prisikirti ?kainiui:'; $_LANG['Customers List'] = 'Klient? s±račas'; $_LANG['Customers List:'] = 'Klient? s±račas:'; -$_LANG['Customers List $0$1'] = 'Klient? s±račas $0$1'; +$_LANG['Customers List $a$b'] = 'Klient? s±račas $a$b'; $_LANG['Customers: list, add, search, groups'] = 'Klientai: s±račas, paiečka, prid?jimas, grup?s'; $_LANG['customers management'] = 'klient? valdymas '; -$_LANG['Customers Without Nodes List $0$1'] = 'Klient? be kompiuteri? s±račas $0$1'; +$_LANG['Customers Without Nodes List $a$b'] = 'Klient? be kompiuteri? s±račas $a$b'; $_LANG['CVS Repository'] = 'Saugykla CVS'; $_LANG['Daemon'] = 'Daemonas'; $_LANG['daemon management and configuration'] = 'daemono konfiguracija ir valdymas'; @@ -345,22 +345,22 @@ $_LANG['deleted'] = 'ičtrinti'; $_LANG['Delete data older than one year'] = 'Ičtrink duomenis senesnius nei metai'; $_LANG['deleted customer'] = 'ičtrintas klientas'; -$_LANG['Delete Node $0'] = 'Ičtrink kompiuter? $0'; +$_LANG['Delete Node $a'] = 'Ičtrink kompiuter? $a'; $_LANG['Delete stats of non-existing (deleted) nodes'] = 'Ičtrink neegzistuojanèi? (ičtrint?) kompiuteri? statistikas'; $_LANG['Deletion of Database Backup'] = 'Atsargin?s duomen? baz?s kopijos trynimas'; -$_LANG['Deletion of Device with ID: $0'] = '?renginio identifikuoto: $0 trynimas'; +$_LANG['Deletion of Device with ID: $a'] = '?renginio identifikuoto: $a trynimas'; $_LANG['descending'] = 'maŸ?janèiai '; $_LANG['Description'] = 'Apračas'; $_LANG['Description:'] = 'Apračas:'; $_LANG['Details'] = 'Detal?s '; $_LANG['Device connected to other device or node can\'t be deleted.'] = ' ?rengimas sujungtas su kitu ?rengimu arba kompiuteriu negali b?ti ičtrintas.'; -$_LANG['Device Edit: $0 ($1)'] = '?renginio redagavimas: $0 ($1)'; +$_LANG['Device Edit: $a ($b)'] = '?renginio redagavimas: $a ($b)'; $_LANG['No free ports on device!'] = '?renginys neturi laisv? ang? (port?) '; $_LANG['No IP addresses on device.'] = '?renginys neturi IP adreso .'; -$_LANG['Device Info: $0 $1 $2'] = 'Informacija apie ?rengin?: $0 $1 $2'; +$_LANG['Device Info: $a $b $c'] = 'Informacija apie ?rengin?: $a $b $c'; $_LANG['Device name is required!'] = 'Reikalingas ?renginio pavadinimas!'; $_LANG['Device name is too long (max.32 characters)!'] = ' ?renginio pavadinimas yra per ilgas (maksimaliai 32 simboliai)!'; -$_LANG['IP addresses ($0):'] = ' IP adresai ($0):'; +$_LANG['IP addresses ($a):'] = ' IP adresai ($a):'; $_LANG['Device has been deleted.'] = '?renginys buvo ičtrintas.'; $_LANG['DHCP range:'] = ' DHCP diapazonas:'; $_LANG['Disable'] = 'Ičjunk '; @@ -378,7 +378,7 @@ $_LANG['disconnected'] = 'atjungtas'; $_LANG['Disconnected:'] = 'Atjungti:'; $_LANG['Documents List'] = 'Dokument? s±račas'; -$_LANG['List of Disconnected Customers $0$1'] = 'Atjungt? Klient? s±račas $0$1'; +$_LANG['List of Disconnected Customers $a$b'] = 'Atjungt? Klient? s±račas $a$b'; $_LANG['List of Disconnected Nodes'] = 'Atjungt? kompiuteri? s±račas'; $_LANG['Discount:'] = 'Nuolaida:'; $_LANG['Display customers matching the following criteria:'] = 'Parodyk klientu atitinkanèius čiuos kriterijus :'; @@ -396,7 +396,7 @@ $_LANG['Documentation'] = 'Dokumentacja'; $_LANG['Document with specified number exists!'] = 'Dokument z podanym numerem już istnieje!'; $_LANG['Domain:'] = 'Domena:'; -$_LANG['Domain Edit: $0'] = 'Edycja domeny: $0'; +$_LANG['Domain Edit: $a'] = 'Edycja domeny: $a'; $_LANG['Domain name is required!'] = 'Nazwa domeny jest wymagana!'; $_LANG['Domains'] = 'Domeny'; $_LANG['Domains List'] = 'Lista domen'; @@ -407,8 +407,8 @@ $_LANG['Download rate:'] = 'Download rate:'; $_LANG['Downrate:'] = 'Downrate:'; $_LANG['Downrate (ceil):'] = 'Downrate (ceil):'; -$_LANG['Do you want to remove $0 customer?'] = 'Czy chcesz usun±æ klienta $0?'; -$_LANG['Do you want to remove queue called $0?'] = 'Czy chcesz usun±æ kolejkê $0?'; +$_LANG['Do you want to remove $a customer?'] = 'Czy chcesz usun±æ klienta $a?'; +$_LANG['Do you want to remove queue called $a?'] = 'Czy chcesz usun±æ kolejkê $a?'; $_LANG['Draw-up date'] = 'Data wystawienia'; $_LANG['Draw-up date:'] = 'Data wystawienia:'; $_LANG['Edit'] = 'Edytuj'; @@ -561,7 +561,7 @@ $_LANG['entries'] = '?rač?'; $_LANG['Error:'] = 'Klaida:'; $_LANG['Error!'] = 'Klaida!'; -$_LANG['Error: Unknown reload type: "$0"!'] = 'Klaida: NeŸinomas perkrovimo tipas: "$0"!'; +$_LANG['Error: Unknown reload type: "$a"!'] = 'Klaida: NeŸinomas perkrovimo tipas: "$a"!'; $_LANG['Event Edit'] = 'Redaguokite ?vyk? '; $_LANG['Event Info'] = 'Informacija apie ?vyk?'; $_LANG['Event Search'] = '?vyki? paiečka '; @@ -611,15 +611,15 @@ $_LANG['Gross value'] = 'Bruto vert? '; $_LANG['Gross Value:'] = 'Bruto vert?:'; $_LANG['Group:'] = 'Grup?:'; -$_LANG['(Group: $0)'] = '(Grup?: $0)'; -$_LANG['Group Edit: $0'] = 'Grup?s redagavimas: $0'; -$_LANG['Group Info: $0'] = 'Informacija apie grupê : $0'; +$_LANG['(Group: $a)'] = '(Grup?: $a)'; +$_LANG['Group Edit: $a'] = 'Grup?s redagavimas: $a'; +$_LANG['Group Info: $a'] = 'Informacija apie grupê : $a'; $_LANG['Group members:'] = 'Grup?s nariai :'; $_LANG['Group name is too long!'] = 'Grup?s pavadinimas per ilgas!'; $_LANG['Group name required!'] = 'Reikia grup?s pavadinimo!'; $_LANG['Groups'] = 'Grup?s'; $_LANG['Group with members cannot be deleted!'] = 'Negalima pačalinti grup?s turinèios narius !'; -$_LANG['Group with name $0 already exists!'] = '$0 pavadinimo grup?s jau yra !'; +$_LANG['Group with name $a already exists!'] = '$a pavadinimo grup?s jau yra !'; $_LANG['Guarantee:'] = 'Garantija:'; $_LANG['Guarantee period:'] = 'Garantijos periodas:'; $_LANG['Has'] = 'Turi'; @@ -632,7 +632,7 @@ $_LANG['High'] = 'Aukčtas '; $_LANG['Homedir:'] = 'Nam? katalogas :'; $_LANG['Host:'] = 'Host:'; -$_LANG['Host Edit: $0'] = 'Hosto redagavimas: $0'; +$_LANG['Host Edit: $a'] = 'Hosto redagavimas: $a'; $_LANG['Hostname:'] = 'Hosto pavadinimas:'; $_LANG['Host name is required!'] = 'Reikia hosto pavadinimo !'; $_LANG['Hosts List'] = 'Hosdt? s±račas '; @@ -690,12 +690,12 @@ $_LANG['Incorrect ZIP code!'] = 'Neteisingas pačto kodas!'; $_LANG['in debt'] = '?siskolinê'; $_LANG['Nodes List for Customers In Debt'] = '?siskolinusi? klient? kompiuteri? s±račas'; -$_LANG['Indebted Customers List $0$1'] = '?siskolinusi? klient? s±račas $0$1'; +$_LANG['Indebted Customers List $a$b'] = '?siskolinusi? klient? s±račas $a$b'; $_LANG['indebted owner'] = '?siskolinês savininkas'; $_LANG['Info'] = 'Informacija '; -$_LANG['Info Network: $0'] = 'Informacija apie Tinkl±: $0'; +$_LANG['Info Network: $a'] = 'Informacija apie Tinkl±: $a'; $_LANG['in it:'] = 'tame:'; -$_LANG['Instance Edit: $0'] = 'Atvejo redagavimas: $0'; +$_LANG['Instance Edit: $a'] = 'Atvejo redagavimas: $a'; $_LANG['Instance host is required!'] = 'Atvejo hostas yra reikalingas!'; $_LANG['Instance module is required!'] = 'Atvejo modulis yra reikalingas!'; $_LANG['Instance name is required!'] = 'Atvejo pavadinimas yra reikalingas!'; @@ -709,29 +709,29 @@ $_LANG['Interface:'] = 'S±saja:'; $_LANG['Invalid chars in group name!'] = 'Neleistini Ÿenklai grup?s pavadinime!'; $_LANG['Invalid date format!'] = 'Neteisingas datos formatas!'; -$_LANG['Invalid date format: $0.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Klaidingas datos formatas: $0.\\nLeistinas formatas tai \'MMMM/MM/DD VV:mm\'.'; -$_LANG['Invalid date format: $0.\\nNo day of month value can be found.'] = 'Klaidingas datos formatas: $0.\\nNerasta m?nesio dienos vert?'; -$_LANG['Invalid date format: $0.\\nNo month value can be found.'] = 'Klaidingas datos formatas: $0.\\nNerasta m?nesio vert?.'; -$_LANG['Invalid date format: $0.\\nNo year value can be found.'] = 'Klaidingas datos formatas: $0.\\nNerasta met? vert?.'; -$_LANG['Invalid day of month value: $0.\\nAllowed range is 01-$1.'] = 'Klaidinga m?nesio diena: $0.\\nLeidŸiamos reikčm?s ič srities 01-$1'; -$_LANG['Invalid day of month value: $0.\\nAllowed values are unsigned integers.'] = 'Klaidinga m?nesio dienos vert?: $0.\\nLeidŸiami sveiki skaièiai be Ÿenklo.'; -$_LANG['Invalid hour value: $0.\\nAllowed range is 00-23.'] = 'Klaidinga valanda: $0.\\nLeidŸiamos reikčm?s ič srities 00-23'; -$_LANG['Invalid hour value: $0.\\nAllowed values are unsigned integers.'] = 'Klaidinga valanda: $0.\\nLeidŸiami sveiki skaièiai be Ÿenklo.'; -$_LANG['Invalid minutes value: $0.\\nAllowed range is 00-59.'] = 'Klaidinga minuèi? reikčm?: $0.\\nLeidŸiamos reikčm?s ič srities 00-59.'; -$_LANG['Invalid minutes value: $0.\\nAllowed values are unsigned integers.'] = 'Klaidinga minuèi? reikčm?: $0.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; -$_LANG['Invalid month value: $0.\\nAllowed range is 01-12.'] = 'Klaidinga m?nesio reikčm?: $0.\\nLeidŸiamos reikčm?s ič srities 01-12.'; -$_LANG['Invalid month value: $0.\\nAllowed values are unsigned integers.'] = 'Klaidinga m?nesio reikčm?: $0.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; -$_LANG['Invalid year value: $0.\\nAllowed values are unsigned integers.'] = 'Klaidingi metai: $0.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; +$_LANG['Invalid date format: $a.\\nFormat accepted is \'YYYY/MM/DD hh:mm\'.'] = 'Klaidingas datos formatas: $a.\\nLeistinas formatas tai \'MMMM/MM/DD VV:mm\'.'; +$_LANG['Invalid date format: $a.\\nNo day of month value can be found.'] = 'Klaidingas datos formatas: $a.\\nNerasta m?nesio dienos vert?'; +$_LANG['Invalid date format: $a.\\nNo month value can be found.'] = 'Klaidingas datos formatas: $a.\\nNerasta m?nesio vert?.'; +$_LANG['Invalid date format: $a.\\nNo year value can be found.'] = 'Klaidingas datos formatas: $a.\\nNerasta met? vert?.'; +$_LANG['Invalid day of month value: $a.\\nAllowed range is 01-$b.'] = 'Klaidinga m?nesio diena: $a.\\nLeidŸiamos reikčm?s ič srities 01-$b'; +$_LANG['Invalid day of month value: $a.\\nAllowed values are unsigned integers.'] = 'Klaidinga m?nesio dienos vert?: $a.\\nLeidŸiami sveiki skaièiai be Ÿenklo.'; +$_LANG['Invalid hour value: $a.\\nAllowed range is 00-23.'] = 'Klaidinga valanda: $a.\\nLeidŸiamos reikčm?s ič srities 00-23'; +$_LANG['Invalid hour value: $a.\\nAllowed values are unsigned integers.'] = 'Klaidinga valanda: $a.\\nLeidŸiami sveiki skaièiai be Ÿenklo.'; +$_LANG['Invalid minutes value: $a.\\nAllowed range is 00-59.'] = 'Klaidinga minuèi? reikčm?: $a.\\nLeidŸiamos reikčm?s ič srities 00-59.'; +$_LANG['Invalid minutes value: $a.\\nAllowed values are unsigned integers.'] = 'Klaidinga minuèi? reikčm?: $a.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; +$_LANG['Invalid month value: $a.\\nAllowed range is 01-12.'] = 'Klaidinga m?nesio reikčm?: $a.\\nLeidŸiamos reikčm?s ič srities 01-12.'; +$_LANG['Invalid month value: $a.\\nAllowed values are unsigned integers.'] = 'Klaidinga m?nesio reikčm?: $a.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; +$_LANG['Invalid year value: $a.\\nAllowed values are unsigned integers.'] = 'Klaidingi metai: $a.\\ nLeidŸiami sveiki skaièiai be Ÿenklo.'; $_LANG['Invoice'] = 'Fakt?ra'; $_LANG['Invoice:'] = 'Fakt?ra:'; $_LANG['Invoice draw-up place.'] = 'Ičračymo data.'; -$_LANG['Invoice Edit: $0'] = 'Fakt?ros redagavimas: $0'; +$_LANG['Invoice Edit: $a'] = 'Fakt?ros redagavimas: $a'; $_LANG['Invoice have no items!'] = 'Fakt?roje tr?ksta pozicij?!'; $_LANG['Invoice have no items. Use form below for items addition.'] = 'Fakt?roje n?ra joki? pozicij?. Pasinaudokite Ÿemiau pateiktu blanku, kad jas prid?tum?te.'; $_LANG['Invoice No.'] = 'Fakt?ros numeris'; -$_LANG['Invoice No. $0'] = 'Fakt?ros PVM Nr $0'; +$_LANG['Invoice No. $a'] = 'Fakt?ros PVM Nr $a'; $_LANG['Invoice number:'] = 'Fakt?ros Nr:'; -$_LANG['Invoice number $0 already exists!'] = 'Fakt?ra su numeriu $0 jau yra!'; +$_LANG['Invoice number $a already exists!'] = 'Fakt?ra su numeriu $a jau yra!'; $_LANG['Invoice number must be integer!'] = 'Fakt?ros numeris turi b?ti sveikas skaièius!'; $_LANG['Invoices'] = 'Fakt?ros'; $_LANG['Invoices List'] = 'Fakt?r? s±račas'; @@ -756,12 +756,12 @@ $_LANG['It scans for ports in destination device!'] = 'Tr?ksta laisv? lizd? paskirties ?rengime!'; $_LANG['It scans for ports in source device!'] = 'Tr?ksta laisv? lizd? čaltinio ?rengime!'; $_LANG['Last:'] = 'Paskutinis:'; -$_LANG['last $0 transactions'] = 'paskutiniai $0 sandoriai'; +$_LANG['last $a transactions'] = 'paskutiniai $a sandoriai'; $_LANG['Last 30 Days'] = 'Paskutini? 30 dien?'; -$_LANG['Last date of invoice settlement is $0. If sure, you want to write invoice with date of $1, then click "Submit" again.'] = 'Paskutin?s fakt?ros ičračymo data $0. Jei esate tikras, kad norite ičračyti fakt?r± su data $1, tai dar kart± spauskite "?račyti".'; +$_LANG['Last date of invoice settlement is $a. If sure, you want to write invoice with date of $b, then click "Submit" again.'] = 'Paskutin?s fakt?ros ičračymo data $a. Jei esate tikras, kad norite ičračyti fakt?r± su data $b, tai dar kart± spauskite "?račyti".'; $_LANG['Last Day'] = 'Paskutin? diena'; $_LANG['Last day stats for all networks'] = 'Paskutin?s dienos statistika ič vis? tinkl?'; -$_LANG['Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.'] = 'Paskutin? kvito ičračymo diena tai $0. Jei tikrai norite ičračyti apmok?jimo liudijim± data $1 tai dar kart± spustelkite "?račyti ".'; +$_LANG['Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.'] = 'Paskutin? kvito ičračymo diena tai $a. Jei tikrai norite ičračyti apmok?jimo liudijim± data $b tai dar kart± spustelkite "?račyti ".'; $_LANG['Last failed login:'] = 'Paskutinis klaidingas prisijungimas:'; $_LANG['Last Hour'] = 'Paskutin? valanda'; $_LANG['Last hour stats for all networks'] = 'Paskutin?s valandos statistika ič vis? tinkl?'; @@ -770,14 +770,14 @@ $_LANG['Last month stats for all networks'] = 'Paskutinio m?nesio vis? tinkl? statistika '; $_LANG['last online:'] = 'paskutinis ?jungtas:'; $_LANG['Last online:'] = 'Paskutinis ?jungtas:'; -$_LANG['Last online: $0'] = 'Paskutinis ?jungtas: $0'; +$_LANG['Last online: $a'] = 'Paskutinis ?jungtas: $a'; $_LANG['Last Reload:'] = 'Paskutinis perkrovimas:'; $_LANG['Last Year'] = 'Paskutiniai metai'; $_LANG['Last year stats for all networks'] = 'Paskutini? met? vis? tinkl? statistika'; $_LANG['Length of (auto-generated) node password. Max.32. Default: 16.'] = 'Kompiuterio slaptaŸodŸio ilgis (automatičkai generuoto) Max.32. Numanoma: 16.'; $_LANG['liability'] = '?sipareigojimas'; $_LANG['Liability Report'] = 'Gautin? sum? ataskaita'; -$_LANG['Liability Report on $0'] = 'Gautin? sum? ataskaita $0'; +$_LANG['Liability Report on $a'] = 'Gautin? sum? ataskaita $a'; $_LANG['lifetime'] = 'visas gyvenimas'; $_LANG['Limit of nodes displayed on one page in Network Information. Default: 256. With 0, this information is omitted (page is displaying faster).'] = 'Rodom? kompiuteri? viename Informacijos apie tinkl± puslapyje limitas Numanoma: 256. Nustaèius ties 0, či informacija bus praleista (puslapis karusis greièiau).'; $_LANG['Limit of records displayed on one page in accounts list. Default: 100.'] = '?rač? rodom? viename s±skait? s±račo puslapyje limitas. Numanoma: 100.'; @@ -854,7 +854,7 @@ $_LANG['Module:'] = 'Modulis:'; $_LANG['Module Title'] = 'Modulio pavadinimas'; $_LANG['monthly'] = 'per m?nes?'; -$_LANG['monthly ($0)'] = 'per m?nes? ($0)'; +$_LANG['monthly ($a)'] = 'per m?nes? ($a)'; $_LANG['Move customers to subscription:'] = 'Perkelk klientus prie ?kainio:'; $_LANG['MySQL version:'] = 'MySQL versija:'; $_LANG['Name'] = 'Pavadinimas'; @@ -869,7 +869,7 @@ $_LANG['Name/Surname:'] = 'Pavadinimas/Pavard?:'; $_LANG['First/last or Company name'] = 'Pavadinimas/Pavard? ir vardas'; $_LANG['First/last or Company name:'] = 'Pavadinimas/Pavard? ir vardas:'; -$_LANG[' (Net: $0)'] = ' (Tinklas: $0)'; +$_LANG[' (Net: $a)'] = ' (Tinklas: $a)'; $_LANG['Net device:'] = 'Tinklo ?ranga:'; $_LANG['Net devices:'] = 'Tinklo ?renginiai:'; $_LANG['Net Devices'] = 'Tinklo prietaisai'; @@ -881,7 +881,7 @@ $_LANG['Network Balance Sheet'] = 'Finansini? operacij? istorija'; $_LANG['Network Devices'] = 'Tinklo ?renginiai'; $_LANG['Network devices list'] = 'Tinklo ?rengini? s±račas'; -$_LANG['Network Edit: $0'] = 'Tinklo redagavimas: $0'; +$_LANG['Network Edit: $a'] = 'Tinklo redagavimas: $a'; $_LANG['Network Map'] = 'Tinklo Ÿem?lapis'; $_LANG['Network map type. Use "flash" if you have Ming library or "gd" if your PHP supports gdlib. By default LMS will try to generate flash map, with fallback to GD if it fails.'] = 'Tinklo ?rengini? Ÿem?lapio tipas. Jei turite Ming bibliotek± pasinaudokite "flash", o jeigu J?s? PHP palaiko gdlib galite nustatyti ties "gd". Numanoma, jog LMS pabandys sugeneruoti Ÿem?lap? flasho pagalba, o jei nepavyks, sukurs Ÿem?lap? pasitelkdamas GD.'; $_LANG['Network name:'] = 'Tinklo pavadinimas:'; @@ -910,7 +910,7 @@ $_LANG['New Network'] = 'Naujas tinklas'; $_LANG['New network is too small!'] = 'Naujas tinklas yra per maŸas!'; $_LANG['New Node'] = 'Naujas kompiuteris'; -$_LANG['New Option for Instance: $0/$1'] = 'Naujas pasirinkimas atvejui: $0/$1'; +$_LANG['New Option for Instance: $a/$b'] = 'Naujas pasirinkimas atvejui: $a/$b'; $_LANG['New password:'] = 'Naujas slaptaŸodis:'; $_LANG['New Payment'] = 'Naujas mok?jimas'; $_LANG['New Queue'] = 'Nauja eil?'; @@ -920,14 +920,14 @@ $_LANG['none'] = 'tr?ksta'; $_LANG['no.'] = 'nr.'; $_LANG['No.'] = 'Nr.'; -$_LANG['No. $0'] = 'Nr. $0'; +$_LANG['No. $a'] = 'Nr. $a'; $_LANG['no access'] = 'prieiga negalima'; $_LANG['No cash operations to import.'] = 'Tr?ksta kasos operacij? importui'; $_LANG['No computers were found, either exists in the database or nbtscan binary not found.'] = 'Nerasta joki? kompiuteri? nebent visi kompiuteriai jau yra duomen? baz?je arba nbtscan programa yra nepasiekiama sistemoje.'; $_LANG['No configuration options in database. Click here to import them from lms.ini.'] = 'Tr?ksta konfig?racijos pasirinkim? duomen? baz?je. Spustelkite èia, kad gal?tum?te importuoti ? bazê.'; -$_LANG['Node $0 was deleted'] = 'Kompiuteris $0 buvo pačalintas'; +$_LANG['Node $a was deleted'] = 'Kompiuteris $a buvo pačalintas'; $_LANG['Node ID:'] = 'Kompiuterio ID:'; -$_LANG['Node Info: $0'] = 'Informacija apie kompiuter?: $0'; +$_LANG['Node Info: $a'] = 'Informacija apie kompiuter?: $a'; $_LANG['Node IP address'] = 'Kompiuterio IP adresas'; $_LANG['Node IP address is required!'] = 'Reikia kompiuterio IP adreso!'; $_LANG['Node name'] = 'Kompiuterio pavadinimas'; @@ -997,8 +997,8 @@ $_LANG['Open'] = 'Atidaryk'; $_LANG['opened'] = 'atidarytas'; $_LANG['Opened:'] = 'Atidaryta:'; -$_LANG['Option Edit: $0'] = 'Pasirinkties redagavimas: $0'; -$_LANG['Option Edit: $0/$1/$2'] = 'Pasirinkties redagavimas: $0/$1/$2'; +$_LANG['Option Edit: $a'] = 'Pasirinkties redagavimas: $a'; +$_LANG['Option Edit: $a/$b/$c'] = 'Pasirinkties redagavimas: $a/$b/$c'; $_LANG['Option exists!'] = 'Pasirinktis jau egzistuoja!'; $_LANG['Option name contains forbidden characters!'] = 'Pasirinkties pavadinime yra neleistin? Ÿenkl?.'; $_LANG['Option name is required!'] = 'Reikia pasirinkties pavadinimo!'; @@ -1018,20 +1018,20 @@ $_LANG['Owner ID:'] = 'Savininko identifikatorius:'; $_LANG['Packet limit:'] = 'Paket? limitas:'; $_LANG['Page:'] = 'Puslapis:'; -$_LANG['Page $0 of $1'] = 'Puslapis $0 z $1'; +$_LANG['Page $a of $b'] = 'Puslapis $a z $b'; $_LANG['Password'] = 'SlaptaŸodis'; $_LANG['Password:'] = 'SlaptaŸodis:'; $_LANG['Password Change'] = 'SlaptaŸodŸio keitimas'; -$_LANG['Password Change for Account: $0'] = 'S±skaitos slaptaŸodŸio keitimas: $0'; -$_LANG['Password Change for User $0'] = 'Vartotojo slaptaŸodŸio keitimas $0'; +$_LANG['Password Change for Account: $a'] = 'S±skaitos slaptaŸodŸio keitimas: $a'; +$_LANG['Password Change for User $a'] = 'Vartotojo slaptaŸodŸio keitimas $a'; $_LANG['Password is too long (max.32 characters)!'] = 'SlaptaŸodis per ilgas(max.32 Ÿenklai)!'; $_LANG['Passwords does not match!'] = 'SlaptaŸodŸiai nesutampa!'; $_LANG['Path to file was not specified.'] = 'Kelias iki failo nenurodytas.'; $_LANG['Payment:'] = 'Mok?jimas:'; $_LANG['Payment day:'] = 'Mok?jimo diena:'; -$_LANG['Payment Edit: $0'] = 'Mok?jimo redagavimas: $0'; -$_LANG['Payment for invoice No. $0'] = 'Mok?jimas pagal fakt?r± nr. $0'; -$_LANG['Payment Info: $0'] = 'Informacija apie mok?jim±: $0'; +$_LANG['Payment Edit: $a'] = 'Mok?jimo redagavimas: $a'; +$_LANG['Payment for invoice No. $a'] = 'Mok?jimas pagal fakt?r± nr. $a'; +$_LANG['Payment Info: $a'] = 'Informacija apie mok?jim±: $a'; $_LANG['Payment name is required!'] = 'Reikia mok?jimo pavadinimo!'; $_LANG['Payments List'] = 'Mok?jim? s±račas'; $_LANG['Payment type:'] = 'Mok?jimo tipas:'; @@ -1053,7 +1053,7 @@ $_LANG['Postcode:'] = 'Pačto kodas:'; $_LANG['PostgreSQL version:'] = 'Versija PostgreSQL:'; $_LANG['Prefix for account home directory. Default: /home/'] = 'Priečd?lis s±skaitos naminiam katalogui. Numanomai: /home/'; -$_LANG['Prepared by: $0'] = 'Paruočtas: $0'; +$_LANG['Prepared by: $a'] = 'Paruočtas: $a'; $_LANG['Print'] = 'Spausdink'; $_LANG['Print cash receipts'] = 'Sapusdink ?mokos kvit±'; $_LANG['Print invoices'] = 'Spausdink s±skaitas fakt?ras'; @@ -1076,33 +1076,33 @@ $_LANG['Qualify to use current day of month for payment day. Default: 0 (off).'] = 'Ičrinkite aktuali± m?nesio dien± kuri laikoma nauj? mok?jim? sudarymo diena. Numanoma: 0 (Ičjungta).'; $_LANG['Qualify the day of month for payment day. Default: 0 (undefined).'] = 'Numanoma m?nesio diena priskiriama naujiems m?nesio mok?jimams. Numanomai: 0 (neapibr?Ÿtas).'; $_LANG['quarterly'] = 'per ketvirt?'; -$_LANG['quarterly ($0)'] = ' per ketvirt? ($0)'; +$_LANG['quarterly ($a)'] = ' per ketvirt? ($a)'; $_LANG['Query:'] = 'UŸklausa:'; $_LANG['Question'] = 'Klausimas'; $_LANG['Queue'] = 'Eil?'; $_LANG['Queue:'] = 'Eil?:'; -$_LANG['Queue Edit: $0'] = 'Eil?s redagavimas: $0'; -$_LANG['Queue Info: $0'] = 'Informacij± apie eilê: $0'; +$_LANG['Queue Edit: $a'] = 'Eil?s redagavimas: $a'; +$_LANG['Queue Info: $a'] = 'Informacij± apie eilê: $a'; $_LANG['Queue name must be defined!'] = 'Eil? turi tur?ti pavadinim±!'; $_LANG['Tickets List'] = 'Paraičk? eil?'; $_LANG['Queues List'] = 'Eili? s±račas'; $_LANG['Queue with specified name already exists!'] = 'Eil? su tokiu pavadinimu jau yra!'; $_LANG['Quota (sh/mail/www/ftp/sql):'] = 'Limitas (sh/mail/www/ftp/sql):'; $_LANG['Read'] = 'Skaitymas'; -$_LANG['Readdressing network $0'] = 'Tinklo peradresavimas $0'; -$_LANG['Readdressing Network $0'] = 'Tinklo peradresavimas $0'; +$_LANG['Readdressing network $a'] = 'Tinklo peradresavimas $a'; +$_LANG['Readdressing Network $a'] = 'Tinklo peradresavimas $a'; $_LANG['read only (excluding helpdesk)'] = 'tik skaitymui (be Helpdesko)'; $_LANG['Reassign to network:'] = 'Perkelk ? tinkl±:'; $_LANG['Receipt'] = 'Pakvitavimas'; $_LANG['Receipt have no items!'] = 'Pakvitavimas neturi joki? pozicij?!'; $_LANG['Receipt have no items. Use form below for items addition.'] = 'N?ra pozicij? pakvitavime. Pasinaudokite Ÿemiau pateiktu blanku, kad gal?tum?te prid?ti pozicijas.'; $_LANG['Receipt number:'] = 'Patvirtinimo numeris:'; -$_LANG['Receipt number $0 already exists!'] = 'Patvirtinimas Nr $0 jau yra!'; +$_LANG['Receipt number $a already exists!'] = 'Patvirtinimas Nr $a jau yra!'; $_LANG['Receipt number must be integer!'] = 'Patvirtinimo skaièius turi b?ti sveikas skaièius!'; $_LANG['Recipients:'] = 'Gav?jai:'; $_LANG['Recipient\'s e-mail:'] = 'Gav?jo el. pačto adresas:'; $_LANG['Record of Network Devices'] = 'Tinklo ?rangos apskaita'; -$_LANG['records $0 - $1 of $2'] = '?račai $0 - $1 ič $2'; +$_LANG['records $a - $b of $c'] = '?račai $a - $b ič $c'; $_LANG['Registered for:'] = 'UŸregistruota (kam):'; $_LANG['Register your installation today! ;-)'] = 'UŸregistruok savo instaliacij± dar čiandien! ;-)'; $_LANG['Registration ID:'] = 'Registracijos Nr.:'; @@ -1112,9 +1112,9 @@ $_LANG['Remove'] = 'Pačalink'; $_LANG['Remove customer from group'] = 'Pačalink klient± ič grup?s'; $_LANG['Remove customers from group'] = 'Pačalink klientus ič grup?s'; -$_LANG['Remove queue ID: $0'] = 'Pačalink eilê ID: $0'; +$_LANG['Remove queue ID: $a'] = 'Pačalink eilê ID: $a'; $_LANG['Remove this item from list'] = 'Pačalink či± pozicij± ič s±račo'; -$_LANG['Removing network $0'] = 'Pačalink tinkl± $0'; +$_LANG['Removing network $a'] = 'Pačalink tinkl± $a'; $_LANG['Repeat password:'] = 'Pakartokite slaptaŸod?:'; $_LANG['Reply'] = 'Atsakymas'; $_LANG['Requester name required!'] = 'Teikianèio pračym± pavadinimas arba pavard? yra reikalinga!'; @@ -1125,7 +1125,7 @@ $_LANG['Restore'] = 'Atkurk'; $_LANG['Sale date:'] = 'Pardavimo data:'; $_LANG['Sale Registry'] = 'Pardavim? registracija'; -$_LANG['Sale Registry for period $0 - $1'] = 'Pardavim? registracija uŸ laikotarp? $0 - $1'; +$_LANG['Sale Registry for period $a - $b'] = 'Pardavim? registracija uŸ laikotarp? $a - $b'; $_LANG['Save'] = '?račyk'; $_LANG['Save & Print'] = '?račyk ir spausdink'; $_LANG['Scan'] = 'Skanuok'; @@ -1235,7 +1235,7 @@ $_LANG['SMTP settings.'] = 'SMTP nustatymai.'; $_LANG['Sorting:'] = 'R?čiavimas:'; $_LANG['Specified address does not belongs to any network!'] = 'Pasirinktas adresas nepriklauso jokiam tinklui!'; -$_LANG['Specified address is not a network address, setting $0'] = 'Pasirinktas adresas n?ra tinklo adresu, nustatau $0'; +$_LANG['Specified address is not a network address, setting $a'] = 'Pasirinktas adresas n?ra tinklo adresu, nustatau $a'; $_LANG['Specified domain contains forbidden characters!'] = 'Domenas turi neleistin? Ÿenkl? nustatau!'; $_LANG['Specified e-mail is not correct!'] = 'Pasirinktas el. pačtas yra neteisingas!'; $_LANG['Specified gateway address does not match with network address!'] = 'Apbir?Ÿtas vart? adresas nepadengia tinklo adreso!'; @@ -1247,7 +1247,7 @@ $_LANG['Specified MAC address is in use!'] = 'Pasirinktas MAC adresas jau yra naudojamas!'; $_LANG['Specified name contains forbidden characters!'] = 'Pasirinktas pavadinimas turi neleistin? Ÿenkl?!'; $_LANG['Specified name is in use!'] = 'Pasirinktas pavadinimas jau yra naudojamas!'; -$_LANG['Specified name is too long (max.$0 characters)!'] = 'Pasirinktas pavadinimas yra per ilgas (daugiausia $0 Ÿenkl?)!'; +$_LANG['Specified name is too long (max.$a characters)!'] = 'Pasirinktas pavadinimas yra per ilgas (daugiausia $a Ÿenkl?)!'; $_LANG['Specify format of verbal amounts representation (on invoices). e.g. for value "1" verbal expand of 123,15 will be "one two thr 15/100". Default: 0.'] = 'Apibr?Ÿkite skaièi? Ÿodin?s reprezentacijos tip± (s±skaitose fakt?rose). Pvz. vertei "1" Ÿodinis sumos apibr?Ÿimas 123,15 atrodys taip "vienas du tris 15/100". Numanoma: 0.'; $_LANG['Specify time (in seconds), after which node will be marked offline. It should match with frequency of running nodes activity script (i.e. lms-fping). Default: 600.'] = 'Apibr?Ÿkite laik± (sekund?mis) po kurio kompiuteris bus laikomas ičjungtu. Tai turi atitikti skripto, kuris tikrina kompiuteri? aktyvum± (pvz. lms-fping), daŸnum±. Numanoma: 600.'; $_LANG['SQL query executed while reload, if reload_type = sql. Default: empty. You can use \'%TIME%\' as replacement to current unix timestamp. WARNING! Semicolon is handled as query separator, which means that you can enter couple of SQL queries separated by semicolon sign.'] = 'UŸklausa SQL atliekama perkrovimo metu jei reload_type = sql. Numanoma: tučèia. UŸklausoje galima naudoti kintam±j? \'%TIME%\' kaip tikro laiko uŸračyto formatu UNIX_TIMESTAMP pakaital±. D?MESIO! Kabliatačkis yra laikomas uŸklaus? atskirimo Ÿenklu. Tai reičkia, kad galite ?račyti kelet± SQL uŸklaus? atskirt? kabliatačkiais.'; @@ -1274,9 +1274,9 @@ $_LANG['System message:'] = 'Sistemin? Ÿinut?:'; $_LANG['System version:'] = 'Sistemos versija:'; $_LANG['Table of financial operations'] = 'Finansini? operacij? lentel?'; -$_LANG['Subscription $0 already exists!'] = '?kainis $0 jau yra!'; -$_LANG['Subscription Edit: $0'] = '?kainio redagavimas: $0'; -$_LANG['Subscription Info: $0'] = 'Informacija apie ?kain?: $0'; +$_LANG['Subscription $a already exists!'] = '?kainis $a jau yra!'; +$_LANG['Subscription Edit: $a'] = '?kainio redagavimas: $a'; +$_LANG['Subscription Info: $a'] = 'Informacija apie ?kain?: $a'; $_LANG['Subscription List'] = '?kaini? s±račas'; $_LANG['Subscription name required!'] = 'Reikalingas ?kainio pavadinimas!'; $_LANG['Subscription not selected!'] = 'Nepasirinktas ?kainis!'; @@ -1317,13 +1317,13 @@ $_LANG['This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation.'] = '©i programa yra laisvai pasiekiama, gali j± platinti toliau ir/arba tobulinti remdamasis Visuotin?s Viečos Licencijos GNU, kuri± ičdav? Atviro kodo fondas, s±lygomis ? pagal 2-±j± čios licencijos versij± arba v?lesnê'; $_LANG['This queue is empty.'] = '©i eil? yra tučèia.'; $_LANG['Ticket date:'] = 'Paraičkos data:'; -$_LANG['Ticket Edit: $0'] = 'Paraičkos redagavimas: $0'; +$_LANG['Ticket Edit: $a'] = 'Paraičkos redagavimas: $a'; $_LANG['Ticket History'] = 'Paraičkos istorija'; $_LANG['Ticket must have its body!'] = 'Paraička turi b?ti uŸpildyta!'; $_LANG['Ticket must have its title!'] = 'Paraička privalo tur?ti pavadinim±!'; -$_LANG['Ticket No. $0'] = 'Paraička Nr. $0'; +$_LANG['Ticket No. $a'] = 'Paraička Nr. $a'; $_LANG['Ticket Review'] = 'Paraičkos perŸi?ra'; -$_LANG['Ticket Review: $0'] = 'Paraičkos perŸi?ra: $0'; +$_LANG['Ticket Review: $a'] = 'Paraičkos perŸi?ra: $a'; $_LANG['Tickets'] = 'Paraičkos'; $_LANG['Ticket Search'] = 'Paraičk? paiečka'; $_LANG['Tickets searching'] = 'Paraičk? paiečka'; @@ -1341,10 +1341,10 @@ $_LANG['To (day/month/year hh:mm):'] = 'Iki (diena/m?nuo/metai vv:mm):'; $_LANG['To pay:'] = 'Iki apmok?jimo:'; $_LANG['Total:'] = 'Ič viso:'; -$_LANG['Total: $0'] = 'Ič viso: $0'; +$_LANG['Total: $a'] = 'Ič viso: $a'; $_LANG['Total Dues:'] = 'Ič viso skolinink?:'; $_LANG['Total Invoiceless Income'] = 'Bendros uŸsiskaitin?s pajamos '; -$_LANG['Total Invoiceless Income ($0 to $1)'] = 'Bendros uŸsiskaitin?s pajamos ($0 do $1)'; +$_LANG['Total Invoiceless Income ($a to $b)'] = 'Bendros uŸsiskaitin?s pajamos ($a do $b)'; $_LANG['Total Tax'] = 'Mokesèi? suma'; $_LANG['Type:'] = 'Tipas:'; $_LANG['Type/Quota:'] = 'Tipas/Kvota:'; @@ -1354,7 +1354,7 @@ $_LANG['Unit:'] = 'Vienetas'; $_LANG['Unitary Net Value:'] = 'Vieneto netto kaina:'; $_LANG['Unknown option. No description.'] = 'NeŸinoma pasirinktis. Tr?ksta apračymo.'; -$_LANG['unknown OS ($0)'] = 'neŸinomas OS ($0)'; +$_LANG['unknown OS ($a)'] = 'neŸinomas OS ($a)'; $_LANG['Unresolved:'] = 'Neičsprêsta:'; $_LANG['Upceil:'] = 'Upceil:'; $_LANG['Upload'] = 'Upload'; @@ -1370,8 +1370,8 @@ $_LANG['User'] = 'Vartotojas'; $_LANG['User:'] = 'Vartotojas:'; $_LANG['User-defined stats'] = 'Statistika apibr?Ÿta vartotojo'; -$_LANG['User Edit: $0'] = 'Vartotojo redagavimas: $0'; -$_LANG['User Info: $0'] = 'Informacija apie vartotoj±: $0'; +$_LANG['User Edit: $a'] = 'Vartotojo redagavimas: $a'; +$_LANG['User Info: $a'] = 'Informacija apie vartotoj±: $a'; $_LANG['User Interface'] = 'Vartotojo interfejs'; $_LANG['User Interface Configuration'] = 'Vartotojo interfejso konfig?racija'; $_LANG['User interface language code. If not set, language will be determined on browser settings. Default: en.'] = 'Vartotojo interfejso klabos kodas. Jei nepasirinkta, tai bus bazin? narčykl?s kalba. Numanoma: en.'; @@ -1387,12 +1387,12 @@ $_LANG['Value:'] = 'Vert?:'; $_LANG['Value and description:'] = 'Vert? ir apračymas:'; $_LANG['Value of tax rate which will be selected by default on tax rates lists. Default: 22.0'] = 'Procentin? tarifo reikčm?, kuri turi b?ti nurodyta tarifo pasirinkimo s±račuose. Numanoma: 22.0'; -$_LANG['Value of option "$0" must be a number grater than zero!'] = 'Pasirinkimo vert?"$0" turi b?ti didesn? nei nulis!'; +$_LANG['Value of option "$a" must be a number grater than zero!'] = 'Pasirinkimo vert?"$a" turi b?ti didesn? nei nulis!'; $_LANG['Value required!'] = 'Reikalinga vert?!'; $_LANG['View'] = 'Rodymas'; $_LANG['waiting'] = 'laukiantis'; $_LANG['Waiting:'] = 'Laukiantis:'; -$_LANG['Warning! Debug mode (using address $0).'] = 'D?MESIO! Redagavimo b?sena (naudoju adres± $0).'; +$_LANG['Warning! Debug mode (using address $a).'] = 'D?MESIO! Redagavimo b?sena (naudoju adres± $a).'; $_LANG['Warning! This is example document (default template). You can create your own template in documents/templates/ directory.'] = 'D?mesio tai yra pavyzdinis dokumentas (numanoma čablonas). Galite sukurti nuosavus čablonus kataloge documents/templates/.'; $_LANG['WARNING! It will backup current database content automatically'] = 'D?MESIO! Sukels tai automatin? atsargin?s kopijos dabartin?s duomen? baz?s suk?rim±'; $_LANG['Warning message:'] = '?sp?jimo turinys:'; @@ -1401,7 +1401,7 @@ $_LANG['Warning! This version of LMS is under development! Remember that it might work unstable and certainly has still many bugs! If you need stability try 1.10 version!'] = '?sp?jimas! ©i LMS versija čiuo metu pleèiama! Prisimink, kad gali b?ti nestabili ir tikrai turi klaid?! Jei nori stabilumo ičbandyk versij± 1.10!'; $_LANG['WARNING! THIS WILL DELETE ALL DATA FROM DATABASE!!!'] = 'D?MESIO! BUS I©TRINTI VISI DUOMENYS I© DUOMEN? BAZ?S!!!'; $_LANG['weekly'] = 'savaitinis'; -$_LANG['weekly ($0)'] = 'savaitinis ($0)'; +$_LANG['weekly ($a)'] = 'savaitinis ($a)'; $_LANG['Welcome to LMS'] = 'Sveikinu LMS?e'; $_LANG['When:'] = 'Kada:'; $_LANG['When enabled, all messages in helpdesk system (except those sent to requester) will be sent to mail server corresponding queue address. lms-rtparser script should be running on server. Messages won\'t be written directly to database, but on solely responsibility of rtparser script. Default: disabled.'] = 'Kai ?jungta, visos Ÿinut?s Helpdesk sistemoje (ičskyrus tas nuo pareičk?jo) bus siunèiamos pačto serveriui ataitinkamos eil?s adresu. Skryptas lms-rtparser turi veikti serveryje. źinut?s duomen? bazei bus ?račytos skripto pagalba. Numanoma: ičjungta.'; @@ -1417,7 +1417,7 @@ $_LANG['Wrong password or login.'] = 'Klaidingas slaptaŸodis arba login.'; $_LANG['www'] = 'www'; $_LANG['yearly'] = 'per metus'; -$_LANG['yearly ($0)'] = 'per metus ($0)'; +$_LANG['yearly ($a)'] = 'per metus ($a)'; $_LANG['yes'] = 'taip'; $_LANG['Yes, I am sure.'] = 'Taip, esu tikras'; $_LANG['Yes, I do.'] = 'Taip, noriu.'; @@ -1443,7 +1443,7 @@ $_LANG['You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'] = 'Tikriausiai su čia programa gavai ir Visuotin?s Viečos Licencijos GNU egzempliori?, jei ne ? račyk ? Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.'; $_LANG['Zip:'] = 'Kodas:'; $_LANG['Add tax rate'] = 'Prid?k tarif±'; -$_LANG['Are you sure, you want to delete taxrate \\\'$0\\\'?'] = 'Esate tikras, kad norite pačalinti tarif± \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete taxrate \\\'$a\\\'?'] = 'Esate tikras, kad norite pačalinti tarif± \\\'$a\\\'?'; $_LANG['Binds from date:'] = '?pareigoja nuo:'; $_LANG['Binds to date:'] = '?pareigoja iki:'; $_LANG['Display this form again, when this tax rate is saved'] = 'parodyk form± dar kart± po tarifo prid?jimo'; @@ -1457,7 +1457,7 @@ $_LANG['No such tax rates in database.'] = 'N?ra mokesèio tarif? duomen? baz?je.'; $_LANG['Select taxing status'] = 'Pasirink apmokestinimo b?sen±'; $_LANG['Taxing:'] = 'Apmokestinimas:'; -$_LANG['Tax Rate Edit: $0'] = 'Mokesèio tarifo redagavimas: $0'; +$_LANG['Tax Rate Edit: $a'] = 'Mokesèio tarifo redagavimas: $a'; $_LANG['Tax rate label is required!'] = 'Mokesèio tarifo etiket? reikalinga!'; $_LANG['Tax Rates'] = 'Mokesèi? tarifai'; $_LANG['Tax Rates Definitions'] = 'Mokesèi? tarif? apibr?Ÿimas'; @@ -1465,7 +1465,7 @@ $_LANG['Tax rate value is not numeric!'] = 'Mokesèio tarifo vert? n?ra skaièius!'; $_LANG['annex'] = 'priedas'; $_LANG['Are you sure, you want to remove that document?'] = 'Esi tikras, kad nori pačalinti č? dokument±?'; -$_LANG['Can\'t save file in "$0" directory!'] = 'Negalima ?račyti failo ? katalog± "$0"!'; +$_LANG['Can\'t save file in "$a" directory!'] = 'Negalima ?račyti failo ? katalog± "$a"!'; $_LANG['Customer\'s Documents:'] = 'Kliento dokumentai:'; $_LANG['Display this form again, when that document is saved'] = 'Parodyk či± form± dar kart± po dokumento prid?jimo'; $_LANG['Document number must be an integer!'] = 'Dokumento numeris turei b?ti sveikas skaièius!'; @@ -1496,7 +1496,7 @@ $_LANG['No. of issued documents:'] = 'Ičračyta dokument?:'; $_LANG['Document type:'] = 'Dokumento tipas:'; $_LANG['Default:'] = 'Numanus:'; -$_LANG['Are you sure, you want to delete numberplan \\\'$0\\\'?'] = 'Esi tikras, kad nori pačalinti plan± \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete numberplan \\\'$a\\\'?'] = 'Esi tikras, kad nori pačalinti plan± \\\'$a\\\'?'; $_LANG['Numbering Plans List'] = 'Numeravimo plan? s±račas'; $_LANG['Add plan'] = 'Prid?k plan±'; $_LANG['cash receipt'] = 'kasos dokumentas'; @@ -1508,7 +1508,7 @@ $_LANG['New Numbering Plan'] = 'Naujas numeravimo planas'; $_LANG['No such numbering plans in database.'] = 'Duomen? baz?je n?ra numeravimo plan?.'; $_LANG['Numbering period is required!'] = 'Numeravimo periodas yra reikalingas!'; -$_LANG['Numbering Plan Edit: $0'] = 'Numeravimo plano redagavimas: $0'; +$_LANG['Numbering Plan Edit: $a'] = 'Numeravimo plano redagavimas: $a'; $_LANG['Number template is required!'] = 'Reikalingas numerio čablonas!'; $_LANG['select document type'] = 'Ičsirink dokumento tip±'; $_LANG['Selected document type has already defined default plan!'] = 'Pasirinktam dokumento tipui jau priskirtas apibr?Ÿtas numanus planas!'; @@ -1516,18 +1516,18 @@ $_LANG['Select numbering plan'] = 'Pasirink numeravimo plan±'; $_LANG['select period'] = 'pasirink period±'; $_LANG['Template must consist "%N" specifier!'] = '©ablonas turi b?ti su specyfikatoriu "%N"!'; -$_LANG['Are you sure, you want to remove credit note \\\'$0\\\' from database?'] = 'Esi tikras, jog nori pačalinti taisanèi± fakt?r± \\\'$0\\\' ič duomen? baz?s?'; +$_LANG['Are you sure, you want to remove credit note \\\'$a\\\' from database?'] = 'Esi tikras, jog nori pačalinti taisanèi± fakt?r± \\\'$a\\\' ič duomen? baz?s?'; $_LANG['Corrected to:'] = 'Ičtaisyta ?:'; $_LANG['credit memo'] = 'taisantis uŸračas'; $_LANG['credit note'] = 'taisanti fakt?ra'; $_LANG['Credit note'] = 'Taisanti fakt?ra'; -$_LANG['Credit Note for Invoice: $0'] = 'Fakt?ros taisymas: $0'; -$_LANG['Credit Note No. $0'] = 'Taisymas Nr. $0'; +$_LANG['Credit Note for Invoice: $a'] = 'Fakt?ros taisymas: $a'; +$_LANG['Credit Note No. $a'] = 'Taisymas Nr. $a'; $_LANG['Credit note number:'] = 'Taisanèios fakt?ros numeris:'; -$_LANG['Credit note number $0 already exists!'] = 'Fakt?ra taisanti numer? $0 jau yra!'; +$_LANG['Credit note number $a already exists!'] = 'Fakt?ra taisanti numer? $a jau yra!'; $_LANG['Credit note number must be integer!'] = 'Taisanèios fakt?ros numeris turi b?ti sveikas skaièius!'; $_LANG['Enter credit note number. WARNING! Changing this number can be DANGEROUS! (leave this field empty to obtain next number)'] = '?veskite taisanèios fakt?ros numer?. D?MESIO! ©io numerio pakeitimas gali b?ti PAVOJINGAS! (palik č? lauk± tučèi±, kad gautum kit± numer?)'; -$_LANG['for Invoice No. $0'] = 'PVM Fakt?rai Nr $0'; +$_LANG['for Invoice No. $a'] = 'PVM Fakt?rai Nr $a'; $_LANG['Recover this item'] = 'SugraŸink či± pozicij±'; $_LANG['Remove this item'] = 'Ičtrink či± pozicij±'; $_LANG['Revise'] = 'Taisyk'; @@ -1545,7 +1545,7 @@ $_LANG['select template'] = 'pasirink čablon±'; $_LANG['Select template to generate new document if you haven\'t got prepared file'] = 'Jei neturi paruočto failo, pasirink čablon± naujo dokumento paruočimui'; $_LANG['WINS:'] = 'WINS:'; -$_LANG['last $0 documents'] = 'paskutiniai $0 dokumentai'; +$_LANG['last $a documents'] = 'paskutiniai $a dokumentai'; $_LANG['Last operation:'] = 'Paskutin? operacija:'; $_LANG['Limit of records displayed on one page in documents list. Default: 100.'] = 'Viename dokument? s±račo puslapyje ?rač? limitas. Numanoma: 100.'; $_LANG['All documents'] = 'Visi dokumentai'; @@ -1557,7 +1557,7 @@ $_LANG['No such stats for selected period.'] = 'N?ra statistiko čiuo periodu.'; $_LANG['Receipts'] = 'Patvirtinimas'; $_LANG['Select period'] = 'Pasirink period±'; -$_LANG['Stats of Customer $0 in month $1'] = 'Kliento statistika $0 uŸ m?nes? $1'; +$_LANG['Stats of Customer $a in month $b'] = 'Kliento statistika $a uŸ m?nes? $b'; $_LANG['Year:'] = 'Metai:'; $_LANG['Add items'] = 'Prid?k pozicijas'; $_LANG['Last 10 not accounted invoices:'] = 'Paskutin?s 10 neapmok?t? fakt?r?:'; @@ -1580,7 +1580,7 @@ $_LANG['Liability name/description is required!'] = 'Reikia ?sipareigojimo pavadinimo/apračo'; $_LANG['Liability value not specified!'] = 'Nenurodyta ?sipareigojimo vert?!'; $_LANG['or'] = 'arba'; -$_LANG['Customer ID: $0'] = 'Kliento ID: $0'; +$_LANG['Customer ID: $a'] = 'Kliento ID: $a'; $_LANG['Enter balance limit (default 0)'] = '?veskite balanso limit± (numanoma 0)'; $_LANG['Transfer forms'] = 'Pavedimo formos'; $_LANG['Not set'] = 'Nenustatyta'; @@ -1601,46 +1601,46 @@ $_LANG['Add registry'] = 'Naujas Registras'; $_LANG['Advanced (+R)'] = 'PaŸangus (+O)'; $_LANG['All receipts in that registry will be lost.'] = 'Visi patvirtinimai čiame registre bus pačalinti.'; -$_LANG['Are you sure, you want to remove registry \\\'$0\\\' and all assigned receipts?'] = 'AR esi tikras, jog nori pačalinti registr± \\\'$0\\\' ir visus susietus patvirtinimus?'; +$_LANG['Are you sure, you want to remove registry \\\'$a\\\' and all assigned receipts?'] = 'AR esi tikras, jog nori pačalinti registr± \\\'$a\\\' ir visus susietus patvirtinimus?'; $_LANG['Cash-in receipt numbering plan:'] = '?mok? kvit? numeravimo planas:'; $_LANG['cash operations'] = 'kasos operacijos'; $_LANG['Cash-out receipt numbering plan:'] = 'Ičmok? kvit? numeravimo planas:'; $_LANG['Cash Registries List'] = 'Kasos registr? s±račas'; -$_LANG['Cash Registry: $0'] = 'Kasos registras: $0'; -$_LANG['Cash Registry Info: $0'] = 'Informacija apie registr±: $0'; +$_LANG['Cash Registry: $a'] = 'Kasos registras: $a'; +$_LANG['Cash Registry Info: $a'] = 'Informacija apie registr±: $a'; $_LANG['CR-in'] = 'Pajam? kvitas'; $_LANG['CR-out'] = 'Ičlaid? kvitas'; -$_LANG['Do you want to remove registry "$0"?'] = 'Ar tikrai nori pačalinti registr± "$0"?'; -$_LANG['Edit Cash Registry: $0'] = 'Kasos registro redagavimas: $0'; +$_LANG['Do you want to remove registry "$a"?'] = 'Ar tikrai nori pačalinti registr± "$a"?'; +$_LANG['Edit Cash Registry: $a'] = 'Kasos registro redagavimas: $a'; $_LANG['List of cash registries'] = 'Kasos registr? s±račas'; $_LANG['New Cash Registry'] = 'Naujas kasos registras'; $_LANG['Proof of Pay-out'] = '?mokos kvitas'; $_LANG['Registry name must be defined!'] = 'Reikia registro pavadinimo!'; $_LANG['Registry with specified name already exists!'] = 'Registras su tokiu pavadinimu jau yra!'; -$_LANG['Removing registry "$0"'] = 'Registro pačalinimas "$0"'; -$_LANG['Selected customer is in debt for $0!'] = 'Pasirinktas klientas ?siskolinês $0!'; +$_LANG['Removing registry "$a"'] = 'Registro pačalinimas "$a"'; +$_LANG['Selected customer is in debt for $a!'] = 'Pasirinktas klientas ?siskolinês $a!'; $_LANG['- select numbering plan -'] = '- pasirink numeravimo plan± -'; $_LANG['There are no cash registries.'] = 'N?ra kasos registr?'; $_LANG['To whom:'] = 'Kam:'; $_LANG['Cash Receipts'] = 'Kasos dokumentai'; $_LANG['Cash Registry:'] = 'Kasos registras:'; $_LANG['Moving assets:'] = 'L?č? perk?limas:'; -$_LANG['Moving assets from registry $0 ($1)'] = 'L?č? ič registro perk?limas $0 ($1)'; -$_LANG['Moving assets to registry $0'] = 'L?č? ? registr± perk?limas $0'; +$_LANG['Moving assets from registry $a ($b)'] = 'L?č? ič registro perk?limas $a ($b)'; +$_LANG['Moving assets to registry $a'] = 'L?č? ? registr± perk?limas $a'; $_LANG['Select cash registry'] = 'Pasirink kasos registr±'; $_LANG['- select registry -'] = '- pasirink registr± -'; $_LANG['Target:'] = 'Taikinys:'; $_LANG['There is no cash in selected registry!'] = 'Pasirinktame registre n?ra l?č?!'; -$_LANG['There is no cash in selected registry! You can expense only $0.'] = 'Pasirinktame registre n?ra l?č?! Galima ičduoti tik $0.'; +$_LANG['There is no cash in selected registry! You can expense only $a.'] = 'Pasirinktame registre n?ra l?č?! Galima ičduoti tik $a.'; $_LANG['You don\'t have permission to add receipt in selected cash registry!'] = 'Neturi ?galiojim? prid?ti dokumento rejestrui!'; $_LANG['Registry:'] = 'Registras:'; $_LANG['Expense'] = 'Ičlaidos'; $_LANG['Income'] = 'Pajamos'; $_LANG['No such cash receipts in database.'] = 'Duomen? baz?je n?ra kasos dokument?.'; -$_LANG['Registry: $0'] = 'Registras: $0'; -$_LANG['Cashier: $0'] = 'Kasininkas: $0'; -$_LANG['Cash-in Receipt Edit: $0'] = 'Pajam? kvito redagavimas: $0'; -$_LANG['Cash-out Receipt Edit: $0'] = 'Ičlaid? kvito redagavimas: $0'; +$_LANG['Registry: $a'] = 'Registras: $a'; +$_LANG['Cashier: $a'] = 'Kasininkas: $a'; +$_LANG['Cash-in Receipt Edit: $a'] = 'Pajam? kvito redagavimas: $a'; +$_LANG['Cash-out Receipt Edit: $a'] = 'Ičlaid? kvito redagavimas: $a'; $_LANG['Cash Registry'] = 'Kasos registras'; $_LANG['payed out'] = 'ičmok?jau'; $_LANG['received'] = 'gavau'; @@ -1659,7 +1659,7 @@ $_LANG['Confirm'] = 'Patvirtink'; $_LANG['Confirmed:'] = 'Patvirtintas:'; $_LANG['Deleted:'] = 'Pačalintas:'; -$_LANG['Edit Document: $0'] = 'Dokumento redagavimas: $0'; +$_LANG['Edit Document: $a'] = 'Dokumento redagavimas: $a'; $_LANG['Additional number:'] = 'Papildomas numeris:'; $_LANG['Enter additional document number'] = '?veskite papildom± dokumento numer?'; $_LANG['income/expense'] = 'pajamos/ičlaidos'; @@ -1709,7 +1709,7 @@ $_LANG['Plan:'] = 'Planas:'; $_LANG['Additional information:'] = 'Papildoma informacija:'; $_LANG['extended format'] = 'prapl?stas formatas'; -$_LANG['Page $0 from $1'] = 'Puslapis $0 z $1'; +$_LANG['Page $a from $b'] = 'Puslapis $a z $b'; $_LANG['Page total:'] = 'Ič viso puslapyje:'; $_LANG['Total from start of period:'] = 'Ič viso nuo periodo pradŸios:'; $_LANG['Transfered from previous page:'] = 'Perk?limas ič ankstesnio puslapio:'; @@ -1740,12 +1740,12 @@ $_LANG['Select request cause'] = 'Pasirink paraičkos prieŸast?'; $_LANG['unknown/other'] = 'neŸinoma/kita'; $_LANG['unknown/other'] = 'neŸinomi/kiti'; -$_LANG['Go to $0 page'] = 'Eik ? puslap? $0'; +$_LANG['Go to $a page'] = 'Eik ? puslap? $a'; $_LANG['Requests causes (last year):'] = 'Paraičk? prieŸastys (paskutiniai metai):'; $_LANG['Adds helpdesk requests causes stats on ticket view and print pages. Default: true'] = 'Prideda paraičk? prieŸasèi? statistik± perŸi?ros puslapyje ir spausdinime. Numanoma: ičjungta'; $_LANG['Enables page scroller designed for lists with very big number of pages. Default: false'] = '?jungia puslapio keitimo form± turint minty s±račus su dideliu puslapi? kiekiu. Numanoma: ičjungta'; $_LANG['Support for EtherWerX devices. Default: false'] = '?jungia palaikym± ?renginiams EtherWerX. Numanoma: ičjungta'; -$_LANG['Customers requesting more than $0 times in last $1 days'] = 'Klientai teikinatis paraičkas daŸniau nei $0 kart? per paskutines $1 dienas'; +$_LANG['Customers requesting more than $a times in last $b days'] = 'Klientai teikinatis paraičkas daŸniau nei $a kart? per paskutines $b dienas'; $_LANG['List of Requests'] = 'Paraičk? s±račas'; $_LANG['Lists and reports printing'] = 'S±rač? ir raport? spausdinimas'; $_LANG['Reports'] = 'Raportai'; @@ -1776,7 +1776,7 @@ $_LANG['- select filter -'] = '- pasirink filtr± -'; $_LANG['Settle advance'] = 'Ičmok?k avans±'; $_LANG['Not accounted advances:'] = 'Neičmok?ti avansai:'; -$_LANG['Advance settlement: $0'] = 'Avanso ičmok?jimas: $0'; +$_LANG['Advance settlement: $a'] = 'Avanso ičmok?jimas: $a'; $_LANG['settlement'] = 'ičmok?jimas'; $_LANG['return'] = 'gr±Ÿinimas'; $_LANG['Recipient:'] = 'Gav?jas:'; @@ -1787,7 +1787,7 @@ $_LANG['Description is required!'] = 'Reikia apračo!'; $_LANG['Enter receipt description'] = '?veskite patvirtinimo aprač±'; $_LANG['Recipient name is required!'] = 'Gav?jo pavadinimas reikalingas!'; -$_LANG['There is only $0 in registry!'] = 'Registre yra tik $0!'; +$_LANG['There is only $a in registry!'] = 'Registre yra tik $a!'; $_LANG['Value is required!'] = 'Reikalinga kvota!'; $_LANG['Delete (+R)'] = '©alinimas (+O)'; $_LANG['Are you sure, you want to delete that note?'] = 'Ar tikrai nori pačalinti či± pasatb±?'; @@ -1822,7 +1822,7 @@ $_LANG['Wrong datetime format!'] = 'Klaidingas datos/laiko formatas!'; $_LANG['Real state:'] = 'Tikra b?sena:'; $_LANG['Select All'] = 'PaŸym?k visus'; -$_LANG['There is newer version of LMS ($0) available for download from $1.'] = '$1 puslapyje yra pasiekiama nauja sistemos versija - $0.'; +$_LANG['There is newer version of LMS ($a) available for download from $b.'] = '$b puslapyje yra pasiekiama nauja sistemos versija - $a.'; $_LANG['Are you sure, you want to delete selected documents?'] = 'Ar tikrai nori pačalinti paŸym?tus dokumentus?'; $_LANG['Enter Gadu-Gadu ID (optional)'] = '?veskite identifikavimo numer? Gadu-Gadu (pasirinktinai)'; $_LANG['Enter Skype ID (optional)'] = '?veskite Skype identifikatori? (pasirinktinai)'; @@ -1860,8 +1860,8 @@ $_LANG['Selected'] = 'PaŸym?ti'; $_LANG['customers groups management'] = 'klient? grupi? valdymas'; $_LANG['Groups:'] = 'Grup?s:'; -$_LANG['Group: $0'] = 'Grup?: $0'; -$_LANG['Group: all excluding $0'] = 'Grup?: visi ičskyrus $0'; +$_LANG['Group: $a'] = 'Grup?: $a'; +$_LANG['Group: all excluding $a'] = 'Grup?: visi ičskyrus $a'; $_LANG['Position:'] = 'Pad?tis:'; $_LANG['Configuration error. Patterns array not found!'] = 'Konfig?racijos klaida. PavyzdŸi? lentel? nerasta!'; $_LANG['Line:'] = 'Linija:'; @@ -1878,7 +1878,7 @@ $_LANG['Date from the future not allowed!'] = 'Data ič ateities negalima!'; $_LANG['no guarantee'] = 'brokas'; $_LANG['Select days number of cutoff suspending (optional)'] = 'Pasirink blokavimo sustabdymo dien? kiek? (pasirinktinai)'; -$_LANG['Cutoff suspended to $0'] = 'Blokavimas sustabdytas iki dienos $0'; +$_LANG['Cutoff suspended to $a'] = 'Blokavimas sustabdytas iki dienos $a'; $_LANG['Customer has got disconnected nodes!'] = 'Klientas turi ičjungt? kompiuteri?!'; $_LANG['Clone'] = 'Klonuok'; $_LANG['Add node to group'] = 'Prid?k kompiuterius prie grup?s'; @@ -1894,14 +1894,14 @@ $_LANG['Select group to attribute to node'] = 'Pasirink grupê kad priskirtum j± kompiuteriui'; $_LANG['That node is not a member of any group.'] = '©is kompiuteris nepriklauso jokiai grupei.'; $_LANG['Remove Group'] = 'Ičtrink grupê'; -$_LANG['Node\'s Groups ($0):'] = 'Kompiuterio grup?s ($0):'; +$_LANG['Node\'s Groups ($a):'] = 'Kompiuterio grup?s ($a):'; $_LANG['Are you sure, you want to delete that group?'] = 'Ar tikrai nori pačalinti či± grupê?'; $_LANG['Are you sure, you want to move members to selected group?'] = 'Ar tekaria nori perkelti čios grup?s narius?'; $_LANG['Move members to group:'] = 'Perkelk narius ? grupê:'; $_LANG['Select group to which you want to move members'] = 'Pasirink grupê ? kuri± nori perkelti narius'; $_LANG['Default period value for assignment. Default: 0'] = 'Pakrovos laikotarpio numanoma vert?. Numanomai: 0'; -$_LANG['Customer has got nodes in group(s): $0!'] = 'Kliento kompiuteris(iai) priklauso grupei(?ms): $0!'; -$_LANG['Customer has got nodes in groups: $0!'] = 'Klientas turi kompiuterius grup?se: $0!'; +$_LANG['Customer has got nodes in group(s): $a!'] = 'Kliento kompiuteris(iai) priklauso grupei(?ms): $a!'; +$_LANG['Customer has got nodes in groups: $a!'] = 'Klientas turi kompiuterius grup?se: $a!'; $_LANG['Dest. port'] = 'Tikslinis portas'; $_LANG['Device:'] = '?renginys:'; $_LANG['Enter port number in device for connection (optional)'] = '?veskite prijungiamo ?renginio porto numer? (pasirinktinai)'; @@ -1919,15 +1919,15 @@ $_LANG['Destination:'] = 'Tikslas:'; $_LANG['Login'] = 'Prisijungimo vardas'; $_LANG['Accounts number:'] = 'S±skait? skaièius:'; -$_LANG['Account Info: $0'] = 'Informacija apie s±sakait±: $0'; +$_LANG['Account Info: $a'] = 'Informacija apie s±sakait±: $a'; $_LANG['Aliases number:'] = 'Pseudonim? skaièius:'; -$_LANG['Alias Edit: $0'] = 'Pseudonimo redagavimas: $0'; -$_LANG['Alias Info: $0'] = 'Informacija apie pseudonim±: $0'; +$_LANG['Alias Edit: $a'] = 'Pseudonimo redagavimas: $a'; +$_LANG['Alias Info: $a'] = 'Informacija apie pseudonim±: $a'; $_LANG['Are you sure, you want to delete that account?'] = 'Ar tikrai norite pačalinti či± s±skait±?'; $_LANG['Are you sure, you want to delete that alias?'] = 'Ar tikari norite pačalinti č? pseudonim±?'; $_LANG['Are you sure, you want to delete that domain and all accounts/aliases in that domain?'] = 'Ar tikrai nori pačalinti č? domen± ir visas s±skaitas/pseudonimus su ja susijusius?'; $_LANG['Domain\'s owner:'] = 'Domeno savininkas:'; -$_LANG['Domain Info: $0'] = 'Informacija apie domen±: $0'; +$_LANG['Domain Info: $a'] = 'Informacija apie domen±: $a'; $_LANG['Hosting'] = 'Hostingas'; $_LANG['Node group:'] = 'Kompiuteri? grup?:'; $_LANG['You have to select destination account!'] = 'Turi pasirinkti tikslinê s±skait±!'; @@ -1963,12 +1963,12 @@ $_LANG['Quota limit of shell account:'] = 'shell s±skaitos dydŸio limitas:'; $_LANG['Quota limit of sql account:'] = 'sql s±skaitos dydŸio limitas:'; $_LANG['Quota limit of www account:'] = 'www s±skaitos dydŸio limitas:'; -$_LANG['Exceeded \'$0\' accounts limit of selected customer ($1)!'] = 'Virčytas s±skait? tipo \'$0\' skaièiaus limitas pasirinktam klientui ($1)!'; -$_LANG['Exceeded \'$0\' account quota limit of selected customer ($1)!'] = 'Virčytas s±skait? tipo \'$0\' dydŸio limitas pasirinktam klientui ($1)!'; -$_LANG['Exceeded aliases limit of selected customer ($0)!'] = 'Virčytas pseudonim? skaièiaus limitas pasirinktam klientui ($0)!'; -$_LANG['Exceeded domains limit of selected customer ($0)!'] = 'Virčytas domen? skaièiaus limitas pasirinktma klientui ($0)!'; -$_LANG['Account aliases ($0):'] = '©ios s±skaitos pseudonimai ($0)'; -$_LANG['Are you sure, you want to delete assignment with alias: \\\'$0\\\'?'] = 'Ar tikrai nori pačalinti s±saj± su pseudonimu: \\\'$0\\\'?'; +$_LANG['Exceeded \'$a\' accounts limit of selected customer ($b)!'] = 'Virčytas s±skait? tipo \'$a\' skaièiaus limitas pasirinktam klientui ($b)!'; +$_LANG['Exceeded \'$a\' account quota limit of selected customer ($b)!'] = 'Virčytas s±skait? tipo \'$a\' dydŸio limitas pasirinktam klientui ($b)!'; +$_LANG['Exceeded aliases limit of selected customer ($a)!'] = 'Virčytas pseudonim? skaièiaus limitas pasirinktam klientui ($a)!'; +$_LANG['Exceeded domains limit of selected customer ($a)!'] = 'Virčytas domen? skaièiaus limitas pasirinktma klientui ($a)!'; +$_LANG['Account aliases ($a):'] = '©ios s±skaitos pseudonimai ($a)'; +$_LANG['Are you sure, you want to delete assignment with alias: \\\'$a\\\'?'] = 'Ar tikrai nori pačalinti s±saj± su pseudonimu: \\\'$a\\\'?'; $_LANG['Delete assignment'] = 'Ičtrink s±saj±'; $_LANG['There are no aliases for that account.'] = '©ios s±skaitos pseudonim? n?ra.'; $_LANG['New alias'] = 'Naujas pseudonimas'; @@ -1999,7 +1999,7 @@ $_LANG['Consent to personal data processing:'] = 'Sutikimas naudoti asmens duomenis:'; $_LANG['no consent'] = 'n?ra sutikimo'; $_LANG['TRANSFER'] = 'PERVEDIMAS'; -$_LANG['Rows: $0'] = 'Eiluèi? skaièius: $0'; +$_LANG['Rows: $a'] = 'Eiluèi? skaièius: $a'; $_LANG['private person'] = 'fizinis asmuo'; $_LANG['legal entity'] = 'juridinis/ fizinis asmuo'; $_LANG['Select legal personality type'] = 'Pasirink asmens teisin? status±'; @@ -2010,7 +2010,7 @@ $_LANG['in date:'] = 'nuo dienos:'; $_LANG['Legal personality:'] = 'Teisinis statusas:'; $_LANG['Add state'] = 'Prid?k apskrit?'; -$_LANG['Are you sure, you want to delete state \\\'$0\\\'?'] = 'Ar tikrai nori pačalinti apskrit? \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete state \\\'$a\\\'?'] = 'Ar tikrai nori pačalinti apskrit? \\\'$a\\\'?'; $_LANG['Country States Definitions'] = 'Apskrièi? pavadinimai'; $_LANG['Display this form again, when this state is saved'] = 'Parodyk blank± dar kart± prid?jus apskrit?'; $_LANG['Enter state name'] = '?veskite apskrities pavadinim±'; @@ -2019,7 +2019,7 @@ $_LANG['Select personality type'] = 'Pasirink asmens teisin? status±'; $_LANG['States'] = 'Apskritys'; $_LANG['States List'] = 'Apskrièi? s±račas'; -$_LANG['State Edit: $0'] = 'Apskrities redagavimas: $0'; +$_LANG['State Edit: $a'] = 'Apskrities redagavimas: $a'; $_LANG['State name is required!'] = 'Reikia apskrities pavadinimo!'; $_LANG['Select country state'] = 'Pasirink apskrit?'; $_LANG['Select country state (optional)'] = 'Pasirink apskrit? (pasirinktinai)'; @@ -2029,7 +2029,7 @@ $_LANG['nodes to groups assignment'] = 'kompiuteri? priričimas prie grupi?'; $_LANG['Address is required!'] = 'Reikalimgas adresas!'; $_LANG['Add division'] = 'Nauja ?mon?'; -$_LANG['Are you sure, you want to delete division \\\'$0\\\'?'] = 'Ar tikrai nori paačlinti ?monê \\\'$0\\\'?'; +$_LANG['Are you sure, you want to delete division \\\'$a\\\'?'] = 'Ar tikrai nori paačlinti ?monê \\\'$a\\\'?'; $_LANG['Bank account:'] = 'Banko s±sakaita:'; $_LANG['City is required!'] = 'Reikalingas miestas!'; $_LANG['Company Divisions Definitions'] = '?moni? apibr?Ÿimai'; @@ -2039,7 +2039,7 @@ $_LANG['Division long name is required!'] = 'Reikia viso ?mon?s pavadinimo!'; $_LANG['Division short name is required!'] = 'Reikia sutrumpinto ?mon?s pavadinimo!'; $_LANG['Division with specified name already exists!'] = '?mon? su tokiu pavadinimu jau yra!'; -$_LANG['Edit Division: $0'] = '?mon?s redagavimas: $0'; +$_LANG['Edit Division: $a'] = '?mon?s redagavimas: $a'; $_LANG['Enter bank account or mass payments account prefix (optional)'] = '?veskite banko s±skaitos numer? arba masini? pavedim? s±skaitos prefiks± (pasirinktinai)'; $_LANG['Enter division long name'] = '?veskite vis± ?mon?s pavadinim±'; $_LANG['Enter division short name'] = '?veskite sutrumpint± ?mon?s pavadinim±'; From cvs w lms.org.pl Fri Oct 14 18:09:06 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:06 +0200 (CEST) Subject: [lms-commits] CVS update of lms/templates (107 files) Message-ID: <20111014160907.42FB830278A8@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:06 Author: chilek Path: /cvsroot/lms/templates Modified: accountinfo.html accountlist.html aliaslist.html balancelist.html calendar_js.html cashimport.html cashreglist.html cashsourcelist.html chooseip.html configedit.html configlist.html customerassignments.html customerbalancebox.html customerdocuments.html customerevents.html customergrouplist.html customerinfobox.html customerlist.html customermessages.html customernodesbox.html customersearchresults.html customervoipaccountsbox.html daemoninstancelist.html daemoninstanceview.html dblist.html divisionlist.html domainlist.html eventedit.html eventprint.html ewxchlist.html header.html hostlist.html invoice.html invoicelist.html invoicereport-ext.html invoicereport.html messageinfo.html messagelist.html netdevadd.html netdevconnbox.html netdevinfobox.html netdevipbox.html netdevipinfobox.html netdevlist.html netdevlistshort.html netdevnodes.html netdevsearchresults.html netinfo.html netlist.html nodegrouplist.html nodegrouplistshort.html nodeinfobox.html nodelist.html nodelistshort.html nodesearchresults.html note.html notelist.html numberplanlist.html paymentlist.html printbalancelist.html printcustomerbalance.html printcustomerlist.html printcustomertraffic.html printimportlist.html printincomereport.html printindebtnodelist.html printliabilityreport.html printnodelist.html printreceiptlist-ext.html printreceiptlist.html printvoipaccountlist.html promotionlist.html promotionschemadata.html promotionschemas.html promotiontariffs.html receipt.html receiptlist.html recordlist.html rtcategoryedit.html rtcategoryinfo.html rtcategorylist.html rtmessageadd.html rtnoteadd.html rtprintindex.html rtprintstats.html rtprinttickets-ext.html rtprinttickets.html rtqueueedit.html rtqueueinfo.html rtqueuelist.html rtqueueview.html rtsearch.html rtsearchresults.html rtticketadd.html rtticketeditbox.html rtticketinfobox.html rtticketinfoshort.html rtticketprint.html scroller.html statelist.html tarifflist.html taxratelist.html traffic.html voipaccountinfobox.html voipaccountlist.html voipaccountsearchresults.html welcome.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/templates/accountinfo.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/templates/accountlist.html.diff?&r1=1.49&r2=1.50 http://cvs.lms.org.pl/viewvc/Development/lms/templates/aliaslist.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/templates/balancelist.html.diff?&r1=1.94&r2=1.95 http://cvs.lms.org.pl/viewvc/Development/lms/templates/calendar_js.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/templates/cashimport.html.diff?&r1=1.23&r2=1.24 http://cvs.lms.org.pl/viewvc/Development/lms/templates/cashreglist.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/cashsourcelist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/chooseip.html.diff?&r1=1.36&r2=1.37 http://cvs.lms.org.pl/viewvc/Development/lms/templates/configedit.html.diff?&r1=1.19&r2=1.20 http://cvs.lms.org.pl/viewvc/Development/lms/templates/configlist.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerassignments.html.diff?&r1=1.43&r2=1.44 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerbalancebox.html.diff?&r1=1.49&r2=1.50 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerdocuments.html.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerevents.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customergrouplist.html.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerinfobox.html.diff?&r1=1.49&r2=1.50 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customerlist.html.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customermessages.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customernodesbox.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customersearchresults.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/templates/customervoipaccountsbox.html.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/templates/daemoninstancelist.html.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/templates/daemoninstanceview.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/dblist.html.diff?&r1=1.31&r2=1.32 http://cvs.lms.org.pl/viewvc/Development/lms/templates/divisionlist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/domainlist.html.diff?&r1=1.25&r2=1.26 http://cvs.lms.org.pl/viewvc/Development/lms/templates/eventedit.html.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/templates/eventprint.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/templates/ewxchlist.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/header.html.diff?&r1=1.134&r2=1.135 http://cvs.lms.org.pl/viewvc/Development/lms/templates/hostlist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/invoice.html.diff?&r1=1.72&r2=1.73 http://cvs.lms.org.pl/viewvc/Development/lms/templates/invoicelist.html.diff?&r1=1.83&r2=1.84 http://cvs.lms.org.pl/viewvc/Development/lms/templates/invoicereport-ext.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/invoicereport.html.diff?&r1=1.23&r2=1.24 http://cvs.lms.org.pl/viewvc/Development/lms/templates/messageinfo.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/messagelist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevadd.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevconnbox.html.diff?&r1=1.30&r2=1.31 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevinfobox.html.diff?&r1=1.27&r2=1.28 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevipbox.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevipinfobox.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevlist.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevlistshort.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevnodes.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netdevsearchresults.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netinfo.html.diff?&r1=1.68&r2=1.69 http://cvs.lms.org.pl/viewvc/Development/lms/templates/netlist.html.diff?&r1=1.48&r2=1.49 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodegrouplist.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodegrouplistshort.html.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodeinfobox.html.diff?&r1=1.75&r2=1.76 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodelist.html.diff?&r1=1.103&r2=1.104 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodelistshort.html.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/templates/nodesearchresults.html.diff?&r1=1.54&r2=1.55 http://cvs.lms.org.pl/viewvc/Development/lms/templates/note.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/notelist.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/numberplanlist.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/templates/paymentlist.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printbalancelist.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printcustomerbalance.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printcustomerlist.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printcustomertraffic.html.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printimportlist.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printincomereport.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printindebtnodelist.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printliabilityreport.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printnodelist.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printreceiptlist-ext.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printreceiptlist.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/printvoipaccountlist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/promotionlist.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/promotionschemadata.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/promotionschemas.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/promotiontariffs.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/receipt.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/templates/receiptlist.html.diff?&r1=1.25&r2=1.26 http://cvs.lms.org.pl/viewvc/Development/lms/templates/recordlist.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtcategoryedit.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtcategoryinfo.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtcategorylist.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtmessageadd.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtnoteadd.html.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtprintindex.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtprintstats.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtprinttickets-ext.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtprinttickets.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtqueueedit.html.diff?&r1=1.23&r2=1.24 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtqueueinfo.html.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtqueuelist.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtqueueview.html.diff?&r1=1.55&r2=1.56 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtsearch.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtsearchresults.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtticketadd.html.diff?&r1=1.30&r2=1.31 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtticketeditbox.html.diff?&r1=1.24&r2=1.25 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtticketinfobox.html.diff?&r1=1.32&r2=1.33 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtticketinfoshort.html.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/templates/rtticketprint.html.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/templates/scroller.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/statelist.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/templates/tarifflist.html.diff?&r1=1.69&r2=1.70 http://cvs.lms.org.pl/viewvc/Development/lms/templates/taxratelist.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/templates/traffic.html.diff?&r1=1.53&r2=1.54 http://cvs.lms.org.pl/viewvc/Development/lms/templates/voipaccountinfobox.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/voipaccountlist.html.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/templates/voipaccountsearchresults.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/templates/welcome.html.diff?&r1=1.88&r2=1.89 Index: lms/templates/accountinfo.html diff -u lms/templates/accountinfo.html:1.15 lms/templates/accountinfo.html:1.16 --- lms/templates/accountinfo.html:1.15 Wed Mar 10 14:08:32 2010 +++ lms/templates/accountinfo.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -185,7 +185,7 @@ Index: lms/templates/accountlist.html diff -u lms/templates/accountlist.html:1.49 lms/templates/accountlist.html:1.50 --- lms/templates/accountlist.html:1.49 Wed Aug 26 11:22:21 2009 +++ lms/templates/accountlist.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - + {if $layout.module=="accountsearch"}{assign var=suffix value="&s=1"}{/if}

{$layout.pagetitle}

- {t 0=$account.aliases|@count}Account aliases ($0):{/t} + {t a=$account.aliases|@count}Account aliases ($a):{/t} {t}New alias{/t} »  @@ -209,9 +209,9 @@ ({$alias.id|string_format:"%04d"}) - {assign var=name value="`$alias.login`@`$alias.domain`} - [ {t}Delete assignment{/t} ] - [ {t}Delete{/t} ] + {assign var=name value="`$alias.login`@`$alias.domain`"} + [ {t}Delete assignment{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ]
@@ -22,7 +22,7 @@ {t}Expiration date:{/t}{if $listdata.order eq "expdate"} {/if} @@ -109,7 +109,7 @@ [ {t}Change password{/t} ] [ {t}Create alias{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ] Index: lms/templates/aliaslist.html diff -u lms/templates/aliaslist.html:1.29 lms/templates/aliaslist.html:1.30 --- lms/templates/aliaslist.html:1.29 Sun May 9 15:27:53 2010 +++ lms/templates/aliaslist.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - + {if $layout.module=="aliassearch"}{assign var=suffix value="&s=1"}{/if}

{$layout.pagetitle}

- {t 0=$listdata.total}Total: $0{/t}  + {t a=$listdata.total}Total: $a{/t} 
@@ -16,7 +16,7 @@ {t}Destination:{/t} {if $listdata.order eq "dest"}{/if} @@ -74,8 +74,8 @@ {if $aliaslist[aliaslist].forwards}{$aliaslist[aliaslist].forwards|replace:",":"
\"\""}{/if} @@ -98,7 +98,7 @@ {/if} Index: lms/templates/rtprintstats.html diff -u lms/templates/rtprintstats.html:1.2 lms/templates/rtprintstats.html:1.3 --- lms/templates/rtprintstats.html:1.2 Mon Oct 22 10:44:31 2007 +++ lms/templates/rtprintstats.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="clearheader.html"} - +
- {t 0=$listdata.total}Total: $0{/t} + {t a=$listdata.total}Total: $a{/t}
- {assign var=alias value="`$aliaslist[aliaslist].login`@`$aliaslist[aliaslist].domain`} - [ {t}Delete{/t} ] + {assign var=alias value="`$aliaslist[aliaslist].login`@`$aliaslist[aliaslist].domain`"} + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ]
- {t 0=$listdata.total}Total: $0{/t} + {t a=$listdata.total}Total: $a{/t} {t}New Alias{/t} Index: lms/templates/balancelist.html diff -u lms/templates/balancelist.html:1.94 lms/templates/balancelist.html:1.95 --- lms/templates/balancelist.html:1.94 Wed Mar 2 11:31:06 2011 +++ lms/templates/balancelist.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

{include file="calendar_js.html"} {literal} @@ -169,13 +169,13 @@ {if $balancelist[balancelist].userid}{$balancelist[balancelist].user|truncate:16:"...":true}{else}-{/if}
- {if $balancelist[balancelist].covenant}{$balancelist[balancelist].value*-1|money_format}{else}-{/if} + {if $balancelist[balancelist].covenant}{($balancelist[balancelist].value*-1)|money_format}{else}-{/if} {if !$balancelist[balancelist].covenant && $balancelist[balancelist].value > 0}{$balancelist[balancelist].value|money_format}{else}-{/if} - {if !$balancelist[balancelist].covenant && $balancelist[balancelist].value < 0}{$balancelist[balancelist].value*-1|money_format}{else}-{/if} + {if !$balancelist[balancelist].covenant && $balancelist[balancelist].value < 0}{($balancelist[balancelist].value*-1)|money_format}{else}-{/if} » @@ -196,13 +196,13 @@ {if $balancelist[balancelist].docid} {if $balancelist[balancelist].doctype==$smarty.const.DOC_INVOICE} - [ {t}Invoice{/t} ] + [ {t}Invoice{/t} ] {elseif $balancelist[balancelist].doctype==$smarty.const.DOC_CNOTE} - [ {t}Credit note{/t} ] + [ {t}Credit note{/t} ] {elseif $balancelist[balancelist].doctype==$smarty.const.DOC_RECEIPT} - [ {t}Cash receipt{/t} ] + [ {t}Cash receipt{/t} ] {elseif $balancelist[balancelist].doctype==$smarty.const.DOC_DNOTE} - [ {t}Debit note{/t} ] + [ {t}Debit note{/t} ] {/if} {/if} Index: lms/templates/calendar_js.html diff -u lms/templates/calendar_js.html:1.8 lms/templates/calendar_js.html:1.9 --- lms/templates/calendar_js.html:1.8 Thu Mar 31 20:19:17 2011 +++ lms/templates/calendar_js.html Fri Oct 14 18:09:03 2011 @@ -108,18 +108,18 @@ var arr_date = str_date.split('/'); - if (arr_date.length != 3) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nFormat accepted is 'YYYY/MM/DD hh:mm'.{/t}{literal}"); - if (!arr_date[0]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo year value can be found.{/t}{literal}"); - if (!RE_NUM.exec(arr_date[0])) return cal_error ("{/literal}{t 0="'\" + arr_date[0] + \"'"}Invalid year value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); - if (!arr_date[1]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo month value can be found.{/t}{literal}"); - if (!RE_NUM.exec(arr_date[1])) return cal_error ("{/literal}{t 0="'\" + arr_date[1] + \"'"}Invalid month value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); - if (!arr_date[2]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo day of month value can be found.{/t}{literal}"); - if (!RE_NUM.exec(arr_date[2])) return cal_error ("{/literal}{t 0="'\" + arr_date[2] + \"'"}Invalid day of month value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + if (arr_date.length != 3) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nFormat accepted is 'YYYY/MM/DD hh:mm'.{/t}{literal}"); + if (!arr_date[0]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo year value can be found.{/t}{literal}"); + if (!RE_NUM.exec(arr_date[0])) return cal_error ("{/literal}{t a="'\" + arr_date[0] + \"'"}Invalid year value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); + if (!arr_date[1]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo month value can be found.{/t}{literal}"); + if (!RE_NUM.exec(arr_date[1])) return cal_error ("{/literal}{t a="'\" + arr_date[1] + \"'"}Invalid month value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); + if (!arr_date[2]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo day of month value can be found.{/t}{literal}"); + if (!RE_NUM.exec(arr_date[2])) return cal_error ("{/literal}{t a="'\" + arr_date[2] + \"'"}Invalid day of month value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); var dt_date = new Date(); dt_date.setDate(1); - if (arr_date[1] < 1 || arr_date[1] > 12) return cal_error ("{/literal}{t 0="'\" + arr_date[1] + \"'"}Invalid month value: $0.\nAllowed range is 01-12.{/t}{literal}"); + if (arr_date[1] < 1 || arr_date[1] > 12) return cal_error ("{/literal}{t a="'\" + arr_date[1] + \"'"}Invalid month value: $a.\nAllowed range is 01-12.{/t}{literal}"); dt_date.setMonth(arr_date[1]-1); if (arr_date[0] < 100) arr_date[0] = Number(arr_date[0]) + (arr_date[0] < NUM_CENTYEAR ? 2000 : 1900); @@ -127,7 +127,7 @@ var dt_numdays = new Date(arr_date[0], arr_date[1], 0); dt_date.setDate(arr_date[2]); - if (dt_date.getMonth() != (arr_date[1]-1)) return cal_error ("{/literal}{t 0="'\" + arr_date[2] + \"'" 1="\"+dt_numdays.getDate()+\""}Invalid day of month value: $0.\nAllowed range is 01-$1.{/t}{literal}"); + if (dt_date.getMonth() != (arr_date[1]-1)) return cal_error ("{/literal}{t a="'\" + arr_date[2] + \"'" b="\"+dt_numdays.getDate()+\""}Invalid day of month value: $a.\nAllowed range is 01-$b.{/t}{literal}"); return (dt_date) } @@ -141,14 +141,14 @@ if (!arr_time[0]) dt_date.setHours(0); else if (RE_NUM.exec(arr_time[0])) if (arr_time[0] < 24) dt_date.setHours(arr_time[0]); - else return cal_error ("{/literal}{t 0="'\" + arr_time[0] + \"'"}Invalid hour value: $0.\nAllowed range is 00-23.{/t}{literal}"); - else return cal_error ("{/literal}{t 0="'\" + arr_time[0] + \"'"}Invalid hour value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[0] + \"'"}Invalid hour value: $a.\nAllowed range is 00-23.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[0] + \"'"}Invalid hour value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); if (!arr_time[1]) dt_date.setMinutes(0); else if (RE_NUM.exec(arr_time[1])) if (arr_time[1] < 60) dt_date.setMinutes(arr_time[1]); - else return cal_error ("{/literal}{t 0="'\" + arr_time[1] + \"'"}Invalid minutes value: $0.\nAllowed range is 00-59.{/t}{literal}"); - else return cal_error ("{/literal}{t 0="'\" + arr_time[1] + \"'"}Invalid minutes value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[1] + \"'"}Invalid minutes value: $a.\nAllowed range is 00-59.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[1] + \"'"}Invalid minutes value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); dt_date.setMilliseconds(0); return dt_date; Index: lms/templates/cashimport.html diff -u lms/templates/cashimport.html:1.23 lms/templates/cashimport.html:1.24 --- lms/templates/cashimport.html:1.23 Fri Mar 18 09:51:43 2011 +++ lms/templates/cashimport.html Fri Oct 14 18:09:03 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

{literal} -{popup_init src="img/overlib.js"} + + {if !$layout.popup}
@@ -31,13 +32,13 @@ {foreach from=$newmenu item=menuitem name=menu}
-
+
*{$menuitem.name}
{if $menuitem.submenu} {foreach from=$menuitem.submenu item=submenuitem} -
+ {/foreach} Index: lms/templates/hostlist.html diff -u lms/templates/hostlist.html:1.2 lms/templates/hostlist.html:1.3 --- lms/templates/hostlist.html:1.2 Tue Mar 6 10:29:09 2007 +++ lms/templates/hostlist.html Fri Oct 14 18:09:04 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -37,7 +37,7 @@ {foreachelse} Index: lms/templates/invoice.html diff -u lms/templates/invoice.html:1.72 lms/templates/invoice.html:1.73 --- lms/templates/invoice.html:1.72 Wed Aug 31 12:58:13 2011 +++ lms/templates/invoice.html Fri Oct 14 18:09:04 2011 @@ -1,4 +1,4 @@ - +
[ {t}Edit{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ]
@@ -6,10 +6,10 @@ {number number=$invoice.number template=$invoice.template time=$invoice.cdate assign=number} {if $invoice.invoice} {number number=$invoice.invoice.number template=$invoice.invoice.template time=$invoice.invoice.cdate assign=number_ref} - {t 0=$number}Credit Note No. $0{/t}
- {t 0=$number_ref}for Invoice No. $0{/t}
+ {t a=$number}Credit Note No. $a{/t}
+ {t a=$number_ref}for Invoice No. $a{/t}
{else} - {t 0=$number}Invoice No. $0{/t}
+ {t a=$number}Invoice No. $a{/t}
{/if} {$type} {if $duplicate} @@ -349,7 +349,7 @@ {if $_config.phpui.to_words_short_version|chkconfig} {$invoice.value|string_format:"%d"|to_words:0:"":1} {$invoice.valuep|string_format:"%02d"}/100 {else} - {t 0=$invoice.value|string_format:"%d"|to_words 1=$invoice.valuep|to_words}$0 dollars $1 cents{/t} + {t a=$invoice.value|string_format:"%d"|to_words b=$invoice.valuep|to_words}$a dollars $b cents{/t} {/if} Index: lms/templates/invoicelist.html diff -u lms/templates/invoicelist.html:1.83 lms/templates/invoicelist.html:1.84 --- lms/templates/invoicelist.html:1.83 Mon Apr 4 13:52:03 2011 +++ lms/templates/invoicelist.html Fri Oct 14 18:09:04 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

{if $invoice.invoice} @@ -146,7 +146,7 @@ {if $receipt.value > 0}{$receipt.value|money_format}{else}-{/if} - + Index: lms/templates/rtcategoryinfo.html diff -u lms/templates/rtcategoryinfo.html:1.1 lms/templates/rtcategoryinfo.html:1.2 --- lms/templates/rtcategoryinfo.html:1.1 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtcategoryinfo.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

- {if $receipt.value < 0}{$receipt.value*-1|money_format}{else}-{/if} + {if $receipt.value < 0}{($receipt.value*-1)|money_format}{else}-{/if} {if $receipt.customerid}{/if} @@ -162,7 +162,7 @@ {if !$receipt.closed} [ {t}Settle advance{/t} ] {/if} - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Print{/t} ] Index: lms/templates/recordlist.html diff -u lms/templates/recordlist.html:1.3 lms/templates/recordlist.html:1.4 --- lms/templates/recordlist.html:1.3 Fri Apr 9 19:01:32 2010 +++ lms/templates/recordlist.html Fri Oct 14 18:09:05 2011 @@ -7,7 +7,7 @@ {t}Type{/t}: {t}Priority:{/t} {t}Content{/t}:{t 0=$listdata.total}Total: $0{/t} {t a=$listdata.total}Total: $a{/t} 
@@ -51,7 +51,7 @@ [ {t}Edit{/t} ] {if $recordslist[recordslist].type != "SOA"} - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] {/if} {/if} Index: lms/templates/rtcategoryedit.html diff -u lms/templates/rtcategoryedit.html:1.1 lms/templates/rtcategoryedit.html:1.2 --- lms/templates/rtcategoryedit.html:1.1 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtcategoryedit.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -55,7 +55,7 @@
{t}Submit{/t} - {t}Delete{/t} + {t}Delete{/t} {t}Cancel{/t}
@@ -62,7 +62,7 @@
{t}Browse{/t} {t}Edit{/t} - {t}Delete{/t} + {t}Delete{/t}

Index: lms/templates/rtcategorylist.html diff -u lms/templates/rtcategorylist.html:1.1 lms/templates/rtcategorylist.html:1.2 --- lms/templates/rtcategorylist.html:1.1 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtcategorylist.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -52,7 +52,7 @@ Index: lms/templates/rtmessageadd.html diff -u lms/templates/rtmessageadd.html:1.26 lms/templates/rtmessageadd.html:1.27 --- lms/templates/rtmessageadd.html:1.26 Sun Dec 28 20:03:28 2008 +++ lms/templates/rtmessageadd.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -96,7 +96,7 @@

[ {t}Browse{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ]

-{include file="footer.html} +{include file="footer.html"} {literal} -{include file="footer.html} +{include file="footer.html"} Index: lms/templates/rtprintindex.html diff -u lms/templates/rtprintindex.html:1.8 lms/templates/rtprintindex.html:1.9 --- lms/templates/rtprintindex.html:1.8 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtprintindex.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -153,7 +153,7 @@
- {t 0="" 1=""}Customers requesting more than $0 times in last $1 days{/t} + {t a="" b=""}Customers requesting more than $a times in last $b days{/t}
@@ -8,7 +8,7 @@ LMS {$layout.lmsv} @ {$layout.hostname}
{$smarty.now|date_format:"%A, %x"}
- {t 0=$layout.logname}Prepared by: $0{/t} + {t a=$layout.logname}Prepared by: $a{/t}
Index: lms/templates/rtprinttickets-ext.html diff -u lms/templates/rtprinttickets-ext.html:1.1 lms/templates/rtprinttickets-ext.html:1.2 --- lms/templates/rtprinttickets-ext.html:1.1 Mon Jan 18 09:33:31 2010 +++ lms/templates/rtprinttickets-ext.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="clearheader.html"} - +
@@ -8,7 +8,7 @@ LMS {$layout.lmsv} @ {$layout.hostname}
{$smarty.now|date_format:"%A, %x"}
- {t 0=$layout.logname}Prepared by: $0{/t} + {t a=$layout.logname}Prepared by: $a{/t}
Index: lms/templates/rtprinttickets.html diff -u lms/templates/rtprinttickets.html:1.4 lms/templates/rtprinttickets.html:1.5 --- lms/templates/rtprinttickets.html:1.4 Wed Jul 11 18:55:23 2007 +++ lms/templates/rtprinttickets.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="clearheader.html"} - +
@@ -8,7 +8,7 @@ LMS {$layout.lmsv} @ {$layout.hostname}
{$smarty.now|date_format:"%A, %x"}
- {t 0=$layout.logname}Prepared by: $0{/t} + {t a=$layout.logname}Prepared by: $a{/t}
Index: lms/templates/rtqueueedit.html diff -u lms/templates/rtqueueedit.html:1.23 lms/templates/rtqueueedit.html:1.24 --- lms/templates/rtqueueedit.html:1.23 Sun Dec 28 20:03:29 2008 +++ lms/templates/rtqueueedit.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -80,7 +80,7 @@ {t}Submit{/t} - {t}Delete{/t} + {t}Delete{/t} {t}Cancel{/t} Index: lms/templates/rtqueueinfo.html diff -u lms/templates/rtqueueinfo.html:1.17 lms/templates/rtqueueinfo.html:1.18 --- lms/templates/rtqueueinfo.html:1.17 Mon Mar 8 10:59:21 2010 +++ lms/templates/rtqueueinfo.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -86,7 +86,7 @@
{t}Browse{/t} {t}Edit{/t} - {t}Delete{/t} + {t}Delete{/t}

Index: lms/templates/rtqueuelist.html diff -u lms/templates/rtqueuelist.html:1.20 lms/templates/rtqueuelist.html:1.21 --- lms/templates/rtqueuelist.html:1.20 Wed Aug 26 11:22:22 2009 +++ lms/templates/rtqueuelist.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -49,7 +49,7 @@ Index: lms/templates/rtqueueview.html diff -u lms/templates/rtqueueview.html:1.55 lms/templates/rtqueueview.html:1.56 --- lms/templates/rtqueueview.html:1.55 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtqueueview.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

[ {t}Browse{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ]
@@ -80,13 +80,13 @@ Index: lms/templates/rtsearch.html diff -u lms/templates/rtsearch.html:1.22 lms/templates/rtsearch.html:1.23 --- lms/templates/rtsearch.html:1.22 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtsearch.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

@@ -29,8 +29,8 @@

@@ -71,8 +71,8 @@ @@ -131,4 +131,4 @@ document.forms['search'].elements['search[subject]'].focus(); //--> -{include file="footer.html} +{include file="footer.html"} Index: lms/templates/rtsearchresults.html diff -u lms/templates/rtsearchresults.html:1.20 lms/templates/rtsearchresults.html:1.21 --- lms/templates/rtsearchresults.html:1.20 Wed Aug 26 11:22:22 2009 +++ lms/templates/rtsearchresults.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

{if $queue[ticket].state == 0} - + {elseif $queue[ticket].state == 1} - + {elseif $queue[ticket].state == 2} - + {elseif $queue[ticket].state == 3} - + {/if} @@ -107,7 +107,7 @@ {/if} {$queue[ticket].subject|escape|truncate:"60":"..."|default:" "}
{if $queue[ticket].customerid} - + {$queue[ticket].requestor|escape|truncate:"60":"..."} ({$queue[ticket].address}) @@ -131,7 +131,7 @@
[ {t}Print{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ] {t}or Customer ID:{/t} @@ -57,8 +57,8 @@
@@ -37,13 +37,13 @@ Index: lms/templates/rtticketadd.html diff -u lms/templates/rtticketadd.html:1.30 lms/templates/rtticketadd.html:1.31 --- lms/templates/rtticketadd.html:1.30 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtticketadd.html Fri Oct 14 18:09:05 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - + -{include file="footer.html} +{include file="footer.html"} Index: lms/templates/rtticketeditbox.html diff -u lms/templates/rtticketeditbox.html:1.24 lms/templates/rtticketeditbox.html:1.25 --- lms/templates/rtticketeditbox.html:1.24 Fri Sep 16 22:48:17 2011 +++ lms/templates/rtticketeditbox.html Fri Oct 14 18:09:05 2011 @@ -1,4 +1,4 @@ - + {/if} {include file="footer.html"} From cvs w lms.org.pl Fri Oct 14 18:09:01 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:01 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules (107 files) Message-ID: <20111014160902.3EA4230278A0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:01 Author: chilek Path: /cvsroot/lms/modules Modified: accountadd.php accountedit.php accountinfo.php accountpasswd.php aliasadd.php aliasedit.php aliasinfo.php cashpackagedel.php cashregdel.php cashregedit.php cashreginfo.php cashsourceedit.php configedit.php customer.inc.php customerassignmentadd.php customerassignmentedit.php customerbalance.php customerdel.php customeredit.php customergroupadd.php customergroupedit.php customergroupinfo.php customerinfo.php customerprint.php daemonconfigadd.php daemonconfigedit.php daemoninstanceedit.php daemoninstanceview.php dbdel.php dbrecover.php divisionedit.php documentadd.php documentedit.php documentgen.php documenttypeedit.php domainadd.php domainedit.php domaininfo.php ewxchdel.php ewxchedit.php ewxchinfo.php hostedit.php invoice.php invoice_pdf.inc.php invoiceedit.php invoicenew.php invoicenote.php invoicereport.php messageadd.php messageinfo.php netadd.php netcmp.php netdel.php netdevdel.php netdevedit.php netdevinfo.php netedit.php netinfo.php netremap.php nodedel.php nodeedit.php nodegroupadd.php nodegroupedit.php nodegroupinfo.php nodeinfo.php note.php noteadd.php noteedit.php number.php numberplanedit.php paymentedit.php paymentinfo.php print.php promotionedit.php promotioninfo.php promotionschemaedit.php promotionschemainfo.php receipt.php receipt_pdf.php receiptadd.php receiptadv.php receiptedit.php receiptlist.php reload.php rtcategorydel.php rtcategoryedit.php rtcategoryinfo.php rtqueuedel.php rtqueueedit.php rtqueueinfo.php rtticketedit.php rtticketprint.php rtticketview.php stateedit.php tariffedit.php tariffinfo.php taxrateedit.php trafficdbcompact.php trafficprint.php transferforms.php transferforms2.php useredit.php userinfo.php userpasswd.php voipaccountdel.php voipaccountedit.php voipaccountinfo.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/accountadd.php.diff?&r1=1.51&r2=1.52 http://cvs.lms.org.pl/viewvc/Development/lms/modules/accountedit.php.diff?&r1=1.49&r2=1.50 http://cvs.lms.org.pl/viewvc/Development/lms/modules/accountinfo.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/accountpasswd.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/aliasadd.php.diff?&r1=1.30&r2=1.31 http://cvs.lms.org.pl/viewvc/Development/lms/modules/aliasedit.php.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/modules/aliasinfo.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/cashpackagedel.php.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/modules/cashregdel.php.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/modules/cashregedit.php.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/modules/cashreginfo.php.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/modules/cashsourceedit.php.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/modules/configedit.php.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customer.inc.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerassignmentadd.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerassignmentedit.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerbalance.php.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerdel.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customeredit.php.diff?&r1=1.46&r2=1.47 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customergroupadd.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customergroupedit.php.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customergroupinfo.php.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerinfo.php.diff?&r1=1.25&r2=1.26 http://cvs.lms.org.pl/viewvc/Development/lms/modules/customerprint.php.diff?&r1=1.23&r2=1.24 http://cvs.lms.org.pl/viewvc/Development/lms/modules/daemonconfigadd.php.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/modules/daemonconfigedit.php.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/modules/daemoninstanceedit.php.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/modules/daemoninstanceview.php.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/modules/dbdel.php.diff?&r1=1.42&r2=1.43 http://cvs.lms.org.pl/viewvc/Development/lms/modules/dbrecover.php.diff?&r1=1.58&r2=1.59 http://cvs.lms.org.pl/viewvc/Development/lms/modules/divisionedit.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/modules/documentadd.php.diff?&r1=1.47&r2=1.48 http://cvs.lms.org.pl/viewvc/Development/lms/modules/documentedit.php.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/modules/documentgen.php.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/modules/documenttypeedit.php.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/modules/domainadd.php.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/modules/domainedit.php.diff?&r1=1.32&r2=1.33 http://cvs.lms.org.pl/viewvc/Development/lms/modules/domaininfo.php.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/modules/ewxchdel.php.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/modules/ewxchedit.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/ewxchinfo.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/hostedit.php.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoice.php.diff?&r1=1.85&r2=1.86 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoice_pdf.inc.php.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoiceedit.php.diff?&r1=1.39&r2=1.40 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoicenew.php.diff?&r1=1.87&r2=1.88 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoicenote.php.diff?&r1=1.48&r2=1.49 http://cvs.lms.org.pl/viewvc/Development/lms/modules/invoicereport.php.diff?&r1=1.54&r2=1.55 http://cvs.lms.org.pl/viewvc/Development/lms/modules/messageadd.php.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/modules/messageinfo.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netadd.php.diff?&r1=1.55&r2=1.56 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netcmp.php.diff?&r1=1.39&r2=1.40 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netdel.php.diff?&r1=1.39&r2=1.40 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netdevdel.php.diff?&r1=1.28&r2=1.29 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netdevedit.php.diff?&r1=1.73&r2=1.74 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netdevinfo.php.diff?&r1=1.34&r2=1.35 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netedit.php.diff?&r1=1.63&r2=1.64 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netinfo.php.diff?&r1=1.45&r2=1.46 http://cvs.lms.org.pl/viewvc/Development/lms/modules/netremap.php.diff?&r1=1.37&r2=1.38 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodedel.php.diff?&r1=1.44&r2=1.45 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodeedit.php.diff?&r1=1.120&r2=1.121 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodegroupadd.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodegroupedit.php.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodegroupinfo.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/nodeinfo.php.diff?&r1=1.72&r2=1.73 http://cvs.lms.org.pl/viewvc/Development/lms/modules/note.php.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/modules/noteadd.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/modules/noteedit.php.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/modules/number.php.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/modules/numberplanedit.php.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/modules/paymentedit.php.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/modules/paymentinfo.php.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/modules/print.php.diff?&r1=1.141&r2=1.142 http://cvs.lms.org.pl/viewvc/Development/lms/modules/promotionedit.php.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/promotioninfo.php.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/promotionschemaedit.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/promotionschemainfo.php.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receipt.php.diff?&r1=1.27&r2=1.28 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receipt_pdf.php.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receiptadd.php.diff?&r1=1.65&r2=1.66 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receiptadv.php.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receiptedit.php.diff?&r1=1.41&r2=1.42 http://cvs.lms.org.pl/viewvc/Development/lms/modules/receiptlist.php.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/modules/reload.php.diff?&r1=1.53&r2=1.54 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtcategorydel.php.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtcategoryedit.php.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtcategoryinfo.php.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtqueuedel.php.diff?&r1=1.25&r2=1.26 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtqueueedit.php.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtqueueinfo.php.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtticketedit.php.diff?&r1=1.45&r2=1.46 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtticketprint.php.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/modules/rtticketview.php.diff?&r1=1.44&r2=1.45 http://cvs.lms.org.pl/viewvc/Development/lms/modules/stateedit.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/tariffedit.php.diff?&r1=1.55&r2=1.56 http://cvs.lms.org.pl/viewvc/Development/lms/modules/tariffinfo.php.diff?&r1=1.41&r2=1.42 http://cvs.lms.org.pl/viewvc/Development/lms/modules/taxrateedit.php.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/modules/trafficdbcompact.php.diff?&r1=1.35&r2=1.36 http://cvs.lms.org.pl/viewvc/Development/lms/modules/trafficprint.php.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/modules/transferforms.php.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/modules/transferforms2.php.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/modules/useredit.php.diff?&r1=1.101&r2=1.102 http://cvs.lms.org.pl/viewvc/Development/lms/modules/userinfo.php.diff?&r1=1.58&r2=1.59 http://cvs.lms.org.pl/viewvc/Development/lms/modules/userpasswd.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/modules/voipaccountdel.php.diff?&r1=1.4&r2=1.5 http://cvs.lms.org.pl/viewvc/Development/lms/modules/voipaccountedit.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/voipaccountinfo.php.diff?&r1=1.8&r2=1.9 Index: lms/modules/accountadd.php diff -u lms/modules/accountadd.php:1.51 lms/modules/accountadd.php:1.52 --- lms/modules/accountadd.php:1.51 Tue Jan 18 09:12:19 2011 +++ lms/modules/accountadd.php Fri Oct 14 18:08:57 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: accountadd.php,v 1.51 2011/01/18 08:12:19 alec Exp $ + * $Id: accountadd.php,v 1.52 2011/10/14 16:08:57 chilek Exp $ */ /* @@ -115,7 +115,7 @@ { if($quota[$name] > $limits[$limitidx]) { - $error['quota_'.$name] = trans('Exceeded \'$0\' account quota limit of selected customer ($1)!', + $error['quota_'.$name] = trans('Exceeded \'$a\' account quota limit of selected customer ($b)!', $name, $limits[$limitidx]); } } @@ -130,7 +130,7 @@ if(!$error && ($limits[$limitidx] == 0 || $limits[$limitidx] <= $cnt)) { - $error['ownerid'] = trans('Exceeded \'$0\' accounts limit of selected customer ($1)!', + $error['ownerid'] = trans('Exceeded \'$a\' accounts limit of selected customer ($b)!', $name, $limits[$limitidx]); } } Index: lms/modules/accountedit.php diff -u lms/modules/accountedit.php:1.49 lms/modules/accountedit.php:1.50 --- lms/modules/accountedit.php:1.49 Tue Jan 18 09:12:19 2011 +++ lms/modules/accountedit.php Fri Oct 14 18:08:57 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: accountedit.php,v 1.49 2011/01/18 08:12:19 alec Exp $ + * $Id: accountedit.php,v 1.50 2011/10/14 16:08:57 chilek Exp $ */ $id = intval($_GET['id']); @@ -37,7 +37,7 @@ $SESSION->redirect('?'.$SESSION->get('backto')); } -$layout['pagetitle'] = trans('Account Edit: $0', $account['login'].'@'.$account['domain']); +$layout['pagetitle'] = trans('Account Edit: $a', $account['login'].'@'.$account['domain']); $types = array(1 => 'sh', 2 => 'mail', 4 => 'www', 8 => 'ftp', 16 => 'sql'); @@ -117,7 +117,7 @@ { if($quota[$name] > $limits[$limitidx]) { - $error['quota_'.$name] = trans('Exceeded \'$0\' account quota limit of selected customer ($1)!', + $error['quota_'.$name] = trans('Exceeded \'$a\' account quota limit of selected customer ($b)!', $name, $limits[$limitidx]); } } @@ -135,7 +135,7 @@ if(!$error && ($limits[$limitidx] == 0 || $limits[$limitidx] <= $cnt)) { - $error['ownerid'] = trans('Exceeded \'$0\' accounts limit of selected customer ($1)!', + $error['ownerid'] = trans('Exceeded \'$a\' accounts limit of selected customer ($b)!', $name, $limits[$limitidx]); } } Index: lms/modules/accountinfo.php diff -u lms/modules/accountinfo.php:1.7 lms/modules/accountinfo.php:1.8 --- lms/modules/accountinfo.php:1.7 Tue Jan 18 09:12:19 2011 +++ lms/modules/accountinfo.php Fri Oct 14 18:08:57 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: accountinfo.php,v 1.7 2011/01/18 08:12:19 alec Exp $ + * $Id: accountinfo.php,v 1.8 2011/10/14 16:08:57 chilek Exp $ */ // LEFT join with domains for bckward compat. @@ -44,7 +44,7 @@ $SESSION->save('backto', $_SERVER['QUERY_STRING']); -$layout['pagetitle'] = trans('Account Info: $0', $account['login'].'@'.$account['domain']); +$layout['pagetitle'] = trans('Account Info: $a', $account['login'].'@'.$account['domain']); $SMARTY->assign('account', $account); $SMARTY->display('accountinfo.html'); Index: lms/modules/accountpasswd.php diff -u lms/modules/accountpasswd.php:1.4 lms/modules/accountpasswd.php:1.5 --- lms/modules/accountpasswd.php:1.4 Tue Jan 18 09:12:19 2011 +++ lms/modules/accountpasswd.php Fri Oct 14 18:08:57 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: accountpasswd.php,v 1.4 2011/01/18 08:12:19 alec Exp $ + * $Id: accountpasswd.php,v 1.5 2011/10/14 16:08:57 chilek Exp $ */ $id = intval($_GET['id']); @@ -56,7 +56,7 @@ } } -$layout['pagetitle'] = trans('Password Change for Account: $0',$account['login'].'@'.$account['domain']); +$layout['pagetitle'] = trans('Password Change for Account: $a',$account['login'].'@'.$account['domain']); $SMARTY->assign('error', $error); $SMARTY->assign('account', $account); Index: lms/modules/aliasadd.php diff -u lms/modules/aliasadd.php:1.30 lms/modules/aliasadd.php:1.31 --- lms/modules/aliasadd.php:1.30 Tue Jan 18 09:12:19 2011 +++ lms/modules/aliasadd.php Fri Oct 14 18:08:57 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: aliasadd.php,v 1.30 2011/01/18 08:12:19 alec Exp $ + * $Id: aliasadd.php,v 1.31 2011/10/14 16:08:57 chilek Exp $ */ function AliasExists($login, $domain) @@ -112,7 +112,7 @@ SELECT id FROM domains WHERE ownerid = ?)', array($ownerid)); if($limits['alias_limit'] == 0 || $limits['alias_limit'] <= $cnt) - $error['domainid'] = trans('Exceeded aliases limit of selected customer ($0)!', $limits['alias_limit']); + $error['domainid'] = trans('Exceeded aliases limit of selected customer ($a)!', $limits['alias_limit']); } } } Index: lms/modules/aliasedit.php diff -u lms/modules/aliasedit.php:1.15 lms/modules/aliasedit.php:1.16 --- lms/modules/aliasedit.php:1.15 Tue Jan 18 09:12:20 2011 +++ lms/modules/aliasedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: aliasedit.php,v 1.15 2011/01/18 08:12:20 alec Exp $ + * $Id: aliasedit.php,v 1.16 2011/10/14 16:08:58 chilek Exp $ */ function AliasExists($login, $domain) @@ -45,7 +45,7 @@ $SESSION->redirect('?'.$SESSION->get('backto')); } -$layout['pagetitle'] = trans('Alias Edit: $0', $aliasold['login'] .'@'. $aliasold['domain']); +$layout['pagetitle'] = trans('Alias Edit: $a', $aliasold['login'] .'@'. $aliasold['domain']); if(isset($_POST['alias'])) { Index: lms/modules/aliasinfo.php diff -u lms/modules/aliasinfo.php:1.7 lms/modules/aliasinfo.php:1.8 --- lms/modules/aliasinfo.php:1.7 Tue Jan 18 09:12:20 2011 +++ lms/modules/aliasinfo.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: aliasinfo.php,v 1.7 2011/01/18 08:12:20 alec Exp $ + * $Id: aliasinfo.php,v 1.8 2011/10/14 16:08:58 chilek Exp $ */ $alias = $DB->GetRow('SELECT a.id, a.login, a.domainid, d.name AS domain @@ -45,7 +45,7 @@ foreach($mailforwards as $mailforward => $idx) $alias['mailforwards'][] = $mailforward; -$layout['pagetitle'] = trans('Alias Info: $0', $alias['login'] .'@'. $alias['domain']); +$layout['pagetitle'] = trans('Alias Info: $a', $alias['login'] .'@'. $alias['domain']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/cashpackagedel.php diff -u lms/modules/cashpackagedel.php:1.2 lms/modules/cashpackagedel.php:1.3 --- lms/modules/cashpackagedel.php:1.2 Tue Jan 18 09:12:20 2011 +++ lms/modules/cashpackagedel.php Fri Oct 14 18:08:58 2011 @@ -21,18 +21,18 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: cashpackagedel.php,v 1.2 2011/01/18 08:12:20 alec Exp $ + * $Id: cashpackagedel.php,v 1.3 2011/10/14 16:08:58 chilek Exp $ */ $name = $DB->GetOne('SELECT name FROM sourcefiles WHERE id = ?', array($_GET['id'])); -$layout['pagetitle'] = trans('Removing package "$0"', $name); +$layout['pagetitle'] = trans('Removing package "$a"', $name); if (!$name) { $body = '

'.trans('Specified ID is not proper or does not exist!').'

'; } else if ($_GET['is_sure'] != 1) { - $body = '

'.trans('Do you want to remove package "$0"?', $name).'

'; + $body = '

'.trans('Do you want to remove package "$a"?', $name).'

'; $body .= '

'.trans('All cash operations from that package will be lost.').'

'; $body .= '

'.trans('Yes, I know what I do.').' '; $body .= ''.trans('No, I\'ve changed my mind.').'

'; Index: lms/modules/cashregdel.php diff -u lms/modules/cashregdel.php:1.9 lms/modules/cashregdel.php:1.10 --- lms/modules/cashregdel.php:1.9 Tue Jan 18 09:12:20 2011 +++ lms/modules/cashregdel.php Fri Oct 14 18:08:58 2011 @@ -21,11 +21,11 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: cashregdel.php,v 1.9 2011/01/18 08:12:20 alec Exp $ + * $Id: cashregdel.php,v 1.10 2011/10/14 16:08:58 chilek Exp $ */ $name = $DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($_GET['id'])); -$layout['pagetitle'] = trans('Removing registry "$0"', $name); +$layout['pagetitle'] = trans('Removing registry "$a"', $name); if (!$name) { @@ -34,7 +34,7 @@ if($_GET['is_sure']!=1) { - $body = '

'.trans('Do you want to remove registry "$0"?', $name).'

'; + $body = '

'.trans('Do you want to remove registry "$a"?', $name).'

'; $body .= '

'.trans('All receipts in that registry will be lost.').'

'; $body .= '

'.trans('Yes, I know what I do.').' '; $body .= ''.trans('No, I\'ve changed my mind.').'

'; Index: lms/modules/cashregedit.php diff -u lms/modules/cashregedit.php:1.12 lms/modules/cashregedit.php:1.13 --- lms/modules/cashregedit.php:1.12 Fri Apr 1 12:35:12 2011 +++ lms/modules/cashregedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: cashregedit.php,v 1.12 2011/04/01 10:35:12 alec Exp $ + * $Id: cashregedit.php,v 1.13 2011/10/14 16:08:58 chilek Exp $ */ $id = intval($_GET['id']); @@ -84,7 +84,7 @@ } } -$layout['pagetitle'] = trans('Edit Cash Registry: $0', $registry['name']); +$layout['pagetitle'] = trans('Edit Cash Registry: $a', $registry['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/cashreginfo.php diff -u lms/modules/cashreginfo.php:1.9 lms/modules/cashreginfo.php:1.10 --- lms/modules/cashreginfo.php:1.9 Tue Jan 18 09:12:20 2011 +++ lms/modules/cashreginfo.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: cashreginfo.php,v 1.9 2011/01/18 08:12:20 alec Exp $ + * $Id: cashreginfo.php,v 1.10 2011/10/14 16:08:58 chilek Exp $ */ @@ -46,7 +46,7 @@ $registry['rights'][] = $user; } -$layout['pagetitle'] = trans('Cash Registry Info: $0', $registry['name']); +$layout['pagetitle'] = trans('Cash Registry Info: $a', $registry['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/cashsourceedit.php diff -u lms/modules/cashsourceedit.php:1.3 lms/modules/cashsourceedit.php:1.4 --- lms/modules/cashsourceedit.php:1.3 Tue Jan 18 09:12:20 2011 +++ lms/modules/cashsourceedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: cashsourceedit.php,v 1.3 2011/01/18 08:12:20 alec Exp $ + * $Id: cashsourceedit.php,v 1.4 2011/10/14 16:08:58 chilek Exp $ */ $source = $DB->GetRow('SELECT id, name, description FROM cashsources WHERE id=?', array($_GET['id'])); @@ -31,7 +31,7 @@ $SESSION->redirect('?m=cashsourcelist'); } -$layout['pagetitle'] = trans('Cash Import Source Edit: $0', $source['name']); +$layout['pagetitle'] = trans('Cash Import Source Edit: $a', $source['name']); if(isset($_POST['sourceedit'])) { Index: lms/modules/configedit.php diff -u lms/modules/configedit.php:1.29 lms/modules/configedit.php:1.30 --- lms/modules/configedit.php:1.29 Tue Jan 18 09:12:20 2011 +++ lms/modules/configedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: configedit.php,v 1.29 2011/01/18 08:12:20 alec Exp $ + * $Id: configedit.php,v 1.30 2011/10/14 16:08:58 chilek Exp $ */ function ConfigOptionExists($id) @@ -92,7 +92,7 @@ $config = $cfg; } -$layout['pagetitle'] = trans('Option Edit: $0',$option); +$layout['pagetitle'] = trans('Option Edit: $a',$option); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/customer.inc.php diff -u lms/modules/customer.inc.php:1.11 lms/modules/customer.inc.php:1.12 --- lms/modules/customer.inc.php:1.11 Wed Mar 30 14:51:24 2011 +++ lms/modules/customer.inc.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customer.inc.php,v 1.11 2011/03/30 12:51:24 alec Exp $ + * $Id: customer.inc.php,v 1.12 2011/10/14 16:08:58 chilek Exp $ */ if($layout['module'] != 'customeredit') @@ -33,7 +33,7 @@ $SESSION->redirect('?m=customerlist'); } - $SMARTY->assign_by_ref('customerinfo', $customerinfo); + $SMARTY->assignByRef('customerinfo', $customerinfo); } @@ -66,16 +66,16 @@ )); $SMARTY->assign('sourcelist', $DB->GetAll('SELECT id, name FROM cashsources ORDER BY name')); -$SMARTY->assign_by_ref('customernodes', $customernodes); -$SMARTY->assign_by_ref('assignments', $assignments); -$SMARTY->assign_by_ref('customergroups', $customergroups); -$SMARTY->assign_by_ref('othercustomergroups', $othercustomergroups); -$SMARTY->assign_by_ref('balancelist', $balancelist); -$SMARTY->assign_by_ref('customervoipaccounts', $customervoipaccounts); -$SMARTY->assign_by_ref('documents', $documents); -$SMARTY->assign_by_ref('taxeslist', $taxeslist); -$SMARTY->assign_by_ref('allnodegroups', $allnodegroups); -$SMARTY->assign_by_ref('messagelist', $messagelist); -$SMARTY->assign_by_ref('eventlist', $eventlist); +$SMARTY->assignByRef('customernodes', $customernodes); +$SMARTY->assignByRef('assignments', $assignments); +$SMARTY->assignByRef('customergroups', $customergroups); +$SMARTY->assignByRef('othercustomergroups', $othercustomergroups); +$SMARTY->assignByRef('balancelist', $balancelist); +$SMARTY->assignByRef('customervoipaccounts', $customervoipaccounts); +$SMARTY->assignByRef('documents', $documents); +$SMARTY->assignByRef('taxeslist', $taxeslist); +$SMARTY->assignByRef('allnodegroups', $allnodegroups); +$SMARTY->assignByRef('messagelist', $messagelist); +$SMARTY->assignByRef('eventlist', $eventlist); ?> Index: lms/modules/customerassignmentadd.php diff -u lms/modules/customerassignmentadd.php:1.7 lms/modules/customerassignmentadd.php:1.8 --- lms/modules/customerassignmentadd.php:1.7 Wed Mar 2 11:31:05 2011 +++ lms/modules/customerassignmentadd.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerassignmentadd.php,v 1.7 2011/03/02 10:31:05 alec Exp $ + * $Id: customerassignmentadd.php,v 1.8 2011/10/14 16:08:58 chilek Exp $ */ // get customer name and check privileges using customersview @@ -285,7 +285,7 @@ $expired = isset($_GET['expired']) ? $_GET['expired'] : false; -$layout['pagetitle'] = trans('New Liability: $0', ''.$customer['name'].''); +$layout['pagetitle'] = trans('New Liability: $a', ''.$customer['name'].''); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/customerassignmentedit.php diff -u lms/modules/customerassignmentedit.php:1.4 lms/modules/customerassignmentedit.php:1.5 --- lms/modules/customerassignmentedit.php:1.4 Tue Jan 18 09:12:21 2011 +++ lms/modules/customerassignmentedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerassignmentedit.php,v 1.4 2011/01/18 08:12:21 alec Exp $ + * $Id: customerassignmentedit.php,v 1.5 2011/10/14 16:08:58 chilek Exp $ */ // get customer name and check privileges using customersview @@ -361,7 +361,7 @@ $expired = isset($_GET['expired']) ? $_GET['expired'] : false; -$layout['pagetitle'] = trans('Liability Edit: $0', ''.$customer['name'].''); +$layout['pagetitle'] = trans('Liability Edit: $a', ''.$customer['name'].''); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/customerbalance.php diff -u lms/modules/customerbalance.php:1.13 lms/modules/customerbalance.php:1.14 --- lms/modules/customerbalance.php:1.13 Tue Jan 18 09:12:21 2011 +++ lms/modules/customerbalance.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerbalance.php,v 1.13 2011/01/18 08:12:21 alec Exp $ + * $Id: customerbalance.php,v 1.14 2011/10/14 16:08:58 chilek Exp $ */ $SESSION->save('backto', $_SERVER['QUERY_STRING']); @@ -32,7 +32,7 @@ $customername = $LMS->GetCustomerName($_GET['id']); $id = $_GET['id']; -$layout['pagetitle'] = trans('Customer Balance: $0', ''.$customername.''); +$layout['pagetitle'] = trans('Customer Balance: $a', ''.$customername.''); $SMARTY->assign('balancelist', $LMS->GetCustomerBalanceList($_GET['id'])); $SMARTY->assign('taxeslist', $LMS->GetTaxes()); Index: lms/modules/customerdel.php diff -u lms/modules/customerdel.php:1.11 lms/modules/customerdel.php:1.12 --- lms/modules/customerdel.php:1.11 Tue Jan 18 09:12:21 2011 +++ lms/modules/customerdel.php Fri Oct 14 18:08:58 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerdel.php,v 1.11 2011/01/18 08:12:21 alec Exp $ + * $Id: customerdel.php,v 1.12 2011/10/14 16:08:58 chilek Exp $ */ -$layout['pagetitle'] = trans('Customer Remove: $0',sprintf("%04d",$_GET['id'])); +$layout['pagetitle'] = trans('Customer Remove: $a',sprintf("%04d",$_GET['id'])); $SMARTY->assign('customerid',$_GET['id']); if (!$LMS->CustomerExists($_GET['id'])) @@ -34,12 +34,12 @@ if($_GET['is_sure']!=1) { - $body = '

'.trans('Do you want to remove $0 customer?',$LMS->GetCustomerName($_GET['id'])).'

'; + $body = '

'.trans('Do you want to remove $a customer?',$LMS->GetCustomerName($_GET['id'])).'

'; $body .= '

'.trans('All customer data and computers bound to this customer will be lost!').'

'; $body .= '

'.trans('Yes, I do.').'

'; }else{ header("Location: ?".$SESSION->get('backto')); - $body = '

'.trans('Customer $0 has been removed.',$LMS->GetCustomerName($_GET['id'])).'

'; + $body = '

'.trans('Customer $a has been removed.',$LMS->GetCustomerName($_GET['id'])).'

'; $LMS->DeleteCustomer($_GET['id']); } } Index: lms/modules/customeredit.php diff -u lms/modules/customeredit.php:1.46 lms/modules/customeredit.php:1.47 --- lms/modules/customeredit.php:1.46 Thu Mar 31 11:27:28 2011 +++ lms/modules/customeredit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customeredit.php,v 1.46 2011/03/31 09:27:28 alec Exp $ + * $Id: customeredit.php,v 1.47 2011/10/14 16:08:58 chilek Exp $ */ $action = isset($_GET['action']) ? $_GET['action'] : ''; $exists = $LMS->CustomerExists($_GET['id']); @@ -202,7 +202,7 @@ $customerinfo['contacts'][] = array(); } -$layout['pagetitle'] = trans('Customer Edit: $0',$customerinfo['customername']); +$layout['pagetitle'] = trans('Customer Edit: $a',$customerinfo['customername']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/customergroupadd.php diff -u lms/modules/customergroupadd.php:1.11 lms/modules/customergroupadd.php:1.12 --- lms/modules/customergroupadd.php:1.11 Tue Jan 18 09:12:21 2011 +++ lms/modules/customergroupadd.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customergroupadd.php,v 1.11 2011/01/18 08:12:21 alec Exp $ + * $Id: customergroupadd.php,v 1.12 2011/10/14 16:08:58 chilek Exp $ */ if(isset($_POST['customergroupadd'])) @@ -43,7 +43,7 @@ elseif(!preg_match('/^[._a-z0-9-]+$/i', $customergroupadd['name'])) $error['name'] = trans('Invalid chars in group name!'); elseif($LMS->CustomergroupGetId($customergroupadd['name'])) - $error['name'] = trans('Group with name $0 already exists!',$customergroupadd['name']); + $error['name'] = trans('Group with name $a already exists!',$customergroupadd['name']); if(!$error) { Index: lms/modules/customergroupedit.php diff -u lms/modules/customergroupedit.php:1.15 lms/modules/customergroupedit.php:1.16 --- lms/modules/customergroupedit.php:1.15 Tue Jan 18 09:12:21 2011 +++ lms/modules/customergroupedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customergroupedit.php,v 1.15 2011/01/18 08:12:21 alec Exp $ + * $Id: customergroupedit.php,v 1.16 2011/10/14 16:08:58 chilek Exp $ */ if(!$LMS->CustomergroupExists($_GET['id'])) @@ -49,7 +49,7 @@ $customergroup = $LMS->CustomergroupGet($_GET['id'], $membersnetid); $customers = $LMS->GetCustomerWithoutGroupNames($_GET['id'], $othersnetid); -$layout['pagetitle'] = trans('Group Edit: $0', $customergroup['name']); +$layout['pagetitle'] = trans('Group Edit: $a', $customergroup['name']); if(isset($_POST['customergroup'])) { @@ -67,7 +67,7 @@ elseif(!preg_match('/^[._a-z0-9-]+$/i', $customergroupedit['name'])) $error['name'] = trans('Invalid chars in group name!'); elseif(($id = $LMS->CustomergroupGetId($customergroupedit['name'])) && $id != $customergroupedit['id']) - $error['name'] = trans('Group with name $0 already exists!',$customergroupedit['name']); + $error['name'] = trans('Group with name $a already exists!',$customergroupedit['name']); if(!$error) { Index: lms/modules/customergroupinfo.php diff -u lms/modules/customergroupinfo.php:1.12 lms/modules/customergroupinfo.php:1.13 --- lms/modules/customergroupinfo.php:1.12 Tue Jan 18 09:12:21 2011 +++ lms/modules/customergroupinfo.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customergroupinfo.php,v 1.12 2011/01/18 08:12:21 alec Exp $ + * $Id: customergroupinfo.php,v 1.13 2011/10/14 16:08:58 chilek Exp $ */ $id = !empty($_GET['id']) ? $_GET['id'] : NULL; @@ -51,7 +51,7 @@ $customers = $LMS->GetCustomerWithoutGroupNames($id, isset($othersnetid) ? $othersnetid : 0); $customerscount = sizeof($customers); -$layout['pagetitle'] = trans('Group Info: $0',$customergroup['name']); +$layout['pagetitle'] = trans('Group Info: $a',$customergroup['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/customerinfo.php diff -u lms/modules/customerinfo.php:1.25 lms/modules/customerinfo.php:1.26 --- lms/modules/customerinfo.php:1.25 Thu Mar 10 12:36:39 2011 +++ lms/modules/customerinfo.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerinfo.php,v 1.25 2011/03/10 11:36:39 alec Exp $ + * $Id: customerinfo.php,v 1.26 2011/10/14 16:08:58 chilek Exp $ */ $customerid = intval($_GET['id']); @@ -33,7 +33,7 @@ $SESSION->save('backto', $_SERVER['QUERY_STRING']); -$layout['pagetitle'] = trans('Customer Info: $0',$customerinfo['customername']); +$layout['pagetitle'] = trans('Customer Info: $a',$customerinfo['customername']); $SMARTY->display('customerinfo.html'); Index: lms/modules/customerprint.php diff -u lms/modules/customerprint.php:1.23 lms/modules/customerprint.php:1.24 --- lms/modules/customerprint.php:1.23 Thu Apr 7 12:28:16 2011 +++ lms/modules/customerprint.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: customerprint.php,v 1.23 2011/04/07 10:28:16 alec Exp $ + * $Id: customerprint.php,v 1.24 2011/10/14 16:08:58 chilek Exp $ */ $type = isset($_GET['type']) ? $_GET['type'] : ''; @@ -68,7 +68,7 @@ switch($_POST['filter']) { case 0: - $layout['pagetitle'] = trans('Customers List $0$1',($_POST['network'] ? trans(' (Net: $0)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $0)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); + $layout['pagetitle'] = trans('Customers List $a$b',($_POST['network'] ? trans(' (Net: $a)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $a)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); $SMARTY->assign('customerlist', $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], $_POST['filter'], $_POST['network'], $_POST['customergroup'], $search, $date, 'AND', $_POST['nodegroup'])); break; case 1: @@ -80,20 +80,20 @@ $SMARTY->assign('customerlist', $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], $_POST['filter'], NULL, NULL, $search, $date)); break; case 3: - $layout['pagetitle'] = trans('List of Connected Customers $0$1',($_POST['network'] ? trans(' (Net: $0)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $0)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); + $layout['pagetitle'] = trans('List of Connected Customers $a$b',($_POST['network'] ? trans(' (Net: $a)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $a)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); $SMARTY->assign('customerlist', $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], $_POST['filter'], $_POST['network'], $_POST['customergroup'], $search, $date, 'AND', $_POST['nodegroup'])); break; case 5: - $layout['pagetitle'] = trans('List of Disconnected Customers $0$1',($_POST['network'] ? trans(' (Net: $0)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $0)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); + $layout['pagetitle'] = trans('List of Disconnected Customers $a$b',($_POST['network'] ? trans(' (Net: $a)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $a)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); $SMARTY->assign('customerlist', $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], $_POST['filter'], $_POST['network'], $_POST['customergroup'], $search, $date, 'AND', $_POST['nodegroup'])); break; case 6: case 11: - $layout['pagetitle'] = trans('Indebted Customers List $0$1',($_POST['network'] ? trans(' (Net: $0)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $0)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); + $layout['pagetitle'] = trans('Indebted Customers List $a$b',($_POST['network'] ? trans(' (Net: $a)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $a)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); $SMARTY->assign('customerlist', $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], $_POST['filter'], $_POST['network'], $_POST['customergroup'], $search, $date, 'AND', $_POST['nodegroup'])); break; case -1: - $layout['pagetitle'] = trans('Customers Without Nodes List $0$1',($_POST['network'] ? trans(' (Net: $0)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $0)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); + $layout['pagetitle'] = trans('Customers Without Nodes List $a$b',($_POST['network'] ? trans(' (Net: $a)',$LMS->GetNetworkName($_POST['network'])) : ''),($_POST['customergroup'] ? trans('(Group: $a)',$LMS->CustomergroupGetName($_POST['customergroup'])) : '')); if($customerlist = $LMS->GetCustomerList($_POST['order'].','.$_POST['direction'], NULL, NULL, $_POST['customergroup'], $search, $date)) { unset($customerlist['total']); @@ -134,7 +134,7 @@ $date['to'] = mktime(23,59,59); //koniec dnia dzisiejszego } - $layout['pagetitle'] = trans('Customer $0 Balance Sheet ($1 to $2)', + $layout['pagetitle'] = trans('Customer $a Balance Sheet ($b to $c)', $LMS->GetCustomerName($_POST['customer']), ($from ? $from : ''), $to); $id = $_POST['customer']; Index: lms/modules/daemonconfigadd.php diff -u lms/modules/daemonconfigadd.php:1.16 lms/modules/daemonconfigadd.php:1.17 --- lms/modules/daemonconfigadd.php:1.16 Tue Jan 18 09:12:21 2011 +++ lms/modules/daemonconfigadd.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: daemonconfigadd.php,v 1.16 2011/01/18 08:12:21 alec Exp $ + * $Id: daemonconfigadd.php,v 1.17 2011/10/14 16:08:58 chilek Exp $ */ $config = isset($_POST['config']) ? $_POST['config'] : NULL; @@ -66,7 +66,7 @@ $instance = $DB->GetRow('SELECT daemoninstances.name AS name, hosts.name AS hostname FROM daemoninstances, hosts WHERE hosts.id=hostid AND daemoninstances.id=?', array($_GET['id'])); -$layout['pagetitle'] = trans('New Option for Instance: $0/$1', $instance['name'], $instance['hostname']); +$layout['pagetitle'] = trans('New Option for Instance: $a/$b', $instance['name'], $instance['hostname']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/daemonconfigedit.php diff -u lms/modules/daemonconfigedit.php:1.17 lms/modules/daemonconfigedit.php:1.18 --- lms/modules/daemonconfigedit.php:1.17 Tue Jan 18 09:12:21 2011 +++ lms/modules/daemonconfigedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: daemonconfigedit.php,v 1.17 2011/01/18 08:12:21 alec Exp $ + * $Id: daemonconfigedit.php,v 1.18 2011/10/14 16:08:58 chilek Exp $ */ $config = $DB->GetRow('SELECT id, var, value, description, disabled, instanceid FROM daemonconfig WHERE id=?', array($_GET['id'])); @@ -68,7 +68,7 @@ $instance = $DB->GetRow('SELECT daemoninstances.name AS name, hosts.name AS hostname FROM daemoninstances, hosts WHERE hosts.id=hostid AND daemoninstances.id=?', array($config['instanceid'])); -$layout['pagetitle'] = trans('Option Edit: $0/$1/$2', $config['var'], $instance['name'], $instance['hostname']); +$layout['pagetitle'] = trans('Option Edit: $a/$b/$c', $config['var'], $instance['name'], $instance['hostname']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/daemoninstanceedit.php diff -u lms/modules/daemoninstanceedit.php:1.20 lms/modules/daemoninstanceedit.php:1.21 --- lms/modules/daemoninstanceedit.php:1.20 Tue Jan 18 09:12:21 2011 +++ lms/modules/daemoninstanceedit.php Fri Oct 14 18:08:58 2011 @@ -21,12 +21,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: daemoninstanceedit.php,v 1.20 2011/01/18 08:12:21 alec Exp $ + * $Id: daemoninstanceedit.php,v 1.21 2011/10/14 16:08:58 chilek Exp $ */ $instance = $DB->GetRow('SELECT id, name, hostid, description, module, crontab, priority, disabled FROM daemoninstances WHERE id=?', array($_GET['id'])); -$layout['pagetitle'] = trans('Instance Edit: $0', $instance['name']); +$layout['pagetitle'] = trans('Instance Edit: $a', $instance['name']); if(isset($_POST['instance'])) { Index: lms/modules/daemoninstanceview.php diff -u lms/modules/daemoninstanceview.php:1.14 lms/modules/daemoninstanceview.php:1.15 --- lms/modules/daemoninstanceview.php:1.14 Tue Jan 18 09:12:21 2011 +++ lms/modules/daemoninstanceview.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: daemoninstanceview.php,v 1.14 2011/01/18 08:12:21 alec Exp $ + * $Id: daemoninstanceview.php,v 1.15 2011/10/14 16:08:58 chilek Exp $ */ function GetOptionList($instanceid) @@ -39,7 +39,7 @@ WHERE hosts.id = i.hostid AND i.id = ?', array($_GET['id'])); -$layout['pagetitle'] = trans('Configuration of Instance: $0/$1', $instance['name'], +$layout['pagetitle'] = trans('Configuration of Instance: $a/$b', $instance['name'], ''.$instance['hostname'].''); $optionlist = GetOptionList($instance['id']); Index: lms/modules/dbdel.php diff -u lms/modules/dbdel.php:1.42 lms/modules/dbdel.php:1.43 --- lms/modules/dbdel.php:1.42 Tue Jan 18 09:12:21 2011 +++ lms/modules/dbdel.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: dbdel.php,v 1.42 2011/01/18 08:12:21 alec Exp $ + * $Id: dbdel.php,v 1.43 2011/10/14 16:08:58 chilek Exp $ */ if(isset($_GET['is_sure'])) @@ -44,7 +44,7 @@ $layout['pagetitle'] = trans('Backup Delete'); $SMARTY->display('header.html'); echo '

'.trans('Deletion of Database Backup').'

'; - echo '

'.trans('Are you sure, you want to delete database backup created at $0 ?',date('Y/m/d H:i.s',$_GET['db'])).'

'; + echo '

'.trans('Are you sure, you want to delete database backup created at $a ?',date('Y/m/d H:i.s',$_GET['db'])).'

'; echo ''.trans('Yes, I am sure.').''; $SMARTY->display('footer.html'); } Index: lms/modules/dbrecover.php diff -u lms/modules/dbrecover.php:1.58 lms/modules/dbrecover.php:1.59 --- lms/modules/dbrecover.php:1.58 Wed Feb 16 13:37:35 2011 +++ lms/modules/dbrecover.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: dbrecover.php,v 1.58 2011/02/16 12:37:35 alec Exp $ + * $Id: dbrecover.php,v 1.59 2011/10/14 16:08:58 chilek Exp $ */ function DBLoad($filename=NULL) @@ -106,7 +106,7 @@ $layout['pagetitle'] = trans('Database Backup Recovery'); $SMARTY->display('header.html'); echo '

'.trans('Database Backup Recovery').'

'; - echo '

'.trans('Are you sure, you want to recover database created at $0?', date('Y/m/d H:i.s',$_GET['db'])).'

'; + echo '

'.trans('Are you sure, you want to recover database created at $a?', date('Y/m/d H:i.s',$_GET['db'])).'

'; echo ''.trans('Yes, I am sure.').''; $SMARTY->display('footer.html'); } Index: lms/modules/divisionedit.php diff -u lms/modules/divisionedit.php:1.11 lms/modules/divisionedit.php:1.12 --- lms/modules/divisionedit.php:1.11 Tue Jan 18 09:12:22 2011 +++ lms/modules/divisionedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: divisionedit.php,v 1.11 2011/01/18 08:12:22 alec Exp $ + * $Id: divisionedit.php,v 1.12 2011/10/14 16:08:58 chilek Exp $ */ if(!empty($_GET['changestatus'])) @@ -116,7 +116,7 @@ } } -$layout['pagetitle'] = trans('Edit Division: $0', $olddiv['shortname']); +$layout['pagetitle'] = trans('Edit Division: $a', $olddiv['shortname']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/documentadd.php diff -u lms/modules/documentadd.php:1.47 lms/modules/documentadd.php:1.48 --- lms/modules/documentadd.php:1.47 Tue Jan 18 09:12:22 2011 +++ lms/modules/documentadd.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: documentadd.php,v 1.47 2011/01/18 08:12:22 alec Exp $ + * $Id: documentadd.php,v 1.48 2011/10/14 16:08:58 chilek Exp $ */ $_DOC_DIR = DOC_DIR; @@ -152,7 +152,7 @@ // read template information include(DOC_DIR.'/templates/'.$document['templ'].'/info.php'); // set some variables (needed in e.g. plugin) - $SMARTY->assign_by_ref('document', $document); + $SMARTY->assignByRef('document', $document); // call plugin if(!empty($engine['plugin']) && file_exists(DOC_DIR.'/templates/'.$engine['name'].'/'.$engine['plugin'].'.php')) include(DOC_DIR.'/templates/'.$engine['name'].'/'.$engine['plugin'].'.php'); @@ -201,7 +201,7 @@ @unlink($newfile); } if(!@rename($file, $newfile)) - $error['file'] = trans('Can\'t save file in "$0" directory!', $path); + $error['file'] = trans('Can\'t save file in "$a" directory!', $path); } } Index: lms/modules/documentedit.php diff -u lms/modules/documentedit.php:1.21 lms/modules/documentedit.php:1.22 --- lms/modules/documentedit.php:1.21 Tue Jan 18 09:12:22 2011 +++ lms/modules/documentedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: documentedit.php,v 1.21 2011/01/18 08:12:22 alec Exp $ + * $Id: documentedit.php,v 1.22 2011/10/14 16:08:58 chilek Exp $ */ $_DOC_DIR = DOC_DIR; @@ -164,7 +164,7 @@ if(!file_exists($newfile)) { if(!@rename($file, $newfile)) - $error['file'] = trans('Can\'t save file in "$0" directory!', $path); + $error['file'] = trans('Can\'t save file in "$a" directory!', $path); } else $error['file'] = trans('Specified file exists in database!'); @@ -260,7 +260,7 @@ if($docengines) ksort($docengines); */ -$layout['pagetitle'] = trans('Edit Document: $0', docnumber($document['number'], $document['template'], $document['cdate'])); +$layout['pagetitle'] = trans('Edit Document: $a', docnumber($document['number'], $document['template'], $document['cdate'])); //$SMARTY->assign('docengines', $docengines); $SMARTY->assign('numberplans', $numberplans); Index: lms/modules/documentgen.php diff -u lms/modules/documentgen.php:1.21 lms/modules/documentgen.php:1.22 --- lms/modules/documentgen.php:1.21 Tue Jan 18 09:12:22 2011 +++ lms/modules/documentgen.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: documentgen.php,v 1.21 2011/01/18 08:12:22 alec Exp $ + * $Id: documentgen.php,v 1.22 2011/10/14 16:08:58 chilek Exp $ */ $_DOC_DIR = DOC_DIR; @@ -188,7 +188,7 @@ if(!file_exists($newfile)) { if(!@rename($file, $newfile)) - $error = trans('Can\'t save file in "$0" directory!', $path); + $error = trans('Can\'t save file in "$a" directory!', $path); } } else Index: lms/modules/documenttypeedit.php diff -u lms/modules/documenttypeedit.php:1.3 lms/modules/documenttypeedit.php:1.4 --- lms/modules/documenttypeedit.php:1.3 Tue Jan 18 09:12:22 2011 +++ lms/modules/documenttypeedit.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: documenttypeedit.php,v 1.3 2011/01/18 08:12:22 alec Exp $ + * $Id: documenttypeedit.php,v 1.4 2011/10/14 16:08:58 chilek Exp $ */ //$type = $DB->GetRow('SELECT * FROM types WHERE id=?', array($_GET['id'])); @@ -84,7 +84,7 @@ 'id' => $id ); -$layout['pagetitle'] = trans('Document Type Edit: $0', $type['name']); +$layout['pagetitle'] = trans('Document Type Edit: $a', $type['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/domainadd.php diff -u lms/modules/domainadd.php:1.26 lms/modules/domainadd.php:1.27 --- lms/modules/domainadd.php:1.26 Tue Jan 18 09:12:22 2011 +++ lms/modules/domainadd.php Fri Oct 14 18:08:58 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: domainadd.php,v 1.26 2011/01/18 08:12:22 alec Exp $ + * $Id: domainadd.php,v 1.27 2011/10/14 16:08:58 chilek Exp $ */ include(LIB_DIR.'/dns.php'); @@ -72,7 +72,7 @@ array($domainadd['ownerid'])); if($limits['domain_limit'] == 0 || $limits['domain_limit'] <= $cnt) - $error['ownerid'] = trans('Exceeded domains limit of selected customer ($0)!', $limits['domain_limit']); + $error['ownerid'] = trans('Exceeded domains limit of selected customer ($a)!', $limits['domain_limit']); } } Index: lms/modules/domainedit.php diff -u lms/modules/domainedit.php:1.32 lms/modules/domainedit.php:1.33 --- lms/modules/domainedit.php:1.32 Tue Jan 18 09:12:22 2011 +++ lms/modules/domainedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: domainedit.php,v 1.32 2011/01/18 08:12:22 alec Exp $ + * $Id: domainedit.php,v 1.33 2011/10/14 16:08:59 chilek Exp $ */ function GetDomainIdByName($name) @@ -46,7 +46,7 @@ $domain = $DB->GetRow('SELECT id, name, ownerid, description, master, last_check, type, notified_serial, account FROM domains WHERE id = ?', array($id)); -$layout['pagetitle'] = trans('Domain Edit: $0', $domain['name']); +$layout['pagetitle'] = trans('Domain Edit: $a', $domain['name']); if(isset($_POST['domain'])) { @@ -89,7 +89,7 @@ array($domainadd['ownerid'])); if($limits['domain_limit'] == 0 || $limits['domain_limit'] <= $cnt) - $error['ownerid'] = trans('Exceeded domains limit of selected customer ($0)!', $limits['domain_limit']); + $error['ownerid'] = trans('Exceeded domains limit of selected customer ($a)!', $limits['domain_limit']); } } Index: lms/modules/domaininfo.php diff -u lms/modules/domaininfo.php:1.6 lms/modules/domaininfo.php:1.7 --- lms/modules/domaininfo.php:1.6 Tue Jan 18 09:12:22 2011 +++ lms/modules/domaininfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: domaininfo.php,v 1.6 2011/01/18 08:12:22 alec Exp $ + * $Id: domaininfo.php,v 1.7 2011/10/14 16:08:59 chilek Exp $ */ $id = $_GET['id']; @@ -40,7 +40,7 @@ $SESSION->redirect('?'.$SESSION->get('backto')); } -$layout['pagetitle'] = trans('Domain Info: $0', $domain['name']); +$layout['pagetitle'] = trans('Domain Info: $a', $domain['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/ewxchdel.php diff -u lms/modules/ewxchdel.php:1.3 lms/modules/ewxchdel.php:1.4 --- lms/modules/ewxchdel.php:1.3 Tue Jan 18 09:12:22 2011 +++ lms/modules/ewxchdel.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: ewxchdel.php,v 1.3 2011/01/18 08:12:22 alec Exp $ + * $Id: ewxchdel.php,v 1.4 2011/10/14 16:08:59 chilek Exp $ */ if(!empty($_GET['is_sure'])) @@ -31,7 +31,7 @@ } else if ($channel = $DB->GetRow('SELECT id, name FROM ewx_channels WHERE id = ?', array(intval($_GET['id'])))) { - $layout['pagetitle'] = trans('Removing channel $0', strtoupper($channel['name'])); + $layout['pagetitle'] = trans('Removing channel $a', strtoupper($channel['name'])); $SMARTY->display('header.html'); echo '

'.$layout['pagetitle'].'

'; echo '

'.trans('Are you sure, you want to delete this channel?').'

'; Index: lms/modules/ewxchedit.php diff -u lms/modules/ewxchedit.php:1.4 lms/modules/ewxchedit.php:1.5 --- lms/modules/ewxchedit.php:1.4 Fri Apr 15 19:47:28 2011 +++ lms/modules/ewxchedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: ewxchedit.php,v 1.4 2011/04/15 17:47:28 alec Exp $ + * $Id: ewxchedit.php,v 1.5 2011/10/14 16:08:59 chilek Exp $ */ if (!empty($_GET['action'])) @@ -41,7 +41,7 @@ $SESSION->redirect('?m=ewxchlist'); } -$layout['pagetitle'] = trans('Channel Edit: $0', $channel['name']); +$layout['pagetitle'] = trans('Channel Edit: $a', $channel['name']); if(isset($_POST['channel'])) { Index: lms/modules/ewxchinfo.php diff -u lms/modules/ewxchinfo.php:1.7 lms/modules/ewxchinfo.php:1.8 --- lms/modules/ewxchinfo.php:1.7 Tue Apr 26 11:25:25 2011 +++ lms/modules/ewxchinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: ewxchinfo.php,v 1.7 2011/04/26 09:25:25 alec Exp $ + * $Id: ewxchinfo.php,v 1.8 2011/10/14 16:08:59 chilek Exp $ */ $cid = intval($_GET['id']); @@ -42,7 +42,7 @@ $SESSION->redirect('?m=ewxchlist'); } -$layout['pagetitle'] = trans('Info Channel: $0', $channel['name']); +$layout['pagetitle'] = trans('Info Channel: $a', $channel['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/hostedit.php diff -u lms/modules/hostedit.php:1.10 lms/modules/hostedit.php:1.11 --- lms/modules/hostedit.php:1.10 Tue Jan 18 09:12:23 2011 +++ lms/modules/hostedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: hostedit.php,v 1.10 2011/01/18 08:12:23 alec Exp $ + * $Id: hostedit.php,v 1.11 2011/10/14 16:08:59 chilek Exp $ */ function GetHostIdByName($name) @@ -32,7 +32,7 @@ $host = $DB->GetRow('SELECT id, name, description FROM hosts WHERE id=?', array($_GET['id'])); -$layout['pagetitle'] = trans('Host Edit: $0', $host['name']); +$layout['pagetitle'] = trans('Host Edit: $a', $host['name']); if(isset($_POST['hostedit'])) { Index: lms/modules/invoice.php diff -u lms/modules/invoice.php:1.85 lms/modules/invoice.php:1.86 --- lms/modules/invoice.php:1.85 Fri Apr 1 12:35:12 2011 +++ lms/modules/invoice.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice.php,v 1.85 2011/04/01 10:35:12 alec Exp $ + * $Id: invoice.php,v 1.86 2011/10/14 16:08:59 chilek Exp $ */ if(strtolower($CONFIG['invoices']['type']) == 'pdf') @@ -152,9 +152,9 @@ { $number = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); if(!isset($invoice['invoice'])) - $layout['pagetitle'] = trans('Invoice No. $0', $number); + $layout['pagetitle'] = trans('Invoice No. $a', $number); else - $layout['pagetitle'] = trans('Credit Note No. $0', $number); + $layout['pagetitle'] = trans('Credit Note No. $a', $number); $which = array(); Index: lms/modules/invoice_pdf.inc.php diff -u lms/modules/invoice_pdf.inc.php:1.9 lms/modules/invoice_pdf.inc.php:1.10 --- lms/modules/invoice_pdf.inc.php:1.9 Fri Mar 25 09:14:40 2011 +++ lms/modules/invoice_pdf.inc.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice_pdf.inc.php,v 1.9 2011/03/25 08:14:40 chilek Exp $ + * $Id: invoice_pdf.inc.php,v 1.10 2011/10/14 16:08:59 chilek Exp $ */ // Faktury w PDF, do użycia z formularzami FT-0100 (c) Polarnet // w razie pytań mailto:lexx w polarnet.org @@ -60,7 +60,7 @@ text_autosize(15*$scale+$x,322*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2//TRANSLIT",$invoice['zip'].' '.$invoice['city']),350*$scale); $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); - text_autosize(15*$scale+$x,215*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Payment for invoice No. $0', $tmp)),350*$scale); + text_autosize(15*$scale+$x,215*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Payment for invoice No. $a', $tmp)),350*$scale); } function invoice_main_form_fill($x,$y,$scale) @@ -86,11 +86,11 @@ text_autosize(15*$scale+$x,555*$scale+$y,30*$scale,$account,950*$scale); $pdf->addtext(330*$scale+$x,495*$scale+$y,30*$scale,'X'); text_autosize(550*$scale+$x,495*$scale+$y,30*$scale,"*".number_format($invoice['total'],2,',','')."*",400*$scale); - text_autosize(15*$scale+$x,434*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('$0 dollars $1 cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100)))),950*$scale); + text_autosize(15*$scale+$x,434*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('$a dollars $b cents',to_words(floor($invoice['total'])),to_words(round(($invoice['total']-floor($invoice['total']))*100)))),950*$scale); text_autosize(15*$scale+$x,372*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2//TRANSLIT",$invoice['name']),950*$scale); text_autosize(15*$scale+$x,312*$scale+$y,30*$scale, iconv("UTF-8","ISO-8859-2//TRANSLIT",$invoice['address']." ".$invoice['zip']." ".$invoice['city']),950*$scale); $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); - text_autosize(15*$scale+$x,250*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Payment for invoice No. $0',$tmp)),950*$scale); + text_autosize(15*$scale+$x,250*$scale+$y,30*$scale,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Payment for invoice No. $a',$tmp)),950*$scale); } function invoice_dates($x,$y) @@ -122,7 +122,7 @@ $y=$y-text_align_left($x,$y,$font_size,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('TEN')).' '.$invoice['ten']); else if ($invoice['ssn']) $y=$y-text_align_left($x,$y,$font_size,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('SSN')).' '.$invoice['ssn']); - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Customer No.: $0',sprintf('%04d',$invoice['customerid']))).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Customer No.: $a',sprintf('%04d',$invoice['customerid']))).''); return $y; } @@ -144,15 +144,15 @@ $font_size = 16; $tmp = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); if(isset($invoice['invoice'])) - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Credit Note No. $0',$tmp)).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Credit Note No. $a',$tmp)).''); else - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Invoice No. $0',$tmp)).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('Invoice No. $a',$tmp)).''); if(isset($invoice['invoice'])) { $font_size = 12; $y += 8; $tmp = docnumber($invoice['invoice']['number'], $invoice['invoice']['template'], $invoice['invoice']['cdate']); - $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('for Invoice No. $0',$tmp)).''); + $y=$y-text_align_left($x,$y,$font_size,''.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('for Invoice No. $a',$tmp)).''); $y -= 5; } @@ -177,7 +177,7 @@ /* $invoice_name = $invoice['name']; if (strlen($invoice_name)>25) - $invoice_name = preg_replace('/(.{25})/',"$1>\n",$invoice_name); + $invoice_name = preg_replace('/(.{25})/',"$b>\n",$invoice_name); $tmp = preg_split('/\r?\n/', iconv("UTF-8","ISO-8859-2",$invoice_name)); foreach ($tmp as $line) $y=$y-text_align_left($x,$y,$font_size,"".$line.""); */ @@ -754,7 +754,7 @@ $y = $y - text_align_left($x,$y,14,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('To repay:')).' '.iconv("UTF-8","ISO-8859-2//TRANSLIT",moneyf($invoice['value']))); else $y = $y - text_align_left($x,$y,14,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('To pay:')).' '.iconv("UTF-8","ISO-8859-2//TRANSLIT",moneyf($invoice['value']))); - $y = $y - text_align_left($x,$y,10,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('In words:')).' '.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('$0 dollars $1 cents',to_words(floor($invoice['value'])),to_words(round(($invoice['value']-floor($invoice['value']))*100))))); + $y = $y - text_align_left($x,$y,10,iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('In words:')).' '.iconv("UTF-8","ISO-8859-2//TRANSLIT",trans('$a dollars $b cents',to_words(floor($invoice['value'])),to_words(round(($invoice['value']-floor($invoice['value']))*100))))); return $y; } @@ -787,7 +787,7 @@ function invoice_body_standard() { global $pdf; - $page = $pdf->ezStartPageNumbers($pdf->ez['pageWidth']-50,20,8,'right',trans('Page $0 of $1', '{PAGENUM}','{TOTALPAGENUM}'),1); + $page = $pdf->ezStartPageNumbers($pdf->ez['pageWidth']-50,20,8,'right',trans('Page $a of $b', '{PAGENUM}','{TOTALPAGENUM}'),1); $top=800; invoice_dates(500,800); invoice_address_box(400,700); @@ -810,7 +810,7 @@ { global $pdf; - $page = $pdf->ezStartPageNumbers($pdf->ez['pageWidth']/2+10,$pdf->ez['pageHeight']-30,8,'',trans('Page $0 of $1', '{PAGENUM}','{TOTALPAGENUM}'),1); + $page = $pdf->ezStartPageNumbers($pdf->ez['pageWidth']/2+10,$pdf->ez['pageHeight']-30,8,'',trans('Page $a of $b', '{PAGENUM}','{TOTALPAGENUM}'),1); $top=$pdf->ez['pageHeight']-50; invoice_dates(500,$top); invoice_address_box(400,700); Index: lms/modules/invoiceedit.php diff -u lms/modules/invoiceedit.php:1.39 lms/modules/invoiceedit.php:1.40 --- lms/modules/invoiceedit.php:1.39 Mon Apr 4 13:52:03 2011 +++ lms/modules/invoiceedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoiceedit.php,v 1.39 2011/04/04 11:52:03 alec Exp $ + * $Id: invoiceedit.php,v 1.40 2011/10/14 16:08:59 chilek Exp $ */ $taxeslist = $LMS->GetTaxes(); @@ -68,7 +68,7 @@ $itemdata = r_trim($_POST); $ntempl = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); -$layout['pagetitle'] = trans('Invoice Edit: $0', $ntempl); +$layout['pagetitle'] = trans('Invoice Edit: $a', $ntempl); if(isset($_GET['customerid']) && $_GET['customerid'] != '' && $LMS->CustomerExists($_GET['customerid'])) $action = 'setcustomer'; Index: lms/modules/invoicenew.php diff -u lms/modules/invoicenew.php:1.87 lms/modules/invoicenew.php:1.88 --- lms/modules/invoicenew.php:1.87 Mon Apr 4 13:52:03 2011 +++ lms/modules/invoicenew.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoicenew.php,v 1.87 2011/04/04 11:52:03 alec Exp $ + * $Id: invoicenew.php,v 1.88 2011/10/14 16:08:59 chilek Exp $ */ // Invoiceless liabilities: Zobowiazania/obciazenia na ktore nie zostala wystawiona faktura @@ -206,7 +206,7 @@ if($invoice['cdate'] < $maxdate) { - $error['cdate'] = trans('Last date of invoice settlement is $0. If sure, you want to write invoice with date of $1, then click "Submit" again.', + $error['cdate'] = trans('Last date of invoice settlement is $a. If sure, you want to write invoice with date of $b, then click "Submit" again.', date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $invoice['cdate'])); $invoice['cdatewarning'] = 1; } @@ -219,7 +219,7 @@ if(!preg_match('/^[0-9]+$/', $invoice['number'])) $error['number'] = trans('Invoice number must be integer!'); elseif($LMS->DocumentExists($invoice['number'], DOC_INVOICE, $invoice['numberplanid'], $invoice['cdate'])) - $error['number'] = trans('Invoice number $0 already exists!', $invoice['number']); + $error['number'] = trans('Invoice number $a already exists!', $invoice['number']); } if(empty($invoice['paytime_default']) && !preg_match('/^[0-9]+$/', $invoice['paytime'])) @@ -289,7 +289,7 @@ if(!preg_match('/^[0-9]+$/', $invoice['number'])) $error['number'] = trans('Invoice number must be integer!'); elseif($LMS->DocumentExists($invoice['number'], DOC_INVOICE, $invoice['numberplanid'], $invoice['cdate'])) - $error['number'] = trans('Invoice number $0 already exists!', $invoice['number']); + $error['number'] = trans('Invoice number $a already exists!', $invoice['number']); if($error) { $invoice['number'] = $LMS->GetNewDocumentNumber(DOC_INVOICE, $invoice['numberplanid'], $invoice['cdate']); Index: lms/modules/invoicenote.php diff -u lms/modules/invoicenote.php:1.48 lms/modules/invoicenote.php:1.49 --- lms/modules/invoicenote.php:1.48 Mon Apr 4 13:52:03 2011 +++ lms/modules/invoicenote.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoicenote.php,v 1.48 2011/04/04 11:52:03 alec Exp $ + * $Id: invoicenote.php,v 1.49 2011/10/14 16:08:59 chilek Exp $ */ $taxeslist = $LMS->GetTaxes(); @@ -80,7 +80,7 @@ $SESSION->restore('cnoteerror', $error); $ntempl = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); -$layout['pagetitle'] = trans('Credit Note for Invoice: $0', $ntempl); +$layout['pagetitle'] = trans('Credit Note for Invoice: $a', $ntempl); switch($action) { @@ -157,7 +157,7 @@ if(!preg_match('/^[0-9]+$/', $cnote['number'])) $error['number'] = trans('Credit note number must be integer!'); elseif($LMS->DocumentExists($cnote['number'], DOC_CNOTE, $cnote['numberplanid'], $cnote['cdate'])) - $error['number'] = trans('Credit note number $0 already exists!', $cnote['number']); + $error['number'] = trans('Credit note number $a already exists!', $cnote['number']); } // finally check if selected customer can use selected numberplan @@ -224,7 +224,7 @@ if(!preg_match('/^[0-9]+$/', $cnote['number'])) $error['number'] = trans('Credit note number must be integer!'); elseif($LMS->DocumentExists($cnote['number'], DOC_CNOTE, $cnote['numberplanid'], $cnote['cdate'])) - $error['number'] = trans('Credit note number $0 already exists!', $cnote['number']); + $error['number'] = trans('Credit note number $a already exists!', $cnote['number']); if($error) $cnote['number'] = $LMS->GetNewDocumentNumber(DOC_CNOTE, $cnote['numberplanid'], $cnote['cdate']); Index: lms/modules/invoicereport.php diff -u lms/modules/invoicereport.php:1.54 lms/modules/invoicereport.php:1.55 --- lms/modules/invoicereport.php:1.54 Thu Apr 7 12:04:22 2011 +++ lms/modules/invoicereport.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoicereport.php,v 1.54 2011/04/07 10:04:22 alec Exp $ + * $Id: invoicereport.php,v 1.55 2011/10/14 16:08:59 chilek Exp $ */ function set_taxes($taxid) @@ -52,7 +52,7 @@ $unixto = mktime(23,59,59); //today } -$layout['pagetitle'] = trans('Sale Registry for period $0 - $1', $from, $to); +$layout['pagetitle'] = trans('Sale Registry for period $a - $b', $from, $to); $listdata = array('tax' => 0, 'brutto' => 0); $invoicelist = array(); @@ -81,9 +81,9 @@ $groupnames .= ($idx ? ', ' : '') . $row['name']; if(isset($_POST['groupexclude'])) - $layout['group'] = trans('Group: all excluding $0', $groupnames); + $layout['group'] = trans('Group: all excluding $a', $groupnames); else - $layout['group'] = trans('Group: $0', $groupnames); + $layout['group'] = trans('Group: $a', $groupnames); } if(!empty($_POST['division'])) Index: lms/modules/messageadd.php diff -u lms/modules/messageadd.php:1.17 lms/modules/messageadd.php:1.18 --- lms/modules/messageadd.php:1.17 Fri Mar 25 15:40:41 2011 +++ lms/modules/messageadd.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: messageadd.php,v 1.17 2011/03/25 14:40:41 chilek Exp $ + * $Id: messageadd.php,v 1.18 2011/10/14 16:08:59 chilek Exp $ */ function GetRecipients($filter, $type=MSG_MAIL) @@ -272,7 +272,7 @@ } if(!empty($CONFIG['mail']['debug_email'])) - echo ''.trans('Warning! Debug mode (using address $0).',$CONFIG['mail']['debug_email']).'
'; + echo ''.trans('Warning! Debug mode (using address $a).',$CONFIG['mail']['debug_email']).'
'; $headers['From'] = '"'.$message['from'].'" <'.$message['sender'].'>'; $headers['Subject'] = $message['subject']; @@ -280,7 +280,7 @@ } else { if (!empty($CONFIG['sms']['debug_phone'])) - echo ''.trans('Warning! Debug mode (using phone $0).',$CONFIG['sms']['debug_phone']).'
'; + echo ''.trans('Warning! Debug mode (using phone $a).',$CONFIG['sms']['debug_phone']).'
'; } foreach($recipients as $key => $row) @@ -300,7 +300,7 @@ echo ' '; } - echo trans('$0 of $1 ($2) $3:', ($key+1), sizeof($recipients), + echo trans('$a of $b ($c) $d:', ($key+1), sizeof($recipients), sprintf('%02.1f%%',round((100/sizeof($recipients))*($key+1),1)), $row['customername'].' <'.$row['destination'].'>'); flush(); Index: lms/modules/messageinfo.php diff -u lms/modules/messageinfo.php:1.7 lms/modules/messageinfo.php:1.8 --- lms/modules/messageinfo.php:1.7 Tue Jan 18 09:12:23 2011 +++ lms/modules/messageinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: messageinfo.php,v 1.7 2011/01/18 08:12:23 alec Exp $ + * $Id: messageinfo.php,v 1.8 2011/10/14 16:08:59 chilek Exp $ */ function GetItemList($id, $order='id,desc', $search=NULL, $cat=NULL, $status=NULL) @@ -166,7 +166,7 @@ $pagelimit = (empty($CONFIG['phpui']['messagelist_pagelimit']) ? $listdata['total'] : $CONFIG['phpui']['messagelist_pagelimit']); $SESSION->save('milp', $page); -$layout['pagetitle'] = trans('Message Info: $0', $subject); +$layout['pagetitle'] = trans('Message Info: $a', $subject); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/netadd.php diff -u lms/modules/netadd.php:1.55 lms/modules/netadd.php:1.56 --- lms/modules/netadd.php:1.55 Tue Jan 18 09:12:23 2011 +++ lms/modules/netadd.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netadd.php,v 1.55 2011/01/18 08:12:23 alec Exp $ + * $Id: netadd.php,v 1.56 2011/10/14 16:08:59 chilek Exp $ */ if(isset($_POST['netadd'])) @@ -61,7 +61,7 @@ { if(getnetaddr($netadd['address'], prefix2mask($netadd['prefix'])) != $netadd['address']) { - $error['address'] = trans('Specified address is not a network address, setting $0',getnetaddr($netadd['address'], prefix2mask($netadd['prefix']))); + $error['address'] = trans('Specified address is not a network address, setting $a',getnetaddr($netadd['address'], prefix2mask($netadd['prefix']))); $netadd['address'] = getnetaddr($netadd['address'], prefix2mask($netadd['prefix'])); } else Index: lms/modules/netcmp.php diff -u lms/modules/netcmp.php:1.39 lms/modules/netcmp.php:1.40 --- lms/modules/netcmp.php:1.39 Tue Jan 18 09:12:23 2011 +++ lms/modules/netcmp.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netcmp.php,v 1.39 2011/01/18 08:12:23 alec Exp $ + * $Id: netcmp.php,v 1.40 2011/10/14 16:08:59 chilek Exp $ */ if(!$LMS->NetworkExists($_GET['id'])) @@ -36,9 +36,9 @@ $LMS->NetworkCompress($_GET['id']); $SESSION->redirect('?m='.$SESSION->get('lastmodule').'&id='.$_GET['id']); }else{ - $layout['pagetitle'] = trans('Readdressing Network $0', strtoupper($network['name'])); + $layout['pagetitle'] = trans('Readdressing Network $a', strtoupper($network['name'])); $SMARTY->display('header.html'); - echo '

'.trans('Readdressing network $0', strtoupper($network['name'])).'

'; + echo '

'.trans('Readdressing network $a', strtoupper($network['name'])).'

'; echo '

'.trans('Are you sure, you want to reorder that network?').'

'; echo ''.trans('Yes, I am sure.').''; $SMARTY->display('footer.html'); Index: lms/modules/netdel.php diff -u lms/modules/netdel.php:1.39 lms/modules/netdel.php:1.40 --- lms/modules/netdel.php:1.39 Tue Jan 18 09:12:23 2011 +++ lms/modules/netdel.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netdel.php,v 1.39 2011/01/18 08:12:23 alec Exp $ + * $Id: netdel.php,v 1.40 2011/10/14 16:08:59 chilek Exp $ */ if(!$LMS->NetworkExists($_GET['id'])) @@ -43,7 +43,7 @@ } else { - $layout['pagetitle'] = trans('Removing network $0', strtoupper($network['name'])); + $layout['pagetitle'] = trans('Removing network $a', strtoupper($network['name'])); $SMARTY->display('header.html'); echo '

'.$layout['pagetitle'].'

'; echo '

'.trans('Are you sure, you want to delete that network?').'

'; @@ -53,7 +53,7 @@ } else { - $layout['pagetitle'] = trans('Info Network: $0', $network['name']); + $layout['pagetitle'] = trans('Info Network: $a', $network['name']); $SMARTY->assign('network',$network); $SMARTY->assign('networks', $LMS->GetNetworks()); $SMARTY->assign('error',$error); Index: lms/modules/netdevdel.php diff -u lms/modules/netdevdel.php:1.28 lms/modules/netdevdel.php:1.29 --- lms/modules/netdevdel.php:1.28 Tue Jan 18 09:12:23 2011 +++ lms/modules/netdevdel.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netdevdel.php,v 1.28 2011/01/18 08:12:23 alec Exp $ + * $Id: netdevdel.php,v 1.29 2011/10/14 16:08:59 chilek Exp $ */ if(! $LMS->NetDevExists($_GET['id'])) @@ -29,7 +29,7 @@ $SESSION->redirect('?m=netdevlist'); } -$layout['pagetitle'] = trans('Deletion of Device with ID: $0',sprintf('%04d',$_GET['id'])); +$layout['pagetitle'] = trans('Deletion of Device with ID: $a',sprintf('%04d',$_GET['id'])); $SMARTY->assign('netdevid',$_GET['id']); if($LMS->CountNetDevLinks($_GET['id'])>0) Index: lms/modules/netdevedit.php diff -u lms/modules/netdevedit.php:1.73 lms/modules/netdevedit.php:1.74 --- lms/modules/netdevedit.php:1.73 Wed Aug 31 12:46:46 2011 +++ lms/modules/netdevedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netdevedit.php,v 1.73 2011/08/31 10:46:46 alec Exp $ + * $Id: netdevedit.php,v 1.74 2011/10/14 16:08:59 chilek Exp $ */ if(! $LMS->NetDevExists($_GET['id'])) @@ -337,7 +337,7 @@ if($nodeipdata['name']=='') $error['ipname'] = trans('Address field is required!'); elseif(strlen($nodeipdata['name']) > 32) - $error['ipname'] = trans('Specified name is too long (max.$0 characters)!','32'); + $error['ipname'] = trans('Specified name is too long (max.$a characters)!','32'); elseif($LMS->GetNodeIDByName($nodeipdata['name'])) $error['ipname'] = trans('Specified name is in use!'); elseif(!preg_match('/^[_a-z0-9-]+$/i', $nodeipdata['name'])) @@ -427,7 +427,7 @@ if($nodeipdata['name']=='') $error['ipname'] = trans('Address field is required!'); elseif(strlen($nodeipdata['name']) > 32) - $error['ipname'] = trans('Specified name is too long (max.$0 characters)!','32'); + $error['ipname'] = trans('Specified name is too long (max.$a characters)!','32'); elseif( $LMS->GetNodeIDByName($nodeipdata['name']) && $LMS->GetNodeName($_GET['ip'])!=$nodeipdata['name'] @@ -520,7 +520,7 @@ if($netdevdata['name'] == '') $error['name'] = trans('Device name is required!'); elseif(strlen($netdevdata['name']) > 32) - $error['name'] = trans('Specified name is too long (max.$0 characters)!','32'); + $error['name'] = trans('Specified name is too long (max.$a characters)!','32'); $netdevdata['ports'] = intval($netdevdata['ports']); @@ -614,7 +614,7 @@ unset($replacelist['total']); unset($replacelist['direction']); -$layout['pagetitle'] = trans('Device Edit: $0 ($1)', $netdevdata['name'], $netdevdata['producer']); +$layout['pagetitle'] = trans('Device Edit: $a ($b)', $netdevdata['name'], $netdevdata['producer']); if($subtitle) $layout['pagetitle'] .= ' - '.$subtitle; Index: lms/modules/netdevinfo.php diff -u lms/modules/netdevinfo.php:1.34 lms/modules/netdevinfo.php:1.35 --- lms/modules/netdevinfo.php:1.34 Tue Jan 18 09:12:23 2011 +++ lms/modules/netdevinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netdevinfo.php,v 1.34 2011/01/18 08:12:23 alec Exp $ + * $Id: netdevinfo.php,v 1.35 2011/10/14 16:08:59 chilek Exp $ */ if(! $LMS->NetDevExists($_GET['id'])) @@ -45,7 +45,7 @@ $SESSION->save('backto', $_SERVER['QUERY_STRING']); -$layout['pagetitle'] = trans('Device Info: $0 $1 $2', $netdevinfo['name'], $netdevinfo['producer'], $netdevinfo['model']); +$layout['pagetitle'] = trans('Device Info: $a $b $c', $netdevinfo['name'], $netdevinfo['producer'], $netdevinfo['model']); $netdevinfo['id'] = $_GET['id']; Index: lms/modules/netedit.php diff -u lms/modules/netedit.php:1.63 lms/modules/netedit.php:1.64 --- lms/modules/netedit.php:1.63 Tue Jan 18 09:12:23 2011 +++ lms/modules/netedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netedit.php,v 1.63 2011/01/18 08:12:23 alec Exp $ + * $Id: netedit.php,v 1.64 2011/10/14 16:08:59 chilek Exp $ */ if(!$LMS->NetworkExists($_GET['id'])) @@ -62,7 +62,7 @@ { if(getnetaddr($networkdata['address'],prefix2mask($networkdata['prefix']))!=$networkdata['address']) { - $error['address'] = trans('Specified address is not a network address, setting $0',getnetaddr($networkdata['address'],prefix2mask($networkdata['prefix']))); + $error['address'] = trans('Specified address is not a network address, setting $a',getnetaddr($networkdata['address'],prefix2mask($networkdata['prefix']))); $networkdata['address'] = getnetaddr($networkdata['address'],prefix2mask($networkdata['prefix'])); } else @@ -178,7 +178,7 @@ $networks = $LMS->GetNetworks(); -$layout['pagetitle'] = trans('Network Edit: $0',$network['name']); +$layout['pagetitle'] = trans('Network Edit: $a',$network['name']); $SMARTY->assign('unlockedit',TRUE); $SMARTY->assign('network',$network); Index: lms/modules/netinfo.php diff -u lms/modules/netinfo.php:1.45 lms/modules/netinfo.php:1.46 --- lms/modules/netinfo.php:1.45 Tue Jan 18 09:12:23 2011 +++ lms/modules/netinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netinfo.php,v 1.45 2011/01/18 08:12:23 alec Exp $ + * $Id: netinfo.php,v 1.46 2011/10/14 16:08:59 chilek Exp $ */ if(!$LMS->NetworkExists($_GET['id'])) @@ -38,7 +38,7 @@ $network = $LMS->GetNetworkRecord($_GET['id'], $page, $CONFIG['phpui']['networkhosts_pagelimit']); -$layout['pagetitle'] = trans('Info Network: $0', $network['name']); +$layout['pagetitle'] = trans('Info Network: $a', $network['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/netremap.php diff -u lms/modules/netremap.php:1.37 lms/modules/netremap.php:1.38 --- lms/modules/netremap.php:1.37 Tue Jan 18 09:12:23 2011 +++ lms/modules/netremap.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: netremap.php,v 1.37 2011/01/18 08:12:23 alec Exp $ + * $Id: netremap.php,v 1.38 2011/10/14 16:08:59 chilek Exp $ */ if(!$LMS->NetworkExists($_GET['id'])||!$LMS->NetworkExists($_GET['mapto'])) @@ -43,10 +43,10 @@ $SESSION->redirect('?m=netinfo&id='.$network['dest']['id']); }else{ - $layout['pagetitle'] = trans('Readdressing Network $0',strtoupper($network['source']['name'])); + $layout['pagetitle'] = trans('Readdressing Network $a',strtoupper($network['source']['name'])); $SMARTY->display('header.html'); echo '

'.$layout['pagetitle'].'

'; - echo '

'.trans('Are you sure, you want to readdress network $0 to network $1 ?',strtoupper($network['source']['name']).' ('.$network['source']['address'].'/'.$network['source']['prefix'].')', strtoupper($network['dest']['name']).' ('.$network['dest']['address'].'/'.$network['dest']['prefix'].')').'

'; + echo '

'.trans('Are you sure, you want to readdress network $a to network $b ?',strtoupper($network['source']['name']).' ('.$network['source']['address'].'/'.$network['source']['prefix'].')', strtoupper($network['dest']['name']).' ('.$network['dest']['address'].'/'.$network['dest']['prefix'].')').'

'; echo ''.trans('Yes, I am sure.').''; $SMARTY->display('footer.html'); } Index: lms/modules/nodedel.php diff -u lms/modules/nodedel.php:1.44 lms/modules/nodedel.php:1.45 --- lms/modules/nodedel.php:1.44 Fri Feb 18 15:32:46 2011 +++ lms/modules/nodedel.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodedel.php,v 1.44 2011/02/18 14:32:46 alec Exp $ + * $Id: nodedel.php,v 1.45 2011/10/14 16:08:59 chilek Exp $ */ $nodeid = intval($_GET['id']); @@ -34,9 +34,9 @@ { $nodename = $LMS->GetNodeName($nodeid); - $layout['pagetitle'] = trans('Delete Node $0', $nodename); + $layout['pagetitle'] = trans('Delete Node $a', $nodename); - $body = '

'.trans('Are you sure, you want to delete node $0?', $nodename).'

'; + $body = '

'.trans('Are you sure, you want to delete node $a?', $nodename).'

'; $body .= '

'.trans('Yes, I am sure.').'

'; $SMARTY->assign('body',$body); Index: lms/modules/nodeedit.php diff -u lms/modules/nodeedit.php:1.120 lms/modules/nodeedit.php:1.121 --- lms/modules/nodeedit.php:1.120 Wed Aug 31 12:46:46 2011 +++ lms/modules/nodeedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodeedit.php,v 1.120 2011/08/31 10:46:46 alec Exp $ + * $Id: nodeedit.php,v 1.121 2011/10/14 16:08:59 chilek Exp $ */ $action = isset($_GET['action']) ? $_GET['action'] : ''; @@ -74,7 +74,7 @@ else $SESSION->save('backto', $_SERVER['QUERY_STRING']); -$layout['pagetitle'] = trans('Node Edit: $0', $nodeinfo['name']); +$layout['pagetitle'] = trans('Node Edit: $a', $nodeinfo['name']); if(isset($_POST['nodeedit']) && !isset($_GET['newmac'])) { Index: lms/modules/nodegroupadd.php diff -u lms/modules/nodegroupadd.php:1.8 lms/modules/nodegroupadd.php:1.9 --- lms/modules/nodegroupadd.php:1.8 Tue Jan 18 09:12:24 2011 +++ lms/modules/nodegroupadd.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodegroupadd.php,v 1.8 2011/01/18 08:12:24 alec Exp $ + * $Id: nodegroupadd.php,v 1.9 2011/10/14 16:08:59 chilek Exp $ */ if(isset($_POST['nodegroupadd'])) @@ -43,7 +43,7 @@ elseif(!preg_match('/^[._a-z0-9-]+$/i', $nodegroupadd['name'])) $error['name'] = trans('Invalid chars in group name!'); elseif($DB->GetOne('SELECT 1 FROM nodegroups WHERE name = ?', array($nodegroupadd['name']))) - $error['name'] = trans('Group with name $0 already exists!',$nodegroupadd['name']); + $error['name'] = trans('Group with name $a already exists!',$nodegroupadd['name']); if(!$error) { Index: lms/modules/nodegroupedit.php diff -u lms/modules/nodegroupedit.php:1.10 lms/modules/nodegroupedit.php:1.11 --- lms/modules/nodegroupedit.php:1.10 Tue Apr 19 10:22:25 2011 +++ lms/modules/nodegroupedit.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodegroupedit.php,v 1.10 2011/04/19 08:22:25 chilek Exp $ + * $Id: nodegroupedit.php,v 1.11 2011/10/14 16:08:59 chilek Exp $ */ if( !($id = $DB->GetOne('SELECT id FROM nodegroups WHERE id = ?', array(intval($_GET['id']))))) @@ -35,7 +35,7 @@ $nodegroup = $LMS->GetNodeGroup($id, $membersnetid); $nodes = $LMS->GetNodesWithoutGroup($id, $othersnetid); -$layout['pagetitle'] = trans('Group Edit: $0', $nodegroup['name']); +$layout['pagetitle'] = trans('Group Edit: $a', $nodegroup['name']); if(isset($_POST['nodegroup'])) { @@ -53,7 +53,7 @@ elseif(!preg_match('/^[._a-z0-9-]+$/i', $nodegroupedit['name'])) $error['name'] = trans('Invalid chars in group name!'); elseif( $id != $nodegroupedit['id']) - $error['name'] = trans('Group with name $0 already exists!',$nodegroupedit['name']); + $error['name'] = trans('Group with name $a already exists!',$nodegroupedit['name']); if(!$error) { Index: lms/modules/nodegroupinfo.php diff -u lms/modules/nodegroupinfo.php:1.4 lms/modules/nodegroupinfo.php:1.5 --- lms/modules/nodegroupinfo.php:1.4 Tue Jan 18 09:12:24 2011 +++ lms/modules/nodegroupinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodegroupinfo.php,v 1.4 2011/01/18 08:12:24 alec Exp $ + * $Id: nodegroupinfo.php,v 1.5 2011/10/14 16:08:59 chilek Exp $ */ if( !($id = $DB->GetOne('SELECT id FROM nodegroups WHERE id = ?', array(intval($_GET['id']))))) @@ -49,7 +49,7 @@ $nodes = $LMS->GetNodesWithoutGroup($id, isset($othersnetid) ? $othersnetid : 0); $nodescount = sizeof($nodes); -$layout['pagetitle'] = trans('Group Info: $0',$nodegroup['name']); +$layout['pagetitle'] = trans('Group Info: $a',$nodegroup['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/nodeinfo.php diff -u lms/modules/nodeinfo.php:1.72 lms/modules/nodeinfo.php:1.73 --- lms/modules/nodeinfo.php:1.72 Fri Feb 18 15:32:46 2011 +++ lms/modules/nodeinfo.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: nodeinfo.php,v 1.72 2011/02/18 14:32:46 alec Exp $ + * $Id: nodeinfo.php,v 1.73 2011/10/14 16:08:59 chilek Exp $ */ function NodeStats($id, $dt) @@ -94,7 +94,7 @@ else $netdevices = $LMS->GetNetDev($nodeinfo['netdev']); -$layout['pagetitle'] = trans('Node Info: $0',$nodeinfo['name']); +$layout['pagetitle'] = trans('Node Info: $a',$nodeinfo['name']); $nodeinfo = $LMS->ExecHook('node_info_init', $nodeinfo); Index: lms/modules/note.php diff -u lms/modules/note.php:1.6 lms/modules/note.php:1.7 --- lms/modules/note.php:1.6 Tue Jan 18 09:12:24 2011 +++ lms/modules/note.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: note.php,v 1.6 2011/01/18 08:12:24 alec Exp $ + * $Id: note.php,v 1.7 2011/10/14 16:08:59 chilek Exp $ */ /* @@ -127,7 +127,7 @@ elseif($note = $LMS->GetNoteContent($_GET['id'])) { $number = docnumber($note['number'], $note['template'], $note['cdate']); - $layout['pagetitle'] = trans('Debit Note No. $0', $number); + $layout['pagetitle'] = trans('Debit Note No. $a', $number); $SMARTY->display('noteheader.html'); Index: lms/modules/noteadd.php diff -u lms/modules/noteadd.php:1.8 lms/modules/noteadd.php:1.9 --- lms/modules/noteadd.php:1.8 Tue Jan 18 09:12:24 2011 +++ lms/modules/noteadd.php Fri Oct 14 18:08:59 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: noteadd.php,v 1.8 2011/01/18 08:12:24 alec Exp $ + * $Id: noteadd.php,v 1.9 2011/10/14 16:08:59 chilek Exp $ */ //$taxeslist = $LMS->GetTaxes(); @@ -116,7 +116,7 @@ if($note['cdate'] < $maxdate) { - $error['cdate'] = trans('Last date of debit note settlement is $0. If sure, you want to write note with date of $1, then click "Submit" again.', date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $note['cdate'])); + $error['cdate'] = trans('Last date of debit note settlement is $a. If sure, you want to write note with date of $b, then click "Submit" again.', date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $note['cdate'])); $note['cdatewarning'] = 1; } } @@ -128,7 +128,7 @@ if(!preg_match('/^[0-9]+$/', $note['number'])) $error['number'] = trans('Debit note number must be integer!'); elseif($LMS->DocumentExists($note['number'], DOC_DNOTE, $note['numberplanid'], $note['cdate'])) - $error['number'] = trans('Debit note number $0 already exists!', $note['number']); + $error['number'] = trans('Debit note number $a already exists!', $note['number']); } if(empty($note['paytime_default']) && !preg_match('/^[0-9]+$/', $note['paytime'])) @@ -167,7 +167,7 @@ if(!preg_match('/^[0-9]+$/', $note['number'])) $error['number'] = trans('Debit note number must be integer!'); elseif($LMS->DocumentExists($note['number'], DOC_DNOTE, $note['numberplanid'], $note['cdate'])) - $error['number'] = trans('Debit note number $0 already exists!', $note['number']); + $error['number'] = trans('Debit note number $a already exists!', $note['number']); if($error) $note['number'] = $LMS->GetNewDocumentNumber(DOC_DNOTE, $note['numberplanid'], $note['cdate']); Index: lms/modules/noteedit.php diff -u lms/modules/noteedit.php:1.5 lms/modules/noteedit.php:1.6 --- lms/modules/noteedit.php:1.5 Tue Jan 18 09:12:24 2011 +++ lms/modules/noteedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: noteedit.php,v 1.5 2011/01/18 08:12:24 alec Exp $ + * $Id: noteedit.php,v 1.6 2011/10/14 16:09:00 chilek Exp $ */ //$taxeslist = $LMS->GetTaxes(); @@ -57,7 +57,7 @@ $SESSION->restore('noteediterror', $error); $ntempl = docnumber($note['number'], $note['template'], $note['cdate']); -$layout['pagetitle'] = trans('Debit Note Edit: $0', $ntempl); +$layout['pagetitle'] = trans('Debit Note Edit: $a', $ntempl); if(!empty($_GET['customerid']) && $LMS->CustomerExists($_GET['customerid'])) $action = 'setcustomer'; Index: lms/modules/number.php diff -u lms/modules/number.php:1.13 lms/modules/number.php:1.14 --- lms/modules/number.php:1.13 Tue Jan 18 09:12:24 2011 +++ lms/modules/number.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: number.php,v 1.13 2011/01/18 08:12:24 alec Exp $ + * $Id: number.php,v 1.14 2011/10/14 16:09:00 chilek Exp $ */ if($doc = $DB->GetRow('SELECT number, cdate, type, template, extnumber @@ -34,16 +34,16 @@ switch($doc['type']) { case DOC_INVOICE: - $ntempl = trans('Invoice No. $0',$ntempl); + $ntempl = trans('Invoice No. $a',$ntempl); break; case DOC_RECEIPT: - $ntempl = trans('Cash Receipt No. $0',$ntempl); + $ntempl = trans('Cash Receipt No. $a',$ntempl); break; case DOC_CNOTE: - $ntempl = trans('Credit Note No. $0',$ntempl); + $ntempl = trans('Credit Note No. $a',$ntempl); break; case DOC_DNOTE: - $ntempl = trans('Debit Note No. $0',$ntempl); + $ntempl = trans('Debit Note No. $a',$ntempl); break; } Index: lms/modules/numberplanedit.php diff -u lms/modules/numberplanedit.php:1.13 lms/modules/numberplanedit.php:1.14 --- lms/modules/numberplanedit.php:1.13 Tue Jan 18 09:12:24 2011 +++ lms/modules/numberplanedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: numberplanedit.php,v 1.13 2011/01/18 08:12:24 alec Exp $ + * $Id: numberplanedit.php,v 1.14 2011/10/14 16:09:00 chilek Exp $ */ $numberplan = $DB->GetRow('SELECT id, period, template, doctype, isdefault @@ -108,7 +108,7 @@ WHERE d.id = divisionid AND planid = ?', 'id', array($numberplan['id'])); } -$layout['pagetitle'] = trans('Numbering Plan Edit: $0', $template); +$layout['pagetitle'] = trans('Numbering Plan Edit: $a', $template); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/paymentedit.php diff -u lms/modules/paymentedit.php:1.26 lms/modules/paymentedit.php:1.27 --- lms/modules/paymentedit.php:1.26 Tue Jan 18 09:12:24 2011 +++ lms/modules/paymentedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: paymentedit.php,v 1.26 2011/01/18 08:12:24 alec Exp $ + * $Id: paymentedit.php,v 1.27 2011/10/14 16:09:00 chilek Exp $ */ if(!$LMS->PaymentExists($_GET['id'])) @@ -143,7 +143,7 @@ $payment['at'] = sprintf('%02d/%02d', $payment['at']%100, $payment['at']/100+1); } -$layout['pagetitle'] = trans('Payment Edit: $0',$payment['name']); +$layout['pagetitle'] = trans('Payment Edit: $a',$payment['name']); $SMARTY->assign('payment', $payment); $SMARTY->assign('error', $error); Index: lms/modules/paymentinfo.php diff -u lms/modules/paymentinfo.php:1.20 lms/modules/paymentinfo.php:1.21 --- lms/modules/paymentinfo.php:1.20 Tue Jan 18 09:12:24 2011 +++ lms/modules/paymentinfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: paymentinfo.php,v 1.20 2011/01/18 08:12:24 alec Exp $ + * $Id: paymentinfo.php,v 1.21 2011/10/14 16:09:00 chilek Exp $ */ if(!$LMS->PaymentExists($_GET['id'])) @@ -31,7 +31,7 @@ $payment = $LMS->GetPayment($_GET['id']); -$layout['pagetitle'] = trans('Payment Info: $0',$payment['name']); +$layout['pagetitle'] = trans('Payment Info: $a',$payment['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/print.php diff -u lms/modules/print.php:1.141 lms/modules/print.php:1.142 --- lms/modules/print.php:1.141 Fri Apr 1 12:35:12 2011 +++ lms/modules/print.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: print.php,v 1.141 2011/04/01 10:35:12 alec Exp $ + * $Id: print.php,v 1.142 2011/10/14 16:09:00 chilek Exp $ */ $type = isset($_GET['type']) ? $_GET['type'] : ''; @@ -53,7 +53,7 @@ $id = intval($_POST['customer']); - $layout['pagetitle'] = trans('Customer $0 Balance Sheet ($1 to $2)',$LMS->GetCustomerName($id), ($from ? $from : ''), $to); + $layout['pagetitle'] = trans('Customer $a Balance Sheet ($b to $c)',$LMS->GetCustomerName($id), ($from ? $from : ''), $to); $list['balance'] = 0; $list['income'] = 0; @@ -151,9 +151,9 @@ $net = $LMS->GetNetworkParams($net); if($user = $_POST['user']) - $layout['pagetitle'] = trans('Balance Sheet of User: $0 ($1 to $2)', $LMS->GetUserName($user), ($from ? $from : ''), $to); + $layout['pagetitle'] = trans('Balance Sheet of User: $a ($b to $c)', $LMS->GetUserName($user), ($from ? $from : ''), $to); else - $layout['pagetitle'] = trans('Balance Sheet ($0 to $1)', ($from ? $from : ''), $to); + $layout['pagetitle'] = trans('Balance Sheet ($a to $b)', ($from ? $from : ''), $to); if($types) { @@ -301,7 +301,7 @@ $date['to'] = mktime(23,59,59); // end of today } - $layout['pagetitle'] = trans('Total Invoiceless Income ($0 to $1)',($from ? $from : ''), $to); + $layout['pagetitle'] = trans('Total Invoiceless Income ($a to $b)',($from ? $from : ''), $to); $incomelist = $DB->GetAll('SELECT floor(time/86400)*86400 AS date, SUM(value) AS value FROM cash c @@ -339,7 +339,7 @@ $date['to'] = mktime(23,59,59); // end of today } - $layout['pagetitle'] = trans('Cash Import History ($0 to $1)', $from, $to); + $layout['pagetitle'] = trans('Cash Import History ($a to $b)', $from, $to); $importlist = $DB->GetAll('SELECT c.time, c.value, c.customerid, ' .$DB->Concat('upper(v.lastname)',"' '",'v.name').' AS customername @@ -448,7 +448,7 @@ $today = mktime(0,0,0); } - $layout['pagetitle'] = trans('Liability Report on $0',date('Y/m/d', $reportday)); + $layout['pagetitle'] = trans('Liability Report on $a',date('Y/m/d', $reportday)); $order = $_POST['order']; $direction = $_POST['direction']; @@ -738,17 +738,17 @@ $layout['pagetitle'] = trans('Cash Report').' '.$period; if($registry) - $layout['registry'] = trans('Registry: $0', ($registry ? $DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($registry)) : trans('all'))); + $layout['registry'] = trans('Registry: $a', ($registry ? $DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($registry)) : trans('all'))); if($user) - $layout['username'] = trans('Cashier: $0', $DB->GetOne('SELECT name FROM users WHERE id=?', array($user))); + $layout['username'] = trans('Cashier: $a', $DB->GetOne('SELECT name FROM users WHERE id=?', array($user))); if($group) { $groupname = $DB->GetOne('SELECT name FROM customergroups WHERE id=?', array($group)); if(isset($_POST['groupexclude'])) - $layout['group'] = trans('Group: all excluding $0', $groupname); + $layout['group'] = trans('Group: all excluding $a', $groupname); else - $layout['group'] = trans('Group: $0', $groupname); + $layout['group'] = trans('Group: $a', $groupname); } $SMARTY->assign('receiptlist', $list); $SMARTY->assign('listdata', $listdata); Index: lms/modules/promotionedit.php diff -u lms/modules/promotionedit.php:1.1 lms/modules/promotionedit.php:1.2 --- lms/modules/promotionedit.php:1.1 Wed Mar 2 11:31:05 2011 +++ lms/modules/promotionedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: promotionedit.php,v 1.1 2011/03/02 10:31:05 alec Exp $ + * $Id: promotionedit.php,v 1.2 2011/10/14 16:09:00 chilek Exp $ */ $promotion = isset($_POST['promotion']) ? $_POST['promotion'] : NULL; @@ -74,7 +74,7 @@ array(intval($_GET['id']))); } -$layout['pagetitle'] = trans('Promotion Edit: $0', $promotion['name']); +$layout['pagetitle'] = trans('Promotion Edit: $a', $promotion['name']); $SMARTY->assign('error', $error); $SMARTY->assign('promotion', $promotion); Index: lms/modules/promotioninfo.php diff -u lms/modules/promotioninfo.php:1.1 lms/modules/promotioninfo.php:1.2 --- lms/modules/promotioninfo.php:1.1 Wed Mar 2 11:31:05 2011 +++ lms/modules/promotioninfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: promotioninfo.php,v 1.1 2011/03/02 10:31:05 alec Exp $ + * $Id: promotioninfo.php,v 1.2 2011/10/14 16:09:00 chilek Exp $ */ @@ -52,7 +52,7 @@ array($promotion['id'])); } -$layout['pagetitle'] = trans('Promotion Info: $0', $promotion['name']); +$layout['pagetitle'] = trans('Promotion Info: $a', $promotion['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/promotionschemaedit.php diff -u lms/modules/promotionschemaedit.php:1.4 lms/modules/promotionschemaedit.php:1.5 --- lms/modules/promotionschemaedit.php:1.4 Mon Mar 7 14:53:34 2011 +++ lms/modules/promotionschemaedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: promotionschemaedit.php,v 1.4 2011/03/07 13:53:34 alec Exp $ + * $Id: promotionschemaedit.php,v 1.5 2011/10/14 16:09:00 chilek Exp $ */ $action = !empty($_GET['action']) ? $_GET['action'] : null; @@ -210,7 +210,7 @@ $schema['selection'] = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,30,36,42,48,60); -$layout['pagetitle'] = trans('Schema Edit: $0', $oldschema['name']); +$layout['pagetitle'] = trans('Schema Edit: $a', $oldschema['name']); $SMARTY->assign('error', $error); $SMARTY->assign('schema', $schema); Index: lms/modules/promotionschemainfo.php diff -u lms/modules/promotionschemainfo.php:1.3 lms/modules/promotionschemainfo.php:1.4 --- lms/modules/promotionschemainfo.php:1.3 Mon Mar 7 14:53:34 2011 +++ lms/modules/promotionschemainfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: promotionschemainfo.php,v 1.3 2011/03/07 13:53:34 alec Exp $ + * $Id: promotionschemainfo.php,v 1.4 2011/10/14 16:09:00 chilek Exp $ */ @@ -49,11 +49,11 @@ break; } else if ($data == 1) { - $period = trans('Month $0', $data); + $period = trans('Month $a', $data); $mon++; } else { - $period = trans('Months $0-$1', $mon, $mon + $data-1); + $period = trans('Months $a-$b', $mon, $mon + $data-1); $mon += $data; } $schema['periods'][] = $period; @@ -86,7 +86,7 @@ WHERE promotionschemaid = ?) ORDER BY t.name, t.value DESC', array($schema['id'])); -$layout['pagetitle'] = trans('Schema Info: $0', $schema['name']); +$layout['pagetitle'] = trans('Schema Info: $a', $schema['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/receipt.php diff -u lms/modules/receipt.php:1.27 lms/modules/receipt.php:1.28 --- lms/modules/receipt.php:1.27 Mon Apr 4 14:08:31 2011 +++ lms/modules/receipt.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receipt.php,v 1.27 2011/04/04 12:08:31 alec Exp $ + * $Id: receipt.php,v 1.28 2011/10/14 16:09:00 chilek Exp $ */ function GetReceipt($id) @@ -131,7 +131,7 @@ die; } - $layout['pagetitle'] = trans('Cash Receipt No. $0', $receipt['number']); + $layout['pagetitle'] = trans('Cash Receipt No. $a', $receipt['number']); $receipt['last'] = TRUE; $receipt['first'] = TRUE; Index: lms/modules/receipt_pdf.php diff -u lms/modules/receipt_pdf.php:1.17 lms/modules/receipt_pdf.php:1.18 --- lms/modules/receipt_pdf.php:1.17 Mon Apr 4 14:08:31 2011 +++ lms/modules/receipt_pdf.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receipt_pdf.php,v 1.17 2011/04/04 12:08:31 alec Exp $ + * $Id: receipt_pdf.php,v 1.18 2011/10/14 16:09:00 chilek Exp $ */ function receipt_header($x, $y) @@ -44,7 +44,7 @@ text_align_center($xmax - 70, $y - 10, $font_size + 4, ''.iconv("UTF-8", "ISO-8859-2", trans('CR-out')).''); else text_align_center($xmax - 70, $y - 10, $font_size + 4, ''.iconv("UTF-8", "ISO-8859-2", trans('CR-in')).''); - text_align_center($xmax - 70, $y - 30, $font_size, ''.iconv("UTF-8", "ISO-8859-2", trans('No. $0',$receipt['number'])).''); + text_align_center($xmax - 70, $y - 30, $font_size, ''.iconv("UTF-8", "ISO-8859-2", trans('No. $a',$receipt['number'])).''); if($receipt['type'] == 'out') $y -= text_align_center($x + 210, $y, $font_size, ''.iconv("UTF-8", "ISO-8859-2", trans('Proof of Pay-out')).''); @@ -203,7 +203,7 @@ $y -= 16; text_align_left($x+2,$y,8,iconv("UTF-8","ISO-8859-2",trans('In words:'))); - $y = text_wrap($x+40,$y,300,$font_size-2,iconv("UTF-8","ISO-8859-2",trans('$0 dollars $1 cents',to_words(floor($receipt['total'])),to_words($receipt['totalg']))),''); + $y = text_wrap($x+40,$y,300,$font_size-2,iconv("UTF-8","ISO-8859-2",trans('$a dollars $b cents',to_words(floor($receipt['total'])),to_words($receipt['totalg']))),''); $y -= 8; $y += $font_size/2; Index: lms/modules/receiptadd.php diff -u lms/modules/receiptadd.php:1.65 lms/modules/receiptadd.php:1.66 --- lms/modules/receiptadd.php:1.65 Tue Jan 18 09:12:24 2011 +++ lms/modules/receiptadd.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receiptadd.php,v 1.65 2011/01/18 08:12:24 alec Exp $ + * $Id: receiptadd.php,v 1.66 2011/10/14 16:09:00 chilek Exp $ */ function GetCustomerCovenants($id) @@ -213,7 +213,7 @@ if(!empty($CONFIG['receipts']['nodegroups_warning'])) $customer['nodegroupswarning'] = $CONFIG['receipts']['nodegroups_warning']; else - $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $0!', + $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $a!', $CONFIG['receipts']['show_nodegroups_warning']); } } @@ -277,7 +277,7 @@ $sum += $itemdata['value']; if( $cash < $sum ) - $error['nocash'] = trans('There is no cash in selected registry! You can expense only $0.', moneyf($cash)); + $error['nocash'] = trans('There is no cash in selected registry! You can expense only $a.', moneyf($cash)); } if(!$error && $itemdata['value'] && $itemdata['description']) @@ -307,9 +307,9 @@ $itemdata['posuid'] = (string) (getmicrotime()+$id); if($row['type']==DOC_INVOICE) - $itemdata['description'] = trans('Invoice No. $0', docnumber($row['number'], $row['template'], $row['cdate'])); + $itemdata['description'] = trans('Invoice No. $a', docnumber($row['number'], $row['template'], $row['cdate'])); else - $itemdata['description'] = trans('Credit Note No. $0', docnumber($row['number'], $row['template'], $row['cdate'])); + $itemdata['description'] = trans('Credit Note No. $a', docnumber($row['number'], $row['template'], $row['cdate'])); if($row['reference'] && $receipt['type']=='in') { @@ -346,7 +346,7 @@ if( $cash < $sum ) { - $error['nocash'] = trans('There is no cash in selected registry! You can expense only $0.', moneyf($cash)); + $error['nocash'] = trans('There is no cash in selected registry! You can expense only $a.', moneyf($cash)); break; } } @@ -411,7 +411,7 @@ if($receipt['cdate'] < $maxdate) { - $error['cdate'] = trans('Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.',date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $receipt['cdate'])); + $error['cdate'] = trans('Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.',date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $receipt['cdate'])); $receipt['cdatewarning'] = 1; } } @@ -421,7 +421,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['number'])) $error['number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); } if($receipt['numberplanid'] && !isset($receipt['extnumber'])) @@ -480,7 +480,7 @@ { $balance = $LMS->GetCustomerBalance($cid); if( $balance<0 ) - $error['customerid'] = trans('Selected customer is in debt for $0!', moneyf($balance*-1)); + $error['customerid'] = trans('Selected customer is in debt for $a!', moneyf($balance*-1)); } if(!isset($error)) @@ -527,7 +527,7 @@ if(!empty($CONFIG['receipts']['nodegroups_warning'])) $customer['nodegroupswarning'] = $CONFIG['receipts']['nodegroups_warning']; else - $customer['nodegroupswarning'] = trans('Customer has got nodes in group(s): $0!', $CONFIG['receipts']['show_nodegroups_warning']); + $customer['nodegroupswarning'] = trans('Customer has got nodes in group(s): $a!', $CONFIG['receipts']['show_nodegroups_warning']); } } @@ -555,7 +555,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['number'])) $error['number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); if($error) $receipt['number'] = $LMS->GetNewDocumentNumber(DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate']); @@ -632,7 +632,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['number'])) $error['number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); if($error) $receipt['number'] = $LMS->GetNewDocumentNumber(DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate']); @@ -714,7 +714,7 @@ if( $cash < $value ) { - $error['nocash'] = trans('There is no cash in selected registry! You can expense only $0.', moneyf($cash)); + $error['nocash'] = trans('There is no cash in selected registry! You can expense only $a.', moneyf($cash)); break; } @@ -727,14 +727,14 @@ if(!preg_match('/^[0-9]+$/', $receipt['number'])) $error['number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); if($error) $receipt['number'] = $LMS->GetNewDocumentNumber(DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate']); } // cash-out - $description = trans('Moving assets to registry $0',$DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($dest))); + $description = trans('Moving assets to registry $a',$DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($dest))); $DB->Execute('INSERT INTO documents (type, number, extnumber, numberplanid, cdate, userid, name, closed) VALUES(?, ?, ?, ?, ?, ?, \'\', 1)', @@ -762,7 +762,7 @@ $r_number = docnumber($receipt['number'], $template, $receipt['cdate']); // cash-in - $description = trans('Moving assets from registry $0 ($1)',$DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($receipt['regid'])), $r_number); + $description = trans('Moving assets from registry $a ($b)',$DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($receipt['regid'])), $r_number); $numberplan = $DB->GetOne('SELECT in_numberplanid FROM cashregs WHERE id=?', array($dest)); $number = $LMS->GetNewDocumentNumber(DOC_RECEIPT, $numberplan, $receipt['cdate']); Index: lms/modules/receiptadv.php diff -u lms/modules/receiptadv.php:1.12 lms/modules/receiptadv.php:1.13 --- lms/modules/receiptadv.php:1.12 Tue Jan 18 09:12:24 2011 +++ lms/modules/receiptadv.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receiptadv.php,v 1.12 2011/01/18 08:12:24 alec Exp $ + * $Id: receiptadv.php,v 1.13 2011/10/14 16:09:00 chilek Exp $ */ if(isset($_GET['id'])) @@ -60,7 +60,7 @@ } $titlenumber = docnumber($record['number'], $record['template'], $record['cdate'], $record['extnumber']); -$layout['pagetitle'] = trans('Advance settlement: $0', $titlenumber); +$layout['pagetitle'] = trans('Advance settlement: $a', $titlenumber); if(isset($_POST['receipt'])) { @@ -114,7 +114,7 @@ { $sum = $DB->GetOne('SELECT SUM(value) FROM receiptcontents WHERE regid = ?', array($regid)); if($sum < $diff) - $error['value'] = trans('There is only $0 in registry!', money_format($sum)); + $error['value'] = trans('There is only $a in registry!', money_format($sum)); } } @@ -123,7 +123,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['in_number'])) $error['in_number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['in_number'], DOC_RECEIPT, $in_plan, $receipt['cdate'])) - $error['in_number'] = trans('Receipt number $0 already exists!', $receipt['in_number']); + $error['in_number'] = trans('Receipt number $a already exists!', $receipt['in_number']); } if($receipt['out_number']) @@ -131,7 +131,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['out_number'])) $error['out_number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['out_number'], DOC_RECEIPT, $record['numberplanid'], $receipt['cdate'])) - $error['out_number'] = trans('Receipt number $0 already exists!', $receipt['out_number']); + $error['out_number'] = trans('Receipt number $a already exists!', $receipt['out_number']); } } else @@ -141,7 +141,7 @@ if(!preg_match('/^[0-9]+$/', $receipt['number'])) $error['number'] = trans('Receipt number must be integer!'); elseif($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $in_plan, $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); } } Index: lms/modules/receiptedit.php diff -u lms/modules/receiptedit.php:1.41 lms/modules/receiptedit.php:1.42 --- lms/modules/receiptedit.php:1.41 Tue Jan 18 09:12:25 2011 +++ lms/modules/receiptedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receiptedit.php,v 1.41 2011/01/18 08:12:25 alec Exp $ + * $Id: receiptedit.php,v 1.42 2011/10/14 16:09:00 chilek Exp $ */ if(isset($_GET['id'])) @@ -115,7 +115,7 @@ if(!empty($CONFIG['receipts']['nodegroups_warning'])) $customer['nodegroupswarning'] = $CONFIG['receipts']['nodegroups_warning']; else - $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $0!', + $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $a!', $CONFIG['receipts']['show_nodegroups_warning']); } } @@ -157,9 +157,9 @@ isset($receipt['extnumber']) ? $receipt['extnumber'] : ''); if($receipt['type']=='in') - $layout['pagetitle'] = trans('Cash-in Receipt Edit: $0', $receipt['titlenumber']); + $layout['pagetitle'] = trans('Cash-in Receipt Edit: $a', $receipt['titlenumber']); else - $layout['pagetitle'] = trans('Cash-out Receipt Edit: $0', $receipt['titlenumber']); + $layout['pagetitle'] = trans('Cash-out Receipt Edit: $a', $receipt['titlenumber']); $action = isset($_GET['action']) ? $_GET['action'] : ''; @@ -240,7 +240,7 @@ $maxdate = $DB->GetOne('SELECT MAX(cdate) FROM documents WHERE type = ? AND numberplanid = ?', array(DOC_RECEIPT, $receipt['numberplanid'])); if($receipt['cdate'] < $maxdate) { - $error['cdate'] = trans('Last date of receipt settlement is $0. If sure, you want to write receipt with date of $1, then click "Submit" again.',date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $receipt['cdate'])); + $error['cdate'] = trans('Last date of receipt settlement is $a. If sure, you want to write receipt with date of $b, then click "Submit" again.',date('Y/m/d H:i', $maxdate), date('Y/m/d H:i', $receipt['cdate'])); $receipt['cdatewarning'] = 1; } } @@ -256,7 +256,7 @@ $error['number'] = trans('Receipt number must be integer!'); elseif($receipt['number']!=$oldnumber) if($LMS->DocumentExists($receipt['number'], DOC_RECEIPT, $receipt['numberplanid'], $receipt['cdate'])) - $error['number'] = trans('Receipt number $0 already exists!', $receipt['number']); + $error['number'] = trans('Receipt number $a already exists!', $receipt['number']); } if($receipt['numberplanid'] && !$receipt['extnumber']) @@ -337,7 +337,7 @@ if(!empty($CONFIG['receipts']['nodegroups_warning'])) $customer['nodegroupswarning'] = $CONFIG['receipts']['nodegroups_warning']; else - $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $0!', + $customer['nodegroupswarning'] = trans('Customer has got nodes in groups: $a!', $CONFIG['receipts']['show_nodegroups_warning']); } } Index: lms/modules/receiptlist.php diff -u lms/modules/receiptlist.php:1.29 lms/modules/receiptlist.php:1.30 --- lms/modules/receiptlist.php:1.29 Fri Apr 1 12:35:12 2011 +++ lms/modules/receiptlist.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: receiptlist.php,v 1.29 2011/04/01 10:35:12 alec Exp $ + * $Id: receiptlist.php,v 1.30 2011/10/14 16:09:00 chilek Exp $ */ function GetReceiptList($registry, $order='', $search=NULL, $cat=NULL, $from=0, $to=0, $advances=0) @@ -242,7 +242,7 @@ $logentry = $DB->GetRow('SELECT * FROM cashreglog WHERE regid = ? ORDER BY time DESC LIMIT 1', array($regid, $regid)); -$layout['pagetitle'] = trans('Cash Registry: $0', $DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($regid))); +$layout['pagetitle'] = trans('Cash Registry: $a', $DB->GetOne('SELECT name FROM cashregs WHERE id=?', array($regid))); $SESSION->save('backto', 'm=receiptlist®id='.$regid); Index: lms/modules/reload.php diff -u lms/modules/reload.php:1.53 lms/modules/reload.php:1.54 --- lms/modules/reload.php:1.53 Tue Jan 18 09:12:25 2011 +++ lms/modules/reload.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: reload.php,v 1.53 2011/01/18 08:12:25 alec Exp $ + * $Id: reload.php,v 1.54 2011/10/14 16:09:00 chilek Exp $ */ $layout['pagetitle'] = trans('Configuration Reload'); @@ -135,7 +135,7 @@ break; default: - echo '

'.trans('Error: Unknown reload type: "$0"!', $_RELOAD_TYPE).'

'; + echo '

'.trans('Error: Unknown reload type: "$a"!', $_RELOAD_TYPE).'

'; break; } Index: lms/modules/rtcategorydel.php diff -u lms/modules/rtcategorydel.php:1.1 lms/modules/rtcategorydel.php:1.2 --- lms/modules/rtcategorydel.php:1.1 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtcategorydel.php Fri Oct 14 18:09:00 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtcategorydel.php,v 1.1 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtcategorydel.php,v 1.2 2011/10/14 16:09:00 chilek Exp $ */ -$layout['pagetitle'] = trans('Remove category ID: $0',sprintf("%04d",$_GET['id'])); +$layout['pagetitle'] = trans('Remove category ID: $a',sprintf("%04d",$_GET['id'])); if(!$LMS->CategoryExists($_GET['id'])) { @@ -34,7 +34,7 @@ { if($_GET['is_sure'] != 1) { - $body = '

'.trans('Do you want to remove category called $0?',$LMS->GetQueueName($_GET['id'])).'

'; + $body = '

'.trans('Do you want to remove category called $a?',$LMS->GetQueueName($_GET['id'])).'

'; $body .= '

'.trans('Yes, I know what I do.').' '; $body .= ''.trans('No, I\'ve changed my mind.').'

'; } Index: lms/modules/rtcategoryedit.php diff -u lms/modules/rtcategoryedit.php:1.1 lms/modules/rtcategoryedit.php:1.2 --- lms/modules/rtcategoryedit.php:1.1 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtcategoryedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtcategoryedit.php,v 1.1 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtcategoryedit.php,v 1.2 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->CategoryExists($_GET['id'])) @@ -71,7 +71,7 @@ else $category = $LMS->GetCategory($_GET['id']); -$layout['pagetitle'] = trans('Category Edit: $0', $category['name']); +$layout['pagetitle'] = trans('Category Edit: $a', $category['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtcategoryinfo.php diff -u lms/modules/rtcategoryinfo.php:1.1 lms/modules/rtcategoryinfo.php:1.2 --- lms/modules/rtcategoryinfo.php:1.1 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtcategoryinfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtcategoryinfo.php,v 1.1 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtcategoryinfo.php,v 1.2 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->CategoryExists($_GET['id'])) @@ -31,7 +31,7 @@ $category = $LMS->GetCategory($_GET['id']); -$layout['pagetitle'] = trans('Category Info: $0',$category['name']); +$layout['pagetitle'] = trans('Category Info: $a',$category['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtqueuedel.php diff -u lms/modules/rtqueuedel.php:1.25 lms/modules/rtqueuedel.php:1.26 --- lms/modules/rtqueuedel.php:1.25 Tue Jan 18 09:12:25 2011 +++ lms/modules/rtqueuedel.php Fri Oct 14 18:09:00 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtqueuedel.php,v 1.25 2011/01/18 08:12:25 alec Exp $ + * $Id: rtqueuedel.php,v 1.26 2011/10/14 16:09:00 chilek Exp $ */ -$layout['pagetitle'] = trans('Remove queue ID: $0',sprintf("%04d",$_GET['id'])); +$layout['pagetitle'] = trans('Remove queue ID: $a',sprintf("%04d",$_GET['id'])); if(!$LMS->QueueExists($_GET['id'])) { @@ -34,7 +34,7 @@ { if($_GET['is_sure']!=1) { - $body = '

'.trans('Do you want to remove queue called $0?',$LMS->GetQueueName($_GET['id'])).'

'; + $body = '

'.trans('Do you want to remove queue called $a?',$LMS->GetQueueName($_GET['id'])).'

'; $body .= '

'.trans('All tickets and messages in queue will be lost.').'

'; $body .= '

'.trans('Yes, I know what I do.').' '; $body .= ''.trans('No, I\'ve changed my mind.').'

'; Index: lms/modules/rtqueueedit.php diff -u lms/modules/rtqueueedit.php:1.20 lms/modules/rtqueueedit.php:1.21 --- lms/modules/rtqueueedit.php:1.20 Tue Jan 18 09:12:25 2011 +++ lms/modules/rtqueueedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtqueueedit.php,v 1.20 2011/01/18 08:12:25 alec Exp $ + * $Id: rtqueueedit.php,v 1.21 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->QueueExists($_GET['id'])) @@ -67,7 +67,7 @@ else $queue = $LMS->GetQueue($_GET['id']); -$layout['pagetitle'] = trans('Queue Edit: $0', $queue['name']); +$layout['pagetitle'] = trans('Queue Edit: $a', $queue['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtqueueinfo.php diff -u lms/modules/rtqueueinfo.php:1.16 lms/modules/rtqueueinfo.php:1.17 --- lms/modules/rtqueueinfo.php:1.16 Tue Jan 18 09:12:25 2011 +++ lms/modules/rtqueueinfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtqueueinfo.php,v 1.16 2011/01/18 08:12:25 alec Exp $ + * $Id: rtqueueinfo.php,v 1.17 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->QueueExists($_GET['id'])) @@ -31,7 +31,7 @@ $queue = $LMS->GetQueue($_GET['id']); -$layout['pagetitle'] = trans('Queue Info: $0',$queue['name']); +$layout['pagetitle'] = trans('Queue Info: $a',$queue['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtticketedit.php diff -u lms/modules/rtticketedit.php:1.45 lms/modules/rtticketedit.php:1.46 --- lms/modules/rtticketedit.php:1.45 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtticketedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtticketedit.php,v 1.45 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtticketedit.php,v 1.46 2011/10/14 16:09:00 chilek Exp $ */ if(($id = $_GET['id']) && !isset($_POST['ticket'])) @@ -234,7 +234,7 @@ } $categories = $ncategories; -$layout['pagetitle'] = trans('Ticket Edit: $0',sprintf("%06d",$ticket['ticketid'])); +$layout['pagetitle'] = trans('Ticket Edit: $a',sprintf("%06d",$ticket['ticketid'])); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtticketprint.php diff -u lms/modules/rtticketprint.php:1.21 lms/modules/rtticketprint.php:1.22 --- lms/modules/rtticketprint.php:1.21 Tue Jan 18 09:12:25 2011 +++ lms/modules/rtticketprint.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtticketprint.php,v 1.21 2011/01/18 08:12:25 alec Exp $ + * $Id: rtticketprint.php,v 1.22 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->TicketExists($_GET['id'])) @@ -54,7 +54,7 @@ $SMARTY->assign('customernodes', $LMS->GetCustomerNodes($ticket['customerid'])); } -$layout['pagetitle'] = trans('Ticket No. $0',sprintf("%06d",$ticket['ticketid'])); +$layout['pagetitle'] = trans('Ticket No. $a',sprintf("%06d",$ticket['ticketid'])); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/rtticketview.php diff -u lms/modules/rtticketview.php:1.44 lms/modules/rtticketview.php:1.45 --- lms/modules/rtticketview.php:1.44 Fri Sep 16 22:48:17 2011 +++ lms/modules/rtticketview.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: rtticketview.php,v 1.44 2011/09/16 20:48:17 chilek Exp $ + * $Id: rtticketview.php,v 1.45 2011/10/14 16:09:00 chilek Exp $ */ if(! $LMS->TicketExists($_GET['id'])) @@ -90,7 +90,7 @@ } $categories = $ncategories; -$layout['pagetitle'] = trans('Ticket Review: $0',sprintf("%06d", $ticket['ticketid'])); +$layout['pagetitle'] = trans('Ticket Review: $a',sprintf("%06d", $ticket['ticketid'])); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/stateedit.php diff -u lms/modules/stateedit.php:1.4 lms/modules/stateedit.php:1.5 --- lms/modules/stateedit.php:1.4 Tue Jan 18 09:12:25 2011 +++ lms/modules/stateedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: stateedit.php,v 1.4 2011/01/18 08:12:25 alec Exp $ + * $Id: stateedit.php,v 1.5 2011/10/14 16:09:00 chilek Exp $ */ $state = $DB->GetRow('SELECT * FROM states WHERE id=?', array($_GET['id'])); @@ -54,7 +54,7 @@ $state = $stateedit; } -$layout['pagetitle'] = trans('State Edit: $0', $name); +$layout['pagetitle'] = trans('State Edit: $a', $name); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/tariffedit.php diff -u lms/modules/tariffedit.php:1.55 lms/modules/tariffedit.php:1.56 --- lms/modules/tariffedit.php:1.55 Wed Mar 2 11:31:05 2011 +++ lms/modules/tariffedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: tariffedit.php,v 1.55 2011/03/02 10:31:05 alec Exp $ + * $Id: tariffedit.php,v 1.56 2011/10/14 16:09:00 chilek Exp $ */ if(!$LMS->TariffExists($_GET['id'])) @@ -119,7 +119,7 @@ else $tariff = $LMS->GetTariff($_GET['id']); -$layout['pagetitle'] = trans('Subscription Edit: $0',$tariff['name']); +$layout['pagetitle'] = trans('Subscription Edit: $a',$tariff['name']); $SMARTY->assign('tariff',$tariff); $SMARTY->assign('taxeslist',$LMS->GetTaxes()); Index: lms/modules/tariffinfo.php diff -u lms/modules/tariffinfo.php:1.41 lms/modules/tariffinfo.php:1.42 --- lms/modules/tariffinfo.php:1.41 Mon Mar 7 13:10:58 2011 +++ lms/modules/tariffinfo.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: tariffinfo.php,v 1.41 2011/03/07 12:10:58 alec Exp $ + * $Id: tariffinfo.php,v 1.42 2011/10/14 16:09:00 chilek Exp $ */ $netid = isset($_GET['netid']) ? intval($_GET['netid']) : NULL; @@ -40,7 +40,7 @@ WHERE a.tariffid = ? OR s.ctariffid = ? ORDER BY p.name', array($tariff['id'], $tariff['id'])); -$layout['pagetitle'] = trans('Subscription Info: $0',$tariff['name']); +$layout['pagetitle'] = trans('Subscription Info: $a',$tariff['name']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/taxrateedit.php diff -u lms/modules/taxrateedit.php:1.13 lms/modules/taxrateedit.php:1.14 --- lms/modules/taxrateedit.php:1.13 Tue Jan 18 09:12:26 2011 +++ lms/modules/taxrateedit.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: taxrateedit.php,v 1.13 2011/01/18 08:12:26 alec Exp $ + * $Id: taxrateedit.php,v 1.14 2011/10/14 16:09:00 chilek Exp $ */ $taxrate = $DB->GetRow('SELECT * FROM taxes WHERE id=?', array($_GET['id'])); @@ -114,7 +114,7 @@ $taxrate = $taxrateedit; } -$layout['pagetitle'] = trans('Tax Rate Edit: $0', $label); +$layout['pagetitle'] = trans('Tax Rate Edit: $a', $label); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/trafficdbcompact.php diff -u lms/modules/trafficdbcompact.php:1.35 lms/modules/trafficdbcompact.php:1.36 --- lms/modules/trafficdbcompact.php:1.35 Tue Jan 18 09:12:26 2011 +++ lms/modules/trafficdbcompact.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: trafficdbcompact.php,v 1.35 2011/01/18 08:12:26 alec Exp $ + * $Id: trafficdbcompact.php,v 1.36 2011/10/14 16:09:00 chilek Exp $ */ $layout['pagetitle'] = trans('Network Statistics Compacting'); @@ -38,14 +38,14 @@ $SMARTY->display('header.html'); echo '

'.trans('Compacting Database').'

';
-echo trans('$0 records before compacting.
',$DB->GetOne('SELECT COUNT(*) FROM stats')); +echo trans('$a records before compacting.
',$DB->GetOne('SELECT COUNT(*) FROM stats')); flush(); if(isset($_GET['removeold'])) { if($deleted = $DB->Execute('DELETE FROM stats where dt < ?NOW? - 365*24*60*60')) { - echo trans('$0 at least one year old records have been removed.
', $deleted); + echo trans('$a at least one year old records have been removed.
', $deleted); flush(); } } @@ -54,7 +54,7 @@ { if($deleted = $DB->Execute('DELETE FROM stats WHERE nodeid NOT IN (SELECT id FROM nodes)')) { - echo trans('$0 records for deleted nodes has been removed.
', $deleted); + echo trans('$a records for deleted nodes has been removed.
', $deleted); flush(); } } @@ -107,7 +107,7 @@ // all records for this node has been already compacted if (empty($data)) { - echo $node['name'].': '.trans('$0 - removed, $1 - inserted
', 0, 0); + echo $node['name'].': '.trans('$a - removed, $b - inserted
', 0, 0); flush(); continue; } @@ -146,14 +146,14 @@ $DB->CommitTrans(); - echo $node['name'].': '.trans('$0 - removed, $1 - inserted
', $deleted, $inserted); + echo $node['name'].': '.trans('$a - removed, $b - inserted
', $deleted, $inserted); flush(); } } } } -echo trans('$0 records after compacting.',$DB->GetOne('SELECT COUNT(*) FROM stats')); +echo trans('$a records after compacting.',$DB->GetOne('SELECT COUNT(*) FROM stats')); echo '
'; flush(); Index: lms/modules/trafficprint.php diff -u lms/modules/trafficprint.php:1.16 lms/modules/trafficprint.php:1.17 --- lms/modules/trafficprint.php:1.16 Tue Jan 18 09:12:26 2011 +++ lms/modules/trafficprint.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: trafficprint.php,v 1.16 2011/01/18 08:12:26 alec Exp $ + * $Id: trafficprint.php,v 1.17 2011/10/14 16:09:00 chilek Exp $ */ $type = isset($_GET['type']) ? $_GET['type'] : ''; @@ -34,7 +34,7 @@ $year = isset($_POST['year']) ? $_POST['year'] : date('Y'); $customer = isset($_POST['customer']) ? intval($_POST['customer']) : intval($_GET['customer']); - $layout['pagetitle'] = trans('Stats of Customer $0 in month $1', $LMS->GetCustomerName($customer), strftime('%B %Y', mktime(0,0,0,$month,1,$year))); + $layout['pagetitle'] = trans('Stats of Customer $a in month $b', $LMS->GetCustomerName($customer), strftime('%B %Y', mktime(0,0,0,$month,1,$year))); $from = mktime(0,0,0,$month,1,$year); $to = mktime(0,0,0,$month+1,1,$year); Index: lms/modules/transferforms.php diff -u lms/modules/transferforms.php:1.26 lms/modules/transferforms.php:1.27 --- lms/modules/transferforms.php:1.26 Wed Aug 31 13:20:38 2011 +++ lms/modules/transferforms.php Fri Oct 14 18:09:00 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: transferforms.php,v 1.26 2011/08/31 11:20:38 alec Exp $ + * $Id: transferforms.php,v 1.27 2011/10/14 16:09:00 chilek Exp $ */ @@ -44,7 +44,7 @@ $pdf->addtext(550*$scale+$x,497*$scale+$y,30*$scale,number_format($invoice['total'],2,',','')); $pdf->addtext(15*$scale+$x,375*$scale+$y,30*$scale, iconv('UTF-8', 'ISO-8859-2',$invoice['name'])); $pdf->addtext(15*$scale+$x,315*$scale+$y,30*$scale, iconv('UTF-8', 'ISO-8859-2',$invoice['address']."; ".$invoice['zip']." ".$invoice['city'])); - $pdf->addtext(15*$scale+$x,250*$scale+$y,30*$scale, iconv('UTF-8', 'ISO-8859-2',trans('Payment for invoice No. $0', $invoice['t_number']))); + $pdf->addtext(15*$scale+$x,250*$scale+$y,30*$scale, iconv('UTF-8', 'ISO-8859-2',trans('Payment for invoice No. $a', $invoice['t_number']))); } function simple_fill_mip($x,$y,$scale) @@ -80,9 +80,9 @@ $pdf->addtext(15*$scale+$x,240*$scale+$y,30*$scale, iconv('UTF-8', 'ISO-8859-2',$invoice['zip']." ".$invoice['city'])); $font_size=30; - while ($pdf->getTextWidth($font_size*$scale,trans('Invoice No. $0', $invoice['t_number']))>135) + while ($pdf->getTextWidth($font_size*$scale,trans('Invoice No. $a', $invoice['t_number']))>135) $font_size=$font_size-1; - $pdf->addtext(15*$scale+$x,385*$scale+$y,$font_size*$scale,trans('Invoice No. $0', $invoice['t_number'])); + $pdf->addtext(15*$scale+$x,385*$scale+$y,$font_size*$scale,trans('Invoice No. $a', $invoice['t_number'])); } Index: lms/modules/transferforms2.php diff -u lms/modules/transferforms2.php:1.26 lms/modules/transferforms2.php:1.27 --- lms/modules/transferforms2.php:1.26 Wed Aug 31 13:20:38 2011 +++ lms/modules/transferforms2.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: transferforms2.php,v 1.26 2011/08/31 11:20:38 alec Exp $ + * $Id: transferforms2.php,v 1.27 2011/10/14 16:09:01 chilek Exp $ */ // Przygotowane dla drukĂłw firmy Michalczyk i Prokop Sp. z o.o. @@ -72,7 +72,7 @@ $y -= $lineh; $pdf->addtext($x+220,$y,$font_size,sprintf('%.2f',$balance)); $y -= $lineh; - $pdf->addtext($x,$y,$font_size,iconv('UTF-8', 'ISO-8859-2',trans('$0 dollars $1 cents',to_words(floor($balance)),to_words(round(($balance-floor($balance))*100))))); + $pdf->addtext($x,$y,$font_size,iconv('UTF-8', 'ISO-8859-2',trans('$a dollars $b cents',to_words(floor($balance)),to_words(round(($balance-floor($balance))*100))))); $y -= $lineh; $pdf->addtext($x,$y,$font_size,truncate(iconv('UTF-8', 'ISO-8859-2',$data['customername']))); $y -= $lineh; @@ -80,7 +80,7 @@ $y -= $lineh; $pdf->addtext($x,$y,$font_size,iconv('UTF-8', 'ISO-8859-2',$_TITLE)); $y -= $lineh; - $pdf->addtext($x,$y,$font_size,iconv('UTF-8', 'ISO-8859-2',trans('Customer ID: $0',sprintf('%04d',$data['id'])))); + $pdf->addtext($x,$y,$font_size,iconv('UTF-8', 'ISO-8859-2',trans('Customer ID: $a',sprintf('%04d',$data['id'])))); } $balance = $_POST['balance'] ? $_POST['balance'] : 0; Index: lms/modules/useredit.php diff -u lms/modules/useredit.php:1.101 lms/modules/useredit.php:1.102 --- lms/modules/useredit.php:1.101 Thu Mar 10 12:36:39 2011 +++ lms/modules/useredit.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: useredit.php,v 1.101 2011/03/10 11:36:39 alec Exp $ + * $Id: useredit.php,v 1.102 2011/10/14 16:09:01 chilek Exp $ */ if(!$LMS->UserExists($_GET['id'])) @@ -131,7 +131,7 @@ WHERE customergroupid = g.id AND userid = ? ORDER BY name', 'id', array($userinfo['id'])); -$layout['pagetitle'] = trans('User Edit: $0', $userinfo['login']); +$layout['pagetitle'] = trans('User Edit: $a', $userinfo['login']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/userinfo.php diff -u lms/modules/userinfo.php:1.58 lms/modules/userinfo.php:1.59 --- lms/modules/userinfo.php:1.58 Thu Mar 10 12:36:39 2011 +++ lms/modules/userinfo.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: userinfo.php,v 1.58 2011/03/10 11:36:39 alec Exp $ + * $Id: userinfo.php,v 1.59 2011/10/14 16:09:01 chilek Exp $ */ $userinfo = $LMS->GetUserInfo($_GET['id']); @@ -43,7 +43,7 @@ $ntype[] = trans('sms'); $userinfo['ntype'] = implode(', ', $ntype); -$layout['pagetitle'] = trans('User Info: $0', $userinfo['login']); +$layout['pagetitle'] = trans('User Info: $a', $userinfo['login']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/userpasswd.php diff -u lms/modules/userpasswd.php:1.11 lms/modules/userpasswd.php:1.12 --- lms/modules/userpasswd.php:1.11 Tue Jan 18 09:12:26 2011 +++ lms/modules/userpasswd.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: userpasswd.php,v 1.11 2011/01/18 08:12:26 alec Exp $ + * $Id: userpasswd.php,v 1.12 2011/10/14 16:09:01 chilek Exp $ */ $id = (isset($_GET['id'])) ? $_GET['id'] : $AUTH->id; @@ -47,7 +47,7 @@ $passwd['id'] = $id; - $layout['pagetitle'] = trans('Password Change for User $0', $DB->GetOne('SELECT name FROM users WHERE id = ?', array($id))); + $layout['pagetitle'] = trans('Password Change for User $a', $DB->GetOne('SELECT name FROM users WHERE id = ?', array($id))); $SMARTY->assign('error', $error); $SMARTY->assign('passwd', $passwd); Index: lms/modules/voipaccountdel.php diff -u lms/modules/voipaccountdel.php:1.4 lms/modules/voipaccountdel.php:1.5 --- lms/modules/voipaccountdel.php:1.4 Tue Jan 18 09:12:26 2011 +++ lms/modules/voipaccountdel.php Fri Oct 14 18:09:01 2011 @@ -21,13 +21,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: voipaccountdel.php,v 1.4 2011/01/18 08:12:26 alec Exp $ + * $Id: voipaccountdel.php,v 1.5 2011/10/14 16:09:01 chilek Exp $ */ $voipaccountid = intval($_GET['id']); $voipaccountlogin = $LMS->GetVoipAccountLogin($voipaccountid); -$layout['pagetitle'] = trans('Delete Voip Account $0', $voipaccountlogin); +$layout['pagetitle'] = trans('Delete Voip Account $a', $voipaccountlogin); if (!$LMS->VoipAccountExists($voipaccountid)) { @@ -36,7 +36,7 @@ if($_GET['is_sure']!=1) { - $body = '

'.trans('Are you sure, you want to remove voip account \'$0\' from database?', $voipaccountlogin).'

'; + $body = '

'.trans('Are you sure, you want to remove voip account \'$a\' from database?', $voipaccountlogin).'

'; $body .= '

'.trans('Yes, I am sure.').'

'; }else{ $owner = $LMS->GetVoipAccountOwner($voipaccountid); @@ -46,7 +46,7 @@ else header('Location: ?m=customerinfo&id='.$owner); - $body = '

'.trans('Voip account $0 was deleted', $voipaccountname).'

'; + $body = '

'.trans('Voip account $a was deleted', $voipaccountname).'

'; } } Index: lms/modules/voipaccountedit.php diff -u lms/modules/voipaccountedit.php:1.7 lms/modules/voipaccountedit.php:1.8 --- lms/modules/voipaccountedit.php:1.7 Thu Mar 10 12:36:39 2011 +++ lms/modules/voipaccountedit.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: voipaccountedit.php,v 1.7 2011/03/10 11:36:39 alec Exp $ + * $Id: voipaccountedit.php,v 1.8 2011/10/14 16:09:01 chilek Exp $ */ if(!$LMS->VoipAccountExists($_GET['id'])) @@ -39,7 +39,7 @@ else $SESSION->save('backto', $_SERVER['QUERY_STRING']); -$layout['pagetitle'] = trans('Voip Account Edit: $0', $voipaccountinfo['login']); +$layout['pagetitle'] = trans('Voip Account Edit: $a', $voipaccountinfo['login']); if(isset($_POST['voipaccountedit'])) { Index: lms/modules/voipaccountinfo.php diff -u lms/modules/voipaccountinfo.php:1.8 lms/modules/voipaccountinfo.php:1.9 --- lms/modules/voipaccountinfo.php:1.8 Thu Mar 10 12:36:39 2011 +++ lms/modules/voipaccountinfo.php Fri Oct 14 18:09:01 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: voipaccountinfo.php,v 1.8 2011/03/10 11:36:39 alec Exp $ + * $Id: voipaccountinfo.php,v 1.9 2011/10/14 16:09:01 chilek Exp $ */ if(!preg_match('/^[0-9]+$/', $_GET['id'])) @@ -50,7 +50,7 @@ if(!isset($_GET['ownerid'])) $SESSION->save('backto', $SESSION->get('backto').'&ownerid='.$customerid); -$layout['pagetitle'] = trans('Voip Account Info: $0', $voipaccountinfo['login']); +$layout['pagetitle'] = trans('Voip Account Info: $a', $voipaccountinfo['login']); $SMARTY->assign('voipaccountinfo',$voipaccountinfo); $SMARTY->display('voipaccountinfo.html'); From cvs w lms.org.pl Fri Oct 14 18:09:09 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:09 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/finances/locale/sk (strings.php) Message-ID: <20111014160909.2B67B30278B1@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:09 Author: chilek Path: /cvsroot/lms/userpanel/modules/finances/locale/sk Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/locale/sk/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/finances/locale/sk/strings.php diff -u lms/userpanel/modules/finances/locale/sk/strings.php:1.5 lms/userpanel/modules/finances/locale/sk/strings.php:1.6 --- lms/userpanel/modules/finances/locale/sk/strings.php:1.5 Tue Jan 18 09:12:34 2011 +++ lms/userpanel/modules/finances/locale/sk/strings.php Fri Oct 14 18:09:09 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:34 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:09 chilek Exp $ */ -$_LANG['$0 dollars $1 cents'] = '$0 EUR $1 cents'; +$_LANG['$a dollars $b cents'] = '$a EUR $b cents'; $_LANG['Accounting day:'] = 'Ïen zaúètovania:'; $_LANG['Admin:'] = 'Administrátor:'; $_LANG['After:'] = 'Po:'; @@ -33,7 +33,7 @@ $_LANG['Balance'] = 'Stav'; $_LANG['Cancel'] = 'Zruči»'; $_LANG['Click here to print payment form'] = 'Klikni sem pre tlaè platby z'; -$_LANG['Customer No.: $0'] = 'Zákaznícke èíslo: $0'; +$_LANG['Customer No.: $a'] = 'Zákaznícke èíslo: $a'; $_LANG['Date:'] = 'Dátum:'; $_LANG['Deadline:'] = 'Termin platnosti:'; $_LANG['Description:'] = 'Popis:'; @@ -46,7 +46,7 @@ $_LANG['Gross Value:'] = 'Hrubá hodnota:'; $_LANG['in it:'] = 'V òom:'; $_LANG['Invoice:'] = 'Faktúra:'; -$_LANG['Invoice No. $0'] = 'Faktúra bez DPH È $0'; +$_LANG['Invoice No. $a'] = 'Faktúra bez DPH È $a'; $_LANG['Invoices'] = 'Faktúry'; $_LANG['In words:'] = 'Slovami:'; $_LANG['Module Configuration:'] = 'Konfigurácia modulu:'; @@ -56,7 +56,7 @@ $_LANG['No such transactions on your account.'] = 'Nie sú k dispozícii Ÿiadne transakcie na vačom úète.'; $_LANG['Notes:'] = 'Poznámky:'; $_LANG['ORIGINAL'] = 'ORIGINAL'; -$_LANG['Payment for invoice No. $0'] = 'Platba za faktúru è $0'; +$_LANG['Payment for invoice No. $a'] = 'Platba za faktúru è $a'; $_LANG['Payment type:'] = 'Typ platby:'; $_LANG['Period:'] = 'Obdobie:'; $_LANG['[ Print ]'] = '[ Tlaè ]'; @@ -90,7 +90,7 @@ $_LANG['You haven\'t got any assigned subscriptions.'] = 'Nemáte Ÿiadne priradené predplatné'; $_LANG['Your balance'] = 'Váč zostatok'; $_LANG['Your subscriptions'] = 'Vača tarify'; -$_LANG['monthly ($0)'] = 'mesaène ($0)'; +$_LANG['monthly ($a)'] = 'mesaène ($a)'; $_LANG['Reason:'] = 'Dôvod:'; ?> From cvs w lms.org.pl Fri Oct 14 18:09:08 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:08 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/finances/locale/pl (strings.php) Message-ID: <20111014160909.0382130278B0@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:08 Author: chilek Path: /cvsroot/lms/userpanel/modules/finances/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/locale/pl/strings.php.diff?&r1=1.6&r2=1.7 Index: lms/userpanel/modules/finances/locale/pl/strings.php diff -u lms/userpanel/modules/finances/locale/pl/strings.php:1.6 lms/userpanel/modules/finances/locale/pl/strings.php:1.7 --- lms/userpanel/modules/finances/locale/pl/strings.php:1.6 Tue Jan 18 09:12:34 2011 +++ lms/userpanel/modules/finances/locale/pl/strings.php Fri Oct 14 18:09:08 2011 @@ -21,10 +21,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.6 2011/01/18 08:12:34 alec Exp $ + * $Id: strings.php,v 1.7 2011/10/14 16:09:08 chilek Exp $ */ -$_LANG['$0 dollars $1 cents'] = '$0 zł $1 gr'; +$_LANG['$a dollars $b cents'] = '$a zł $b gr'; $_LANG['Accounting day:'] = 'Dzień naliczania:'; $_LANG['Admin:'] = 'Administrator:'; $_LANG['After:'] = 'Po:'; @@ -33,7 +33,7 @@ $_LANG['Balance'] = 'Saldo'; $_LANG['Cancel'] = 'Anuluj'; $_LANG['Click here to print payment form'] = 'Kliknij tutaj by wydrukowaæ formularz wpłaty'; -$_LANG['Customer No.: $0'] = 'Numer klienta: $0'; +$_LANG['Customer No.: $a'] = 'Numer klienta: $a'; $_LANG['Date:'] = 'Data:'; $_LANG['Deadline:'] = 'Termin płatno¶ci:'; $_LANG['Description:'] = 'Opis:'; @@ -46,7 +46,7 @@ $_LANG['Gross Value:'] = 'Warto¶æ brutto:'; $_LANG['in it:'] = 'w tym:'; $_LANG['Invoice:'] = 'Faktura:'; -$_LANG['Invoice No. $0'] = 'Faktura VAT Nr $0'; +$_LANG['Invoice No. $a'] = 'Faktura VAT Nr $a'; $_LANG['Invoices'] = 'Faktury'; $_LANG['In words:'] = 'Słownie:'; $_LANG['Module Configuration:'] = 'Konfiguracja modułu:'; @@ -56,7 +56,7 @@ $_LANG['No such transactions on your account.'] = 'Nie ma żadnych transakcji na Twoim koncie.'; $_LANG['Notes:'] = 'Notatki:'; $_LANG['ORIGINAL'] = 'ORYGINAŁ'; -$_LANG['Payment for invoice No. $0'] = 'Zapłata za fakturê nr $0'; +$_LANG['Payment for invoice No. $a'] = 'Zapłata za fakturê nr $a'; $_LANG['Payment type:'] = 'Typ płatno¶ci:'; $_LANG['Period:'] = 'Okres:'; $_LANG['[ Print ]'] = '[ Drukuj ]'; @@ -90,7 +90,7 @@ $_LANG['You haven\'t got any assigned subscriptions.'] = 'Nie posiadasz żadnych przypisanych taryf'; $_LANG['Your balance'] = 'Twoje konto'; $_LANG['Your subscriptions'] = 'Twoje taryfy'; -$_LANG['monthly ($0)'] = 'miesiêcznie ($0)'; +$_LANG['monthly ($a)'] = 'miesiêcznie ($a)'; $_LANG['Reason:'] = 'Powód:'; $_LANG['Check all'] = 'Zaznacz wszystkie'; $_LANG['Print selected'] = 'Drukuj zaznaczone'; From cvs w lms.org.pl Fri Oct 14 18:09:08 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:08 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/lib/locale/pl (strings.php) Message-ID: <20111014160908.0BD4030278AC@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:08 Author: chilek Path: /cvsroot/lms/userpanel/lib/locale/pl Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/locale/pl/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/lib/locale/pl/strings.php diff -u lms/userpanel/lib/locale/pl/strings.php:1.5 lms/userpanel/lib/locale/pl/strings.php:1.6 --- lms/userpanel/lib/locale/pl/strings.php:1.5 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/lib/locale/pl/strings.php Fri Oct 14 18:09:07 2011 @@ -21,14 +21,14 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:33 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:07 chilek Exp $ */ $_LANG['Access denied!'] = 'Brak dostêpu!'; $_LANG['and'] = 'i'; $_LANG['Cancel'] = 'Anuluj'; $_LANG['classic'] = 'klasyczny'; -$_LANG['Configure Module: $0'] = 'Konfiguracja Modułu: $0'; +$_LANG['Configure Module: $a'] = 'Konfiguracja Modułu: $a'; $_LANG['Customer ID:'] = 'ID klienta:'; $_LANG['Customers\' rights'] = 'Uprawnienia klientów'; $_LANG['Database errors occurred!'] = 'Wyst±piły błêdy w obsłudze bazy danych!'; @@ -41,14 +41,14 @@ $_LANG['Error:'] = 'Bł±d:'; $_LANG['Error!'] = 'Bł±d!'; $_LANG['For more information see'] = 'Aby dowiedzieæ siê wiêcej zobacz'; -$_LANG['Function $0 in module $1 not found!'] = 'Funkcja $0 w module $1 nie odnaleziona!'; +$_LANG['Function $a in module $b not found!'] = 'Funkcja $a w module $b nie odnaleziona!'; $_LANG['Hint style:'] = 'Styl podpowiedzi:'; -$_LANG['Idle time limit exceeded ($0 sec.)'] = 'Przekroczony limit czasu bezczynno¶ci ($0 sek.)'; +$_LANG['Idle time limit exceeded ($a sec.)'] = 'Przekroczony limit czasu bezczynno¶ci ($a sek.)'; $_LANG['Login'] = 'Zaloguj siê'; $_LANG['Basic Configuration:'] = 'Konfiguracja podstawowa:'; $_LANG['modern'] = 'nowoczesny'; $_LANG['Module'] = 'Moduł'; -$_LANG['Module $0 not found!'] = 'Moduł $0 nie odnaleziony!'; +$_LANG['Module $a not found!'] = 'Moduł $a nie odnaleziony!'; $_LANG['Module Configuration:'] = 'Konfiguracja modułu:'; $_LANG['monthly'] = 'miesiêcznie'; $_LANG['No modules found!'] = 'Nie odnaleziono żadnych modułów!'; @@ -67,7 +67,7 @@ $_LANG['Userpanel Configuration'] = 'Konfiguracja Userpanela'; $_LANG['Userpanel design style'] = 'Styl wygl±du Userpanela'; $_LANG['Userpanel hints style. Chose modern for animated assistant, classic for tips in LMS style, or none to disable hints displaying'] = 'Styl podpowiedzi w Userpanelu. Wypierz nowoczesny aby wy¶wietlaæ animowanego asystenta, klasyczny dla podpowiedzi w stylu LMSa lub żaden aby wył±czyæ wy¶wietlanie podpowiedzi'; -$_LANG['Userpanel module $0 not found!'] = 'Nie znaleziono modułu $0!'; +$_LANG['Userpanel module $a not found!'] = 'Nie znaleziono modułu $a!'; $_LANG['Userpanel Rights:'] = 'Uprawnienia w Userpanelu:'; $_LANG['Userpanel style:'] = 'Styl Userpanela:'; $_LANG['VCS'] = 'wBOK'; From cvs w lms.org.pl Fri Oct 14 18:09:08 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:08 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/lib/locale/sk (strings.php) Message-ID: <20111014160908.2C55330278AD@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:08 Author: chilek Path: /cvsroot/lms/userpanel/lib/locale/sk Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/lib/locale/sk/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/lib/locale/sk/strings.php diff -u lms/userpanel/lib/locale/sk/strings.php:1.5 lms/userpanel/lib/locale/sk/strings.php:1.6 --- lms/userpanel/lib/locale/sk/strings.php:1.5 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/lib/locale/sk/strings.php Fri Oct 14 18:09:08 2011 @@ -21,14 +21,14 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:33 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:08 chilek Exp $ */ $_LANG['Access denied!'] = 'Prístup zamietnutę!'; $_LANG['and'] = 'a'; $_LANG['Cancel'] = 'Zruči»'; $_LANG['classic'] = 'klasickę'; -$_LANG['Configure Module: $0'] = 'Konfigurácia modulu: $0'; +$_LANG['Configure Module: $a'] = 'Konfigurácia modulu: $a'; $_LANG['Customer ID:'] = 'ID zákazníka:'; $_LANG['Customers\' rights'] = 'Právomoci zákazníka'; $_LANG['Database errors occurred!'] = 'Vyskytli sa chyby pri manipulácii s databázou!'; @@ -41,14 +41,14 @@ $_LANG['Error:'] = 'Chyba:'; $_LANG['Error!'] = 'Chyba!'; $_LANG['For more information see'] = 'Pre viac informácií pozri'; -$_LANG['Function $0 in module $1 not found!'] = 'Funkcia $0 v module $1 nenájdená!'; +$_LANG['Function $a in module $b not found!'] = 'Funkcia $a v module $b nenájdená!'; $_LANG['Hint style:'] = 'Typ čtílu:'; -$_LANG['Idle time limit exceeded ($0 sec.)'] = 'Prekroèenę limit èacu neèinnosti ($0 sek.)'; +$_LANG['Idle time limit exceeded ($a sec.)'] = 'Prekroèenę limit èacu neèinnosti ($a sek.)'; $_LANG['Login'] = 'Prihlás sa'; $_LANG['Basic Configuration:'] = 'Základné nastavenia:'; $_LANG['modern'] = 'modernę'; $_LANG['Module'] = 'Modul'; -$_LANG['Module $0 not found!'] = 'Modul $0 nenájdenę!'; +$_LANG['Module $a not found!'] = 'Modul $a nenájdenę!'; $_LANG['Module Configuration:'] = 'Nastavenie modulu:'; $_LANG['monthly'] = 'mesaène'; $_LANG['No modules found!'] = 'Neboli nájdené Ÿiadne moduly!'; @@ -67,7 +67,7 @@ $_LANG['Userpanel Configuration'] = 'Konfigurácia Userpanela'; $_LANG['Userpanel design style'] = '©tęl vzh”adu Userpanela'; $_LANG['Userpanel hints style. Chose modern for animated assistant, classic for tips in LMS style, or none to disable hints displaying'] = 'Userpanel typ čtęlu. Zvo” moderné pre animovanú asistanciu, klasickú pre typy v LMS čtęla alebo ziadné pre vypnutie zobryzovania stęlov'; -$_LANG['Userpanel module $0 not found!'] = 'Nenájdenę modul $0!'; +$_LANG['Userpanel module $a not found!'] = 'Nenájdenę modul $a!'; $_LANG['Userpanel Rights:'] = 'Právomoci Userpanelu:'; $_LANG['Userpanel style:'] = '©tęl Userpanela:'; $_LANG['VCS'] = 'VZS'; From cvs w lms.org.pl Fri Oct 14 18:09:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/traffic/actions (2 files) Message-ID: <20111014160903.035A230278A5@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:02 Author: chilek Path: /cvsroot/lms/modules/traffic/actions Modified: compacting.php printtraffic.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/traffic/actions/compacting.php.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/modules/traffic/actions/printtraffic.php.diff?&r1=1.7&r2=1.8 Index: lms/modules/traffic/actions/compacting.php diff -u lms/modules/traffic/actions/compacting.php:1.6 lms/modules/traffic/actions/compacting.php:1.7 --- lms/modules/traffic/actions/compacting.php:1.6 Tue Jan 18 09:12:31 2011 +++ lms/modules/traffic/actions/compacting.php Fri Oct 14 18:09:02 2011 @@ -21,19 +21,19 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: compacting.php,v 1.6 2011/01/18 08:12:31 alec Exp $ + * $Id: compacting.php,v 1.7 2011/10/14 16:09:02 chilek Exp $ */ $layout['pagetitle'] = trans('Network Statistics Compacting'); $layout['nomenu'] = TRUE; echo '

'.trans('Compacting Database').'

';
-echo trans('$0 records before compacting.
',$DB->GetOne('SELECT COUNT(*) FROM stats')); +echo trans('$a records before compacting.
',$DB->GetOne('SELECT COUNT(*) FROM stats')); if(isset($_POST['delete'])) { $yeardeleted = $DB->Execute('DELETE FROM stats where dt < ?NOW? - 365*24*60*60'); - echo trans('$0 at least one year old records have been removed.
',$yeardeleted); + echo trans('$a at least one year old records have been removed.
',$yeardeleted); } if(isset($_POST['removedeleted'])) @@ -45,7 +45,7 @@ { if(!in_array($node,$nodes)) if($DB->Execute('DELETE FROM stats WHERE nodeid = '.$node)) - echo trans('Statistics for computer $0 has been removed
',$node); + echo trans('Statistics for computer $a has been removed
',$node); } } } @@ -80,12 +80,12 @@ $maxtime -= $step; } $DB->CommitTrans(); - echo trans('$0 - removed, $1 - inserted
', $deleted, $inserted); + echo trans('$a - removed, $b - inserted
', $deleted, $inserted); } } } -echo trans('$0 records after compacting.
',$DB->GetOne("SELECT COUNT(*) FROM stats")); +echo trans('$a records after compacting.
',$DB->GetOne("SELECT COUNT(*) FROM stats")); echo '


'.trans('You can close this window now.').'

'; ?> Index: lms/modules/traffic/actions/printtraffic.php diff -u lms/modules/traffic/actions/printtraffic.php:1.7 lms/modules/traffic/actions/printtraffic.php:1.8 --- lms/modules/traffic/actions/printtraffic.php:1.7 Tue Jan 18 09:12:31 2011 +++ lms/modules/traffic/actions/printtraffic.php Fri Oct 14 18:09:02 2011 @@ -21,14 +21,14 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: printtraffic.php,v 1.7 2011/01/18 08:12:31 alec Exp $ + * $Id: printtraffic.php,v 1.8 2011/10/14 16:09:02 chilek Exp $ */ $month = $_POST['month'] ? $_POST['month'] : date('n'); $year = $_POST['year'] ? $_POST['year'] : date('Y'); $customer = $_POST['customer'] ? $_POST['customer'] : $_GET['customer']; -$layout['pagetitle'] = trans('Stats of Customer $0 in month $1', $LMS->GetCustomerName($customer), strftime('%B %Y', mktime(0,0,0,$month,1,$year))); +$layout['pagetitle'] = trans('Stats of Customer $a in month $b', $LMS->GetCustomerName($customer), strftime('%B %Y', mktime(0,0,0,$month,1,$year))); $from = mktime(0,0,0,$month,1,$year); $to = mktime(0,0,0,$month+1,1,$year); From cvs w lms.org.pl Fri Oct 14 18:09:03 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:03 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/users/actions (edit.php, info.php, passwd.php) Message-ID: <20111014160903.6523630278A7@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:03 Author: chilek Path: /cvsroot/lms/modules/users/actions Modified: edit.php info.php passwd.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/users/actions/edit.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/users/actions/info.php.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/modules/users/actions/passwd.php.diff?&r1=1.7&r2=1.8 Index: lms/modules/users/actions/edit.php diff -u lms/modules/users/actions/edit.php:1.7 lms/modules/users/actions/edit.php:1.8 --- lms/modules/users/actions/edit.php:1.7 Tue Jan 18 09:12:31 2011 +++ lms/modules/users/actions/edit.php Fri Oct 14 18:09:03 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: edit.php,v 1.7 2011/01/18 08:12:31 alec Exp $ + * $Id: edit.php,v 1.8 2011/10/14 16:09:03 chilek Exp $ */ if(!$LMS->UserExists($_GET['id'])) @@ -66,7 +66,7 @@ if(!isset($userinfo[$key])) $userinfo[$key] = $value; -$layout['pagetitle'] = trans('User Edit: $0', $userinfo['login']); +$layout['pagetitle'] = trans('User Edit: $a', $userinfo['login']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/users/actions/info.php diff -u lms/modules/users/actions/info.php:1.7 lms/modules/users/actions/info.php:1.8 --- lms/modules/users/actions/info.php:1.7 Tue Jan 18 09:12:31 2011 +++ lms/modules/users/actions/info.php Fri Oct 14 18:09:03 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: info.php,v 1.7 2011/01/18 08:12:31 alec Exp $ + * $Id: info.php,v 1.8 2011/10/14 16:09:03 chilek Exp $ */ if(!$LMS->UserExists($_GET['id'])) @@ -31,7 +31,7 @@ $userinfo = $LMS->GetUserInfo($_GET['id']); -$layout['pagetitle'] = trans('User Info: $0', $userinfo['login']); +$layout['pagetitle'] = trans('User Info: $a', $userinfo['login']); $SESSION->save('backto', $_SERVER['QUERY_STRING']); Index: lms/modules/users/actions/passwd.php diff -u lms/modules/users/actions/passwd.php:1.7 lms/modules/users/actions/passwd.php:1.8 --- lms/modules/users/actions/passwd.php:1.7 Tue Jan 18 09:12:31 2011 +++ lms/modules/users/actions/passwd.php Fri Oct 14 18:09:03 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: passwd.php,v 1.7 2011/01/18 08:12:31 alec Exp $ + * $Id: passwd.php,v 1.8 2011/10/14 16:09:03 chilek Exp $ */ $id = (isset($_GET['id'])) ? $_GET['id'] : $AUTH->id; @@ -49,7 +49,7 @@ $passwd['realname'] = $LMS->GetUserName($id); $passwd['id'] = $id; - $layout['pagetitle'] = trans('Password Change for User $0',$passwd['realname']); + $layout['pagetitle'] = trans('Password Change for User $a',$passwd['realname']); $SMARTY->assign('error', $error); $SMARTY->assign('passwd', $passwd); } From cvs w lms.org.pl Fri Oct 14 18:09:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/mailing/actions (mailing.php) Message-ID: <20111014160902.BB1CD30278A4@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:02 Author: chilek Path: /cvsroot/lms/modules/mailing/actions Modified: mailing.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/mailing/actions/mailing.php.diff?&r1=1.12&r2=1.13 Index: lms/modules/mailing/actions/mailing.php diff -u lms/modules/mailing/actions/mailing.php:1.12 lms/modules/mailing/actions/mailing.php:1.13 --- lms/modules/mailing/actions/mailing.php:1.12 Tue Jan 18 09:12:30 2011 +++ lms/modules/mailing/actions/mailing.php Fri Oct 14 18:09:02 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: mailing.php,v 1.12 2011/01/18 08:12:30 alec Exp $ + * $Id: mailing.php,v 1.13 2011/10/14 16:09:02 chilek Exp $ */ function GetEmails($group, $network=NULL, $customergroup=NULL) @@ -147,7 +147,7 @@ } if(!empty($CONFIG['mail']['debug_email'])) - echo ''.trans('Warning! Debug mode (using address $0).',$CONFIG['mail']['debug_email']).'
'; + echo ''.trans('Warning! Debug mode (using address $a).',$CONFIG['mail']['debug_email']).'
'; $headers['Date'] = date('D, d F Y H:i:s T'); $headers['From'] = '"'.$mailing['from'].'" <'.$mailing['sender'].'>'; @@ -183,7 +183,7 @@ $headers['To'] = '<'.$row['email'].'>'; - echo ' '.trans('$0 of $1 ($2): $3 <$4>', ($key+1), sizeof($emails), sprintf('%02.1f%%',round((100/sizeof($emails))*($key+1),1)), $row['customername'], $row['email']); + echo ' '.trans('$a of $b ($c): $d <$4>', ($key+1), sizeof($emails), sprintf('%02.1f%%',round((100/sizeof($emails))*($key+1),1)), $row['customername'], $row['email']); echo ' '.$LMS->SendMail($row['email'], $headers, $body, $files)."
\n"; } } From cvs w lms.org.pl Fri Oct 14 18:09:10 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:10 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/helpdesk/locale/sk (strings.php) Message-ID: <20111014160910.5F35630278B9@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:10 Author: chilek Path: /cvsroot/lms/userpanel/modules/helpdesk/locale/sk Modified: strings.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/helpdesk/locale/sk/strings.php.diff?&r1=1.5&r2=1.6 Index: lms/userpanel/modules/helpdesk/locale/sk/strings.php diff -u lms/userpanel/modules/helpdesk/locale/sk/strings.php:1.5 lms/userpanel/modules/helpdesk/locale/sk/strings.php:1.6 --- lms/userpanel/modules/helpdesk/locale/sk/strings.php:1.5 Tue Jan 18 09:12:35 2011 +++ lms/userpanel/modules/helpdesk/locale/sk/strings.php Fri Oct 14 18:09:10 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: strings.php,v 1.5 2011/01/18 08:12:35 alec Exp $ + * $Id: strings.php,v 1.6 2011/10/14 16:09:10 chilek Exp $ */ $_LANG['Allows you to contact with network administrator'] = 'UmoŸòuje vám kontaktova» správcu siete'; @@ -50,7 +50,7 @@ $_LANG['Number:'] = 'Èíslo:'; $_LANG['open'] = 'otvori»'; $_LANG['Request history'] = 'História poŸiadavok'; -$_LANG['Request No. $0'] = 'PoŸiadavok È $0'; +$_LANG['Request No. $a'] = 'PoŸiadavok È $a'; $_LANG['resolved'] = 'vyriečenę'; $_LANG['- select queue -'] = '- vyber radu -'; $_LANG['- select user -'] = '- zvol zákazníka -'; From cvs w lms.org.pl Fri Oct 14 18:09:08 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:08 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel/modules/finances (4 files) Message-ID: <20111014160908.B81DA30278AE@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:08 Author: chilek Path: /cvsroot/lms/userpanel/modules/finances Modified: invoice.php invoice_pdf.php main.php transferform.php - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/invoice.php.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/invoice_pdf.php.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/main.php.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/modules/finances/transferform.php.diff?&r1=1.7&r2=1.8 Index: lms/userpanel/modules/finances/invoice.php diff -u lms/userpanel/modules/finances/invoice.php:1.8 lms/userpanel/modules/finances/invoice.php:1.9 --- lms/userpanel/modules/finances/invoice.php:1.8 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/modules/finances/invoice.php Fri Oct 14 18:09:08 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice.php,v 1.8 2011/01/18 08:12:33 alec Exp $ + * $Id: invoice.php,v 1.9 2011/10/14 16:09:08 chilek Exp $ */ global $LMS,$SESSION,$CONFIG,$_CONFIG,$SMARTY,$invoice, $layout, $type; @@ -90,9 +90,9 @@ $number = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); if(!isset($invoice['invoice'])) - $layout['pagetitle'] = trans('Invoice No. $0', $number); + $layout['pagetitle'] = trans('Invoice No. $a', $number); else - $layout['pagetitle'] = trans('Credit Note No. $0', $number); + $layout['pagetitle'] = trans('Credit Note No. $a', $number); $SMARTY->display('invoiceheader.html'); Index: lms/userpanel/modules/finances/invoice_pdf.php diff -u lms/userpanel/modules/finances/invoice_pdf.php:1.11 lms/userpanel/modules/finances/invoice_pdf.php:1.12 --- lms/userpanel/modules/finances/invoice_pdf.php:1.11 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/modules/finances/invoice_pdf.php Fri Oct 14 18:09:08 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: invoice_pdf.php,v 1.11 2011/01/18 08:12:33 alec Exp $ + * $Id: invoice_pdf.php,v 1.12 2011/10/14 16:09:08 chilek Exp $ */ function invoice_body() @@ -94,9 +94,9 @@ $number = docnumber($invoice['number'], $invoice['template'], $invoice['cdate']); if(!isset($invoice['invoice'])) - $title = trans('Invoice No. $0', $number); + $title = trans('Invoice No. $a', $number); else - $title = trans('Credit Note No. $0', $number); + $title = trans('Credit Note No. $a', $number); $pdf =& init_pdf('A4', 'portrait', $title); Index: lms/userpanel/modules/finances/main.php diff -u lms/userpanel/modules/finances/main.php:1.5 lms/userpanel/modules/finances/main.php:1.6 --- lms/userpanel/modules/finances/main.php:1.5 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/modules/finances/main.php Fri Oct 14 18:09:08 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: main.php,v 1.5 2011/01/18 08:12:33 alec Exp $ + * $Id: main.php,v 1.6 2011/10/14 16:09:08 chilek Exp $ */ global $LMS,$SMARTY,$SESSION,$DB; @@ -35,7 +35,7 @@ if($balance['doctype'][$idx] == 1) { if($number = $LMS->docnumber($val)) - $balance['number'][$idx] = trans('Invoice No. $0', $number); + $balance['number'][$idx] = trans('Invoice No. $a', $number); } } Index: lms/userpanel/modules/finances/transferform.php diff -u lms/userpanel/modules/finances/transferform.php:1.7 lms/userpanel/modules/finances/transferform.php:1.8 --- lms/userpanel/modules/finances/transferform.php:1.7 Tue Jan 18 09:12:33 2011 +++ lms/userpanel/modules/finances/transferform.php Fri Oct 14 18:09:08 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: transferform.php,v 1.7 2011/01/18 08:12:33 alec Exp $ + * $Id: transferform.php,v 1.8 2011/10/14 16:09:08 chilek Exp $ */ global $LMS,$CONFIG,$SESSION; @@ -69,7 +69,7 @@ { $KWOTA_ZL = to_words(floor($KWOTA_NR)); $KWOTA_GR = to_words($KWOTA_GR); - $KWOTA_X = iconv('UTF-8', 'ISO-8859-2', trans('$0 dollars $1 cents', $KWOTA_ZL, $KWOTA_GR)); + $KWOTA_X = iconv('UTF-8', 'ISO-8859-2', trans('$a dollars $b cents', $KWOTA_ZL, $KWOTA_GR)); } ?> From cvs w lms.org.pl Fri Oct 14 18:09:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:09:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules/core/templates (6 files) Message-ID: <20111014160902.8BFD330278A3@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:09:02 Author: chilek Path: /cvsroot/lms/modules/core/templates Modified: calendar_js.html err_actionnotfound.html err_actionnotpublic.html err_modulenotfound.html err_modulenotpublic.html menu.html - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/calendar_js.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/err_actionnotfound.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/err_actionnotpublic.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/err_modulenotfound.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/err_modulenotpublic.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/modules/core/templates/menu.html.diff?&r1=1.9&r2=1.10 Index: lms/modules/core/templates/calendar_js.html diff -u lms/modules/core/templates/calendar_js.html:1.1 lms/modules/core/templates/calendar_js.html:1.2 --- lms/modules/core/templates/calendar_js.html:1.1 Sat Nov 5 14:52:25 2005 +++ lms/modules/core/templates/calendar_js.html Fri Oct 14 18:09:02 2011 @@ -103,18 +103,18 @@ var arr_date = str_date.split('/'); - if (arr_date.length != 3) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nFormat accepted is 'YYYY/MM/DD hh:mm'.{/t}{literal}"); - if (!arr_date[0]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo year value can be found.{/t}{literal}"); - if (!RE_NUM.exec(arr_date[0])) return cal_error ("{/literal}{t 0="'\" + arr_date[0] + \"'"}Invalid year value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); - if (!arr_date[1]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo month value can be found.{/t}{literal}"); - if (!RE_NUM.exec(arr_date[1])) return cal_error ("{/literal}{t 0="'\" + arr_date[1] + \"'"}Invalid month value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); - if (!arr_date[2]) return cal_error ("{/literal}{t 0="'\" + str_date + \"'"}Invalid date format: $0.\nNo day of month value can be found.{/t}{literal}."); - if (!RE_NUM.exec(arr_date[2])) return cal_error ("{/literal}{t 0="'\" + arr_date[2] + \"'"}Invalid day of month value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + if (arr_date.length != 3) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nFormat accepted is 'YYYY/MM/DD hh:mm'.{/t}{literal}"); + if (!arr_date[0]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo year value can be found.{/t}{literal}"); + if (!RE_NUM.exec(arr_date[0])) return cal_error ("{/literal}{t a="'\" + arr_date[0] + \"'"}Invalid year value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); + if (!arr_date[1]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo month value can be found.{/t}{literal}"); + if (!RE_NUM.exec(arr_date[1])) return cal_error ("{/literal}{t a="'\" + arr_date[1] + \"'"}Invalid month value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); + if (!arr_date[2]) return cal_error ("{/literal}{t a="'\" + str_date + \"'"}Invalid date format: $a.\nNo day of month value can be found.{/t}{literal}."); + if (!RE_NUM.exec(arr_date[2])) return cal_error ("{/literal}{t a="'\" + arr_date[2] + \"'"}Invalid day of month value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); var dt_date = new Date(); dt_date.setDate(1); - if (arr_date[1] < 1 || arr_date[1] > 12) return cal_error ("{/literal}{t 0="'\" + arr_date[1] + \"'"}Invalid month value: $0.\nAllowed range is 01-12.{/t}{literal}"); + if (arr_date[1] < 1 || arr_date[1] > 12) return cal_error ("{/literal}{t a="'\" + arr_date[1] + \"'"}Invalid month value: $a.\nAllowed range is 01-12.{/t}{literal}"); dt_date.setMonth(arr_date[1]-1); if (arr_date[0] < 100) arr_date[0] = Number(arr_date[0]) + (arr_date[0] < NUM_CENTYEAR ? 2000 : 1900); @@ -122,7 +122,7 @@ var dt_numdays = new Date(arr_date[0], arr_date[1], 0); dt_date.setDate(arr_date[2]); - if (dt_date.getMonth() != (arr_date[1]-1)) return cal_error ("{/literal}{t 0="'\" + arr_date[2] + \"'" 1="\"+dt_numdays.getDate()+\""}Invalid day of month value: $0.\nAllowed range is 01-$1.{/t}{literal}"); + if (dt_date.getMonth() != (arr_date[1]-1)) return cal_error ("{/literal}{t a="'\" + arr_date[2] + \"'" 1="\"+dt_numdays.getDate()+\""}Invalid day of month value: $a.\nAllowed range is 01-$b.{/t}{literal}"); return (dt_date) } @@ -136,14 +136,14 @@ if (!arr_time[0]) dt_date.setHours(0); else if (RE_NUM.exec(arr_time[0])) if (arr_time[0] < 24) dt_date.setHours(arr_time[0]); - else return cal_error ("{/literal}{t 0="'\" + arr_time[0] + \"'"}Invalid hour value: $0.\nAllowed range is 00-23.{/t}{literal}"); - else return cal_error ("{/literal}{t 0="'\" + arr_time[0] + \"'"}Invalid hour value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[0] + \"'"}Invalid hour value: $a.\nAllowed range is 00-23.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[0] + \"'"}Invalid hour value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); if (!arr_time[1]) dt_date.setMinutes(0); else if (RE_NUM.exec(arr_time[1])) if (arr_time[1] < 60) dt_date.setMinutes(arr_time[1]); - else return cal_error ("{/literal}{t 0="'\" + arr_time[1] + \"'"}Invalid minutes value: $0.\nAllowed range is 00-59.{/t}{literal}"); - else return cal_error ("{/literal}{t 0="'\" + arr_time[1] + \"'"}Invalid minutes value: $0.\nAllowed values are unsigned integers.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[1] + \"'"}Invalid minutes value: $a.\nAllowed range is 00-59.{/t}{literal}"); + else return cal_error ("{/literal}{t a="'\" + arr_time[1] + \"'"}Invalid minutes value: $a.\nAllowed values are unsigned integers.{/t}{literal}"); dt_date.setMilliseconds(0); return dt_date; Index: lms/modules/core/templates/err_actionnotfound.html diff -u lms/modules/core/templates/err_actionnotfound.html:1.2 lms/modules/core/templates/err_actionnotfound.html:1.3 --- lms/modules/core/templates/err_actionnotfound.html:1.2 Mon May 15 21:46:44 2006 +++ lms/modules/core/templates/err_actionnotfound.html Fri Oct 14 18:09:02 2011 @@ -5,7 +5,7 @@
{if $queue[ticket].state == 0} - + {elseif $queue[ticket].state == 1} - + {elseif $queue[ticket].state == 2} - + {elseif $queue[ticket].state == 3} - + {/if} @@ -81,7 +81,7 @@ [ {t}Print{/t} ] - [ {t}Delete{/t} ] + [ {t}Delete{/t} ] [ {t}Edit{/t} ] [ {t}Info{/t} ]

{t}Error!{/t}

-

{t 0=$_action 1=$_module}Action '$0' of module '$1' not found!{/t}

+

{t a=$_action b=$_module}Action '$a' of module '$b' not found!{/t}

Index: lms/modules/core/templates/err_actionnotpublic.html diff -u lms/modules/core/templates/err_actionnotpublic.html:1.3 lms/modules/core/templates/err_actionnotpublic.html:1.4 --- lms/modules/core/templates/err_actionnotpublic.html:1.3 Mon May 15 21:46:44 2006 +++ lms/modules/core/templates/err_actionnotpublic.html Fri Oct 14 18:09:02 2011 @@ -5,7 +5,7 @@

{t}Error!{/t}

-

{t 0=$_action 1=$_module}Action '$0' of module '$1' is not public and can't be called directly!{/t}

+

{t a=$_action b=$_module}Action '$a' of module '$b' is not public and can't be called directly!{/t}

Index: lms/modules/core/templates/err_modulenotfound.html diff -u lms/modules/core/templates/err_modulenotfound.html:1.2 lms/modules/core/templates/err_modulenotfound.html:1.3 --- lms/modules/core/templates/err_modulenotfound.html:1.2 Mon May 15 21:46:44 2006 +++ lms/modules/core/templates/err_modulenotfound.html Fri Oct 14 18:09:02 2011 @@ -5,7 +5,7 @@

{t}Error!{/t}

-

{t 0=$_module}Module '$0' not found!{/t}

+

{t a=$_module}Module '$a' not found!{/t}

Index: lms/modules/core/templates/err_modulenotpublic.html diff -u lms/modules/core/templates/err_modulenotpublic.html:1.2 lms/modules/core/templates/err_modulenotpublic.html:1.3 --- lms/modules/core/templates/err_modulenotpublic.html:1.2 Mon May 15 21:46:44 2006 +++ lms/modules/core/templates/err_modulenotpublic.html Fri Oct 14 18:09:02 2011 @@ -5,7 +5,7 @@

{t}Error!{/t}

-

{t 0=$_module}Module '$0' is not public and can't be called directly!{/t}

+

{t a=$_module}Module '$a' is not public and can't be called directly!{/t}

Index: lms/modules/core/templates/menu.html diff -u lms/modules/core/templates/menu.html:1.9 lms/modules/core/templates/menu.html:1.10 --- lms/modules/core/templates/menu.html:1.9 Tue Jan 18 09:12:30 2011 +++ lms/modules/core/templates/menu.html Fri Oct 14 18:09:02 2011 @@ -14,13 +14,13 @@ {foreach from=$menu item=menuitem name=menu} -
+
*{$menuitem.name}
{if $menuitem.submenu} {foreach from=$menuitem.submenu item=submenuitem} -
+ {/foreach} From cvs w lms.org.pl Fri Oct 14 18:31:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:31:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc/sgml/pl (install.sgml) Message-ID: <20111014163103.0085A302A041@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:31:02 Author: chilek Path: /cvsroot/lms/doc/sgml/pl Modified: install.sgml - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/sgml/pl/install.sgml.diff?&r1=1.101&r2=1.102 Index: lms/doc/sgml/pl/install.sgml diff -u lms/doc/sgml/pl/install.sgml:1.101 lms/doc/sgml/pl/install.sgml:1.102 --- lms/doc/sgml/pl/install.sgml:1.101 Wed Mar 2 11:31:04 2011 +++ lms/doc/sgml/pl/install.sgml Fri Oct 14 18:31:02 2011 @@ -1,4 +1,4 @@ - + Instalacja i konfiguracja @@ -29,8 +29,7 @@ Interpreter PHP - Interpreter powinien byæ w wersji 4.2.x lub nowszej - (unikaæ wersji 4.2.2). PHP można ¶ci±gn±æ ze + Interpreter powinien byæ w wersji 5.2.x lub nowszej. PHP można ¶ci±gn±æ ze strony www.php.net. W szczególno¶ci wymagane s± nastêpuj±ce moduły (sprawdŒ "extension" w php.ini lub wyj¶cie funkcji phpinfo()): @@ -64,7 +63,7 @@ Biblioteka Smarty LMS-UI do pracy wymaga jeszcze biblioteki Smarty (http://www.smarty.net) - w wersji 2.6.0 lub wyższej (unikaæ wersji 2.6.4). + w wersji 3.0 lub wyższej. Perl From cvs w lms.org.pl Fri Oct 14 18:31:02 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 14 Oct 2011 18:31:02 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc/sgml (install.sgml) Message-ID: <20111014163102.CFCA7302A040@eftep.altec.pl> Date: Friday, October 14, 2011 @ 18:31:02 Author: chilek Path: /cvsroot/lms/doc/sgml Modified: install.sgml - ported to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/sgml/install.sgml.diff?&r1=1.154&r2=1.155 Index: lms/doc/sgml/install.sgml diff -u lms/doc/sgml/install.sgml:1.154 lms/doc/sgml/install.sgml:1.155 --- lms/doc/sgml/install.sgml:1.154 Wed Mar 2 11:31:04 2011 +++ lms/doc/sgml/install.sgml Fri Oct 14 18:31:02 2011 @@ -1,4 +1,4 @@ - + Installation and configuration @@ -27,7 +27,7 @@ PHP Interpreter - Interpreter version should be 4.2.x or higher. + Interpreter version should be 5.2.x or higher. PHP can be downloaded from www.php.net. At least following PHP modules needs to be installed (look for "extension" in php.ini or in output of phpinfo function): @@ -62,8 +62,8 @@ Smarty Library LMS-UI requires Smarty library (http://www.smarty.net) in version 2.6.0 - or higher (don't use 2.6.4 version). Newer versions of Smarty requires that + url="http://www.smarty.net">http://www.smarty.net) in version 3.0 + or higher. Newer versions of Smarty requires that you have not enabled "magic_quotes_runtime" (set to Off) option in PHP configuration. From cvs w lms.org.pl Sat Oct 15 17:58:21 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 15 Oct 2011 17:58:21 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc/html/en (54 files) Message-ID: <20111015155821.B951E302A040@eftep.altec.pl> Date: Saturday, October 15, 2011 @ 17:58:21 Author: chilek Path: /cvsroot/lms/doc/html/en Modified: authors.html contrib-customer2.html contrib-sqlpanel.html contrib-squid.html contrib.html daemon-modules.html daemon.html devel-db.html devel-genfake.html devel-ini.html devel-limits.html devel-rights.html devel.html faq.html index.html install-config.html install-db.html install-documents.html install-install.html install-locale.html install-requirements.html install-rights.html install-upgrade.html install.html intro.html legalnotice.html menu-administration.html menu-configuration.html menu-customers.html menu-documents.html menu-finances.html menu-helpdesk.html menu-hosting.html menu-messages.html menu-netdevices.html menu-networks.html menu-nodes.html menu-reload.html menu-stats.html menu-timetable.html mgc-config.html mgc-example.html mgc.html moreinfo.html scripts-config.html scripts-list.html scripts.html tscript.html user.html userpanel-config.html userpanel-install.html userpanel-modules.html userpanel-style.html userpanel.html - documentation regen Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/authors.html.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/contrib-customer2.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/contrib-sqlpanel.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/contrib-squid.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/contrib.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/daemon-modules.html.diff?&r1=1.51&r2=1.52 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/daemon.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel-db.html.diff?&r1=1.68&r2=1.69 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel-genfake.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel-ini.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel-limits.html.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel-rights.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/devel.html.diff?&r1=1.34&r2=1.35 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/faq.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/index.html.diff?&r1=1.41&r2=1.42 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-config.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-db.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-documents.html.diff?&r1=1.24&r2=1.25 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-install.html.diff?&r1=1.13&r2=1.14 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-locale.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-requirements.html.diff?&r1=1.25&r2=1.26 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-rights.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install-upgrade.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/install.html.diff?&r1=1.20&r2=1.21 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/intro.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/legalnotice.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-administration.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-configuration.html.diff?&r1=1.27&r2=1.28 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-customers.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-documents.html.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-finances.html.diff?&r1=1.24&r2=1.25 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-helpdesk.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-hosting.html.diff?&r1=1.6&r2=1.7 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-messages.html.diff?&r1=1.2&r2=1.3 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-netdevices.html.diff?&r1=1.11&r2=1.12 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-networks.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-nodes.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-reload.html.diff?&r1=1.10&r2=1.11 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-stats.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/menu-timetable.html.diff?&r1=1.7&r2=1.8 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/mgc-config.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/mgc-example.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/mgc.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/moreinfo.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/scripts-config.html.diff?&r1=1.27&r2=1.28 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/scripts-list.html.diff?&r1=1.9&r2=1.10 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/scripts.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/tscript.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/user.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/userpanel-config.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/userpanel-install.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/userpanel-modules.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/userpanel-style.html.diff?&r1=1.1&r2=1.2 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/en/userpanel.html.diff?&r1=1.1&r2=1.2 Index: lms/doc/html/en/authors.html diff -u lms/doc/html/en/authors.html:1.17 lms/doc/html/en/authors.html:1.18 --- lms/doc/html/en/authors.html:1.17 Tue Mar 17 14:19:50 2009 +++ lms/doc/html/en/authors.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ - + +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/contrib-sqlpanel.html diff -u lms/doc/html/en/contrib-sqlpanel.html:1.9 lms/doc/html/en/contrib-sqlpanel.html:1.10 --- lms/doc/html/en/contrib-sqlpanel.html:1.9 Fri Aug 17 15:06:37 2007 +++ lms/doc/html/en/contrib-sqlpanel.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/contrib-squid.html diff -u lms/doc/html/en/contrib-squid.html:1.10 lms/doc/html/en/contrib-squid.html:1.11 --- lms/doc/html/en/contrib-squid.html:1.10 Fri Jun 13 11:24:58 2008 +++ lms/doc/html/en/contrib-squid.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/contrib.html diff -u lms/doc/html/en/contrib.html:1.8 lms/doc/html/en/contrib.html:1.9 --- lms/doc/html/en/contrib.html:1.8 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/contrib.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/daemon-modules.html diff -u lms/doc/html/en/daemon-modules.html:1.51 lms/doc/html/en/daemon-modules.html:1.52 --- lms/doc/html/en/daemon-modules.html:1.51 Thu Mar 17 14:01:03 2011 +++ lms/doc/html/en/daemon-modules.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/daemon.html diff -u lms/doc/html/en/daemon.html:1.22 lms/doc/html/en/daemon.html:1.23 --- lms/doc/html/en/daemon.html:1.22 Fri Aug 7 13:36:44 2009 +++ lms/doc/html/en/daemon.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel-db.html diff -u lms/doc/html/en/devel-db.html:1.68 lms/doc/html/en/devel-db.html:1.69 --- lms/doc/html/en/devel-db.html:1.68 Fri Apr 15 19:47:27 2011 +++ lms/doc/html/en/devel-db.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel-genfake.html diff -u lms/doc/html/en/devel-genfake.html:1.9 lms/doc/html/en/devel-genfake.html:1.10 --- lms/doc/html/en/devel-genfake.html:1.9 Mon Oct 20 19:53:49 2008 +++ lms/doc/html/en/devel-genfake.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel-ini.html diff -u lms/doc/html/en/devel-ini.html:1.9 lms/doc/html/en/devel-ini.html:1.10 --- lms/doc/html/en/devel-ini.html:1.9 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/devel-ini.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel-limits.html diff -u lms/doc/html/en/devel-limits.html:1.13 lms/doc/html/en/devel-limits.html:1.14 --- lms/doc/html/en/devel-limits.html:1.13 Thu Mar 6 09:05:12 2008 +++ lms/doc/html/en/devel-limits.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel-rights.html diff -u lms/doc/html/en/devel-rights.html:1.9 lms/doc/html/en/devel-rights.html:1.10 --- lms/doc/html/en/devel-rights.html:1.9 Mon Oct 20 19:53:49 2008 +++ lms/doc/html/en/devel-rights.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/devel.html diff -u lms/doc/html/en/devel.html:1.34 lms/doc/html/en/devel.html:1.35 --- lms/doc/html/en/devel.html:1.34 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/en/devel.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/faq.html diff -u lms/doc/html/en/faq.html:1.15 lms/doc/html/en/faq.html:1.16 --- lms/doc/html/en/faq.html:1.15 Fri Jun 13 11:24:58 2008 +++ lms/doc/html/en/faq.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/index.html diff -u lms/doc/html/en/index.html:1.41 lms/doc/html/en/index.html:1.42 --- lms/doc/html/en/index.html:1.41 Tue Jan 18 09:12:04 2011 +++ lms/doc/html/en/index.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-config.html diff -u lms/doc/html/en/install-config.html:1.26 lms/doc/html/en/install-config.html:1.27 --- lms/doc/html/en/install-config.html:1.26 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/install-config.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-db.html diff -u lms/doc/html/en/install-db.html:1.22 lms/doc/html/en/install-db.html:1.23 --- lms/doc/html/en/install-db.html:1.22 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/en/install-db.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-documents.html diff -u lms/doc/html/en/install-documents.html:1.24 lms/doc/html/en/install-documents.html:1.25 --- lms/doc/html/en/install-documents.html:1.24 Tue Sep 29 11:18:39 2009 +++ lms/doc/html/en/install-documents.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE @@ -131,7 +131,7 @@ ></LI ></UL > - </P + </P ></DIV ><DIV CLASS="SECT2" Index: lms/doc/html/en/install-install.html diff -u lms/doc/html/en/install-install.html:1.13 lms/doc/html/en/install-install.html:1.14 --- lms/doc/html/en/install-install.html:1.13 Tue Aug 21 09:46:50 2007 +++ lms/doc/html/en/install-install.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-locale.html diff -u lms/doc/html/en/install-locale.html:1.9 lms/doc/html/en/install-locale.html:1.10 --- lms/doc/html/en/install-locale.html:1.9 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/install-locale.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-requirements.html diff -u lms/doc/html/en/install-requirements.html:1.25 lms/doc/html/en/install-requirements.html:1.26 --- lms/doc/html/en/install-requirements.html:1.25 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/en/install-requirements.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE @@ -109,7 +109,7 @@ >2.2.2. PHP Interpreter</A ></H2 ><P ->Interpreter version should be 4.2.x or higher. +>Interpreter version should be 5.2.x or higher. PHP can be downloaded from <A HREF="http://www.php.net" TARGET="_top" @@ -179,8 +179,8 @@ HREF="http://www.smarty.net" TARGET="_top" >http://www.smarty.net</A ->) in version 2.6.0 - or higher (don't use 2.6.4 version). Newer versions of Smarty requires that +>) in version 3.0 + or higher. Newer versions of Smarty requires that you have not enabled "magic_quotes_runtime" (set to Off) option in <A HREF="http://www.php.net/manual/en/configuration.php" TARGET="_top" Index: lms/doc/html/en/install-rights.html diff -u lms/doc/html/en/install-rights.html:1.20 lms/doc/html/en/install-rights.html:1.21 --- lms/doc/html/en/install-rights.html:1.20 Fri Aug 7 14:21:12 2009 +++ lms/doc/html/en/install-rights.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install-upgrade.html diff -u lms/doc/html/en/install-upgrade.html:1.14 lms/doc/html/en/install-upgrade.html:1.15 --- lms/doc/html/en/install-upgrade.html:1.14 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/install-upgrade.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/install.html diff -u lms/doc/html/en/install.html:1.20 lms/doc/html/en/install.html:1.21 --- lms/doc/html/en/install.html:1.20 Thu Feb 12 18:59:34 2009 +++ lms/doc/html/en/install.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/intro.html diff -u lms/doc/html/en/intro.html:1.10 lms/doc/html/en/intro.html:1.11 --- lms/doc/html/en/intro.html:1.10 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/intro.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/legalnotice.html diff -u lms/doc/html/en/legalnotice.html:1.7 lms/doc/html/en/legalnotice.html:1.8 --- lms/doc/html/en/legalnotice.html:1.7 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/legalnotice.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-administration.html diff -u lms/doc/html/en/menu-administration.html:1.12 lms/doc/html/en/menu-administration.html:1.13 --- lms/doc/html/en/menu-administration.html:1.12 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/menu-administration.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-configuration.html diff -u lms/doc/html/en/menu-configuration.html:1.27 lms/doc/html/en/menu-configuration.html:1.28 --- lms/doc/html/en/menu-configuration.html:1.27 Sun Jun 7 10:30:52 2009 +++ lms/doc/html/en/menu-configuration.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-customers.html diff -u lms/doc/html/en/menu-customers.html:1.10 lms/doc/html/en/menu-customers.html:1.11 --- lms/doc/html/en/menu-customers.html:1.10 Tue Mar 17 14:19:50 2009 +++ lms/doc/html/en/menu-customers.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-documents.html diff -u lms/doc/html/en/menu-documents.html:1.5 lms/doc/html/en/menu-documents.html:1.6 --- lms/doc/html/en/menu-documents.html:1.5 Fri May 15 10:53:20 2009 +++ lms/doc/html/en/menu-documents.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-finances.html diff -u lms/doc/html/en/menu-finances.html:1.24 lms/doc/html/en/menu-finances.html:1.25 --- lms/doc/html/en/menu-finances.html:1.24 Fri Aug 7 13:36:44 2009 +++ lms/doc/html/en/menu-finances.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-helpdesk.html diff -u lms/doc/html/en/menu-helpdesk.html:1.15 lms/doc/html/en/menu-helpdesk.html:1.16 --- lms/doc/html/en/menu-helpdesk.html:1.15 Thu Mar 6 09:05:12 2008 +++ lms/doc/html/en/menu-helpdesk.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-hosting.html diff -u lms/doc/html/en/menu-hosting.html:1.6 lms/doc/html/en/menu-hosting.html:1.7 --- lms/doc/html/en/menu-hosting.html:1.6 Fri Apr 23 15:37:01 2010 +++ lms/doc/html/en/menu-hosting.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-messages.html diff -u lms/doc/html/en/menu-messages.html:1.2 lms/doc/html/en/menu-messages.html:1.3 --- lms/doc/html/en/menu-messages.html:1.2 Tue Mar 24 08:56:01 2009 +++ lms/doc/html/en/menu-messages.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-netdevices.html diff -u lms/doc/html/en/menu-netdevices.html:1.11 lms/doc/html/en/menu-netdevices.html:1.12 --- lms/doc/html/en/menu-netdevices.html:1.11 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/menu-netdevices.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-networks.html diff -u lms/doc/html/en/menu-networks.html:1.9 lms/doc/html/en/menu-networks.html:1.10 --- lms/doc/html/en/menu-networks.html:1.9 Tue May 27 09:59:11 2008 +++ lms/doc/html/en/menu-networks.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-nodes.html diff -u lms/doc/html/en/menu-nodes.html:1.10 lms/doc/html/en/menu-nodes.html:1.11 --- lms/doc/html/en/menu-nodes.html:1.10 Tue Mar 17 14:19:50 2009 +++ lms/doc/html/en/menu-nodes.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-reload.html diff -u lms/doc/html/en/menu-reload.html:1.10 lms/doc/html/en/menu-reload.html:1.11 --- lms/doc/html/en/menu-reload.html:1.10 Tue Mar 17 14:19:50 2009 +++ lms/doc/html/en/menu-reload.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-stats.html diff -u lms/doc/html/en/menu-stats.html:1.12 lms/doc/html/en/menu-stats.html:1.13 --- lms/doc/html/en/menu-stats.html:1.12 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/menu-stats.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/menu-timetable.html diff -u lms/doc/html/en/menu-timetable.html:1.7 lms/doc/html/en/menu-timetable.html:1.8 --- lms/doc/html/en/menu-timetable.html:1.7 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/menu-timetable.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/mgc-config.html diff -u lms/doc/html/en/mgc-config.html:1.16 lms/doc/html/en/mgc-config.html:1.17 --- lms/doc/html/en/mgc-config.html:1.16 Wed Dec 2 15:49:19 2009 +++ lms/doc/html/en/mgc-config.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/mgc-example.html diff -u lms/doc/html/en/mgc-example.html:1.9 lms/doc/html/en/mgc-example.html:1.10 --- lms/doc/html/en/mgc-example.html:1.9 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/mgc-example.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/mgc.html diff -u lms/doc/html/en/mgc.html:1.9 lms/doc/html/en/mgc.html:1.10 --- lms/doc/html/en/mgc.html:1.9 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/mgc.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/moreinfo.html diff -u lms/doc/html/en/moreinfo.html:1.14 lms/doc/html/en/moreinfo.html:1.15 --- lms/doc/html/en/moreinfo.html:1.14 Fri Aug 7 13:36:44 2009 +++ lms/doc/html/en/moreinfo.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/scripts-config.html diff -u lms/doc/html/en/scripts-config.html:1.27 lms/doc/html/en/scripts-config.html:1.28 --- lms/doc/html/en/scripts-config.html:1.27 Mon Jun 21 10:58:15 2010 +++ lms/doc/html/en/scripts-config.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/scripts-list.html diff -u lms/doc/html/en/scripts-list.html:1.9 lms/doc/html/en/scripts-list.html:1.10 --- lms/doc/html/en/scripts-list.html:1.9 Wed Apr 8 11:42:17 2009 +++ lms/doc/html/en/scripts-list.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/scripts.html diff -u lms/doc/html/en/scripts.html:1.8 lms/doc/html/en/scripts.html:1.9 --- lms/doc/html/en/scripts.html:1.8 Fri Aug 17 15:06:38 2007 +++ lms/doc/html/en/scripts.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/tscript.html diff -u lms/doc/html/en/tscript.html:1.22 lms/doc/html/en/tscript.html:1.23 --- lms/doc/html/en/tscript.html:1.22 Thu Mar 6 09:05:13 2008 +++ lms/doc/html/en/tscript.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/user.html diff -u lms/doc/html/en/user.html:1.26 lms/doc/html/en/user.html:1.27 --- lms/doc/html/en/user.html:1.26 Fri Aug 7 13:36:44 2009 +++ lms/doc/html/en/user.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/userpanel-config.html diff -u lms/doc/html/en/userpanel-config.html:1.1 lms/doc/html/en/userpanel-config.html:1.2 --- lms/doc/html/en/userpanel-config.html:1.1 Fri Jun 13 11:25:57 2008 +++ lms/doc/html/en/userpanel-config.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/userpanel-install.html diff -u lms/doc/html/en/userpanel-install.html:1.1 lms/doc/html/en/userpanel-install.html:1.2 --- lms/doc/html/en/userpanel-install.html:1.1 Fri Jun 13 11:25:57 2008 +++ lms/doc/html/en/userpanel-install.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/userpanel-modules.html diff -u lms/doc/html/en/userpanel-modules.html:1.1 lms/doc/html/en/userpanel-modules.html:1.2 --- lms/doc/html/en/userpanel-modules.html:1.1 Fri Jun 13 11:25:57 2008 +++ lms/doc/html/en/userpanel-modules.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/userpanel-style.html diff -u lms/doc/html/en/userpanel-style.html:1.1 lms/doc/html/en/userpanel-style.html:1.2 --- lms/doc/html/en/userpanel-style.html:1.1 Fri Jun 13 11:25:57 2008 +++ lms/doc/html/en/userpanel-style.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/en/userpanel.html diff -u lms/doc/html/en/userpanel.html:1.1 lms/doc/html/en/userpanel.html:1.2 --- lms/doc/html/en/userpanel.html:1.1 Fri Jun 13 11:25:57 2008 +++ lms/doc/html/en/userpanel.html Sat Oct 15 17:58:20 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE From cvs w lms.org.pl Sat Oct 15 17:58:22 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 15 Oct 2011 17:58:22 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc/html/pl (55 files) Message-ID: <20111015155823.2AE78302A040@eftep.altec.pl> Date: Saturday, October 15, 2011 @ 17:58:22 Author: chilek Path: /cvsroot/lms/doc/html/pl Modified: authors.html contrib-antyvir.html contrib-customer2.html contrib-sqlpanel.html contrib-squid.html contrib.html daemon-modules.html daemon.html devel-db.html devel-genfake.html devel-ini.html devel-limits.html devel-rights.html devel.html faq.html index.html install-config.html install-db.html install-documents.html install-install.html install-locale.html install-requirements.html install-rights.html install-upgrade.html install.html intro.html legalnotice.html menu-administration.html menu-configuration.html menu-customers.html menu-documents.html menu-finances.html menu-helpdesk.html menu-hosting.html menu-messages.html menu-netdevices.html menu-networks.html menu-nodes.html menu-reload.html menu-stats.html menu-timetable.html mgc-config.html mgc-example.html mgc.html moreinfo.html scripts-config.html scripts-list.html scripts.html tscript.html user.html userpanel-config.html userpanel-install.html userpanel-modules.html userpanel-style.html userpanel.html - documentation regen Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/authors.html.diff?&r1=1.22&r2=1.23 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/contrib-antyvir.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/contrib-customer2.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/contrib-sqlpanel.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/contrib-squid.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/contrib.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/daemon-modules.html.diff?&r1=1.75&r2=1.76 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/daemon.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel-db.html.diff?&r1=1.75&r2=1.76 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel-genfake.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel-ini.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel-limits.html.diff?&r1=1.19&r2=1.20 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel-rights.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/devel.html.diff?&r1=1.43&r2=1.44 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/faq.html.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/index.html.diff?&r1=1.42&r2=1.43 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-config.html.diff?&r1=1.31&r2=1.32 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-db.html.diff?&r1=1.31&r2=1.32 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-documents.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-install.html.diff?&r1=1.19&r2=1.20 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-locale.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-requirements.html.diff?&r1=1.29&r2=1.30 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-rights.html.diff?&r1=1.24&r2=1.25 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install-upgrade.html.diff?&r1=1.21&r2=1.22 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/install.html.diff?&r1=1.26&r2=1.27 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/intro.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/legalnotice.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-administration.html.diff?&r1=1.18&r2=1.19 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-configuration.html.diff?&r1=1.32&r2=1.33 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-customers.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-documents.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-finances.html.diff?&r1=1.28&r2=1.29 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-helpdesk.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-hosting.html.diff?&r1=1.8&r2=1.9 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-messages.html.diff?&r1=1.5&r2=1.6 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-netdevices.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-networks.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-nodes.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-reload.html.diff?&r1=1.17&r2=1.18 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-stats.html.diff?&r1=1.18&r2=1.19 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/menu-timetable.html.diff?&r1=1.14&r2=1.15 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/mgc-config.html.diff?&r1=1.23&r2=1.24 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/mgc-example.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/mgc.html.diff?&r1=1.12&r2=1.13 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/moreinfo.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/scripts-config.html.diff?&r1=1.41&r2=1.42 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/scripts-list.html.diff?&r1=1.15&r2=1.16 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/scripts.html.diff?&r1=1.16&r2=1.17 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/tscript.html.diff?&r1=1.24&r2=1.25 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/user.html.diff?&r1=1.34&r2=1.35 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/userpanel-config.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/userpanel-install.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/userpanel-modules.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/userpanel-style.html.diff?&r1=1.3&r2=1.4 http://cvs.lms.org.pl/viewvc/Development/lms/doc/html/pl/userpanel.html.diff?&r1=1.3&r2=1.4 Index: lms/doc/html/pl/authors.html diff -u lms/doc/html/pl/authors.html:1.22 lms/doc/html/pl/authors.html:1.23 --- lms/doc/html/pl/authors.html:1.22 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/authors.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/contrib-antyvir.html diff -u lms/doc/html/pl/contrib-antyvir.html:1.12 lms/doc/html/pl/contrib-antyvir.html:1.13 --- lms/doc/html/pl/contrib-antyvir.html:1.12 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/contrib-antyvir.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/contrib-customer2.html diff -u lms/doc/html/pl/contrib-customer2.html:1.14 lms/doc/html/pl/contrib-customer2.html:1.15 --- lms/doc/html/pl/contrib-customer2.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/contrib-customer2.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/contrib-sqlpanel.html diff -u lms/doc/html/pl/contrib-sqlpanel.html:1.15 lms/doc/html/pl/contrib-sqlpanel.html:1.16 --- lms/doc/html/pl/contrib-sqlpanel.html:1.15 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/contrib-sqlpanel.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/contrib-squid.html diff -u lms/doc/html/pl/contrib-squid.html:1.14 lms/doc/html/pl/contrib-squid.html:1.15 --- lms/doc/html/pl/contrib-squid.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/contrib-squid.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/contrib.html diff -u lms/doc/html/pl/contrib.html:1.14 lms/doc/html/pl/contrib.html:1.15 --- lms/doc/html/pl/contrib.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/contrib.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/daemon-modules.html diff -u lms/doc/html/pl/daemon-modules.html:1.75 lms/doc/html/pl/daemon-modules.html:1.76 --- lms/doc/html/pl/daemon-modules.html:1.75 Fri Apr 15 19:47:27 2011 +++ lms/doc/html/pl/daemon-modules.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/daemon.html diff -u lms/doc/html/pl/daemon.html:1.29 lms/doc/html/pl/daemon.html:1.30 --- lms/doc/html/pl/daemon.html:1.29 Fri Apr 2 17:26:09 2010 +++ lms/doc/html/pl/daemon.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel-db.html diff -u lms/doc/html/pl/devel-db.html:1.75 lms/doc/html/pl/devel-db.html:1.76 --- lms/doc/html/pl/devel-db.html:1.75 Fri Apr 15 19:47:27 2011 +++ lms/doc/html/pl/devel-db.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel-genfake.html diff -u lms/doc/html/pl/devel-genfake.html:1.16 lms/doc/html/pl/devel-genfake.html:1.17 --- lms/doc/html/pl/devel-genfake.html:1.16 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/devel-genfake.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel-ini.html diff -u lms/doc/html/pl/devel-ini.html:1.16 lms/doc/html/pl/devel-ini.html:1.17 --- lms/doc/html/pl/devel-ini.html:1.16 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/devel-ini.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel-limits.html diff -u lms/doc/html/pl/devel-limits.html:1.19 lms/doc/html/pl/devel-limits.html:1.20 --- lms/doc/html/pl/devel-limits.html:1.19 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/devel-limits.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel-rights.html diff -u lms/doc/html/pl/devel-rights.html:1.14 lms/doc/html/pl/devel-rights.html:1.15 --- lms/doc/html/pl/devel-rights.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/devel-rights.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/devel.html diff -u lms/doc/html/pl/devel.html:1.43 lms/doc/html/pl/devel.html:1.44 --- lms/doc/html/pl/devel.html:1.43 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/pl/devel.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/faq.html diff -u lms/doc/html/pl/faq.html:1.21 lms/doc/html/pl/faq.html:1.22 --- lms/doc/html/pl/faq.html:1.21 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/faq.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/index.html diff -u lms/doc/html/pl/index.html:1.42 lms/doc/html/pl/index.html:1.43 --- lms/doc/html/pl/index.html:1.42 Tue Jan 18 09:12:04 2011 +++ lms/doc/html/pl/index.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-config.html diff -u lms/doc/html/pl/install-config.html:1.31 lms/doc/html/pl/install-config.html:1.32 --- lms/doc/html/pl/install-config.html:1.31 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-config.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-db.html diff -u lms/doc/html/pl/install-db.html:1.31 lms/doc/html/pl/install-db.html:1.32 --- lms/doc/html/pl/install-db.html:1.31 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/pl/install-db.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-documents.html diff -u lms/doc/html/pl/install-documents.html:1.29 lms/doc/html/pl/install-documents.html:1.30 --- lms/doc/html/pl/install-documents.html:1.29 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-documents.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-install.html diff -u lms/doc/html/pl/install-install.html:1.19 lms/doc/html/pl/install-install.html:1.20 --- lms/doc/html/pl/install-install.html:1.19 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-install.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-locale.html diff -u lms/doc/html/pl/install-locale.html:1.12 lms/doc/html/pl/install-locale.html:1.13 --- lms/doc/html/pl/install-locale.html:1.12 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-locale.html Sat Oct 15 17:58:21 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-requirements.html diff -u lms/doc/html/pl/install-requirements.html:1.29 lms/doc/html/pl/install-requirements.html:1.30 --- lms/doc/html/pl/install-requirements.html:1.29 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/pl/install-requirements.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE @@ -110,8 +110,7 @@ >2.2.2. Interpreter PHP</A ></H2 ><P ->Interpreter powinien byæ w wersji 4.2.x lub nowszej - (unikaæ wersji 4.2.2). PHP można ¶ci±gn±æ ze +>Interpreter powinien byæ w wersji 5.2.x lub nowszej. PHP można ¶ci±gn±æ ze strony <A HREF="http://www.php.net" TARGET="_top" @@ -181,7 +180,7 @@ TARGET="_top" >http://www.smarty.net</A >) - w wersji 2.6.0 lub wyższej (unikaæ wersji 2.6.4).</P + w wersji 3.0 lub wyższej.</P ></DIV ><DIV CLASS="SECT2" Index: lms/doc/html/pl/install-rights.html diff -u lms/doc/html/pl/install-rights.html:1.24 lms/doc/html/pl/install-rights.html:1.25 --- lms/doc/html/pl/install-rights.html:1.24 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-rights.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install-upgrade.html diff -u lms/doc/html/pl/install-upgrade.html:1.21 lms/doc/html/pl/install-upgrade.html:1.22 --- lms/doc/html/pl/install-upgrade.html:1.21 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install-upgrade.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/install.html diff -u lms/doc/html/pl/install.html:1.26 lms/doc/html/pl/install.html:1.27 --- lms/doc/html/pl/install.html:1.26 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/install.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/intro.html diff -u lms/doc/html/pl/intro.html:1.15 lms/doc/html/pl/intro.html:1.16 --- lms/doc/html/pl/intro.html:1.15 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/intro.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/legalnotice.html diff -u lms/doc/html/pl/legalnotice.html:1.12 lms/doc/html/pl/legalnotice.html:1.13 --- lms/doc/html/pl/legalnotice.html:1.12 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/legalnotice.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-administration.html diff -u lms/doc/html/pl/menu-administration.html:1.18 lms/doc/html/pl/menu-administration.html:1.19 --- lms/doc/html/pl/menu-administration.html:1.18 Thu Mar 10 12:37:21 2011 +++ lms/doc/html/pl/menu-administration.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-configuration.html diff -u lms/doc/html/pl/menu-configuration.html:1.32 lms/doc/html/pl/menu-configuration.html:1.33 --- lms/doc/html/pl/menu-configuration.html:1.32 Thu Mar 10 12:37:21 2011 +++ lms/doc/html/pl/menu-configuration.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-customers.html diff -u lms/doc/html/pl/menu-customers.html:1.14 lms/doc/html/pl/menu-customers.html:1.15 --- lms/doc/html/pl/menu-customers.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-customers.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-documents.html diff -u lms/doc/html/pl/menu-documents.html:1.8 lms/doc/html/pl/menu-documents.html:1.9 --- lms/doc/html/pl/menu-documents.html:1.8 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-documents.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-finances.html diff -u lms/doc/html/pl/menu-finances.html:1.28 lms/doc/html/pl/menu-finances.html:1.29 --- lms/doc/html/pl/menu-finances.html:1.28 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-finances.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-helpdesk.html diff -u lms/doc/html/pl/menu-helpdesk.html:1.16 lms/doc/html/pl/menu-helpdesk.html:1.17 --- lms/doc/html/pl/menu-helpdesk.html:1.16 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-helpdesk.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-hosting.html diff -u lms/doc/html/pl/menu-hosting.html:1.8 lms/doc/html/pl/menu-hosting.html:1.9 --- lms/doc/html/pl/menu-hosting.html:1.8 Fri Apr 23 15:37:01 2010 +++ lms/doc/html/pl/menu-hosting.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-messages.html diff -u lms/doc/html/pl/menu-messages.html:1.5 lms/doc/html/pl/menu-messages.html:1.6 --- lms/doc/html/pl/menu-messages.html:1.5 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-messages.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-netdevices.html diff -u lms/doc/html/pl/menu-netdevices.html:1.16 lms/doc/html/pl/menu-netdevices.html:1.17 --- lms/doc/html/pl/menu-netdevices.html:1.16 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-netdevices.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-networks.html diff -u lms/doc/html/pl/menu-networks.html:1.14 lms/doc/html/pl/menu-networks.html:1.15 --- lms/doc/html/pl/menu-networks.html:1.14 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-networks.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-nodes.html diff -u lms/doc/html/pl/menu-nodes.html:1.15 lms/doc/html/pl/menu-nodes.html:1.16 --- lms/doc/html/pl/menu-nodes.html:1.15 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-nodes.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-reload.html diff -u lms/doc/html/pl/menu-reload.html:1.17 lms/doc/html/pl/menu-reload.html:1.18 --- lms/doc/html/pl/menu-reload.html:1.17 Sat Feb 6 19:52:47 2010 +++ lms/doc/html/pl/menu-reload.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-stats.html diff -u lms/doc/html/pl/menu-stats.html:1.18 lms/doc/html/pl/menu-stats.html:1.19 --- lms/doc/html/pl/menu-stats.html:1.18 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/menu-stats.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/menu-timetable.html diff -u lms/doc/html/pl/menu-timetable.html:1.14 lms/doc/html/pl/menu-timetable.html:1.15 --- lms/doc/html/pl/menu-timetable.html:1.14 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/menu-timetable.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/mgc-config.html diff -u lms/doc/html/pl/mgc-config.html:1.23 lms/doc/html/pl/mgc-config.html:1.24 --- lms/doc/html/pl/mgc-config.html:1.23 Fri Apr 16 11:09:19 2010 +++ lms/doc/html/pl/mgc-config.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/mgc-example.html diff -u lms/doc/html/pl/mgc-example.html:1.12 lms/doc/html/pl/mgc-example.html:1.13 --- lms/doc/html/pl/mgc-example.html:1.12 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/mgc-example.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/mgc.html diff -u lms/doc/html/pl/mgc.html:1.12 lms/doc/html/pl/mgc.html:1.13 --- lms/doc/html/pl/mgc.html:1.12 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/mgc.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/moreinfo.html diff -u lms/doc/html/pl/moreinfo.html:1.15 lms/doc/html/pl/moreinfo.html:1.16 --- lms/doc/html/pl/moreinfo.html:1.15 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/moreinfo.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/scripts-config.html diff -u lms/doc/html/pl/scripts-config.html:1.41 lms/doc/html/pl/scripts-config.html:1.42 --- lms/doc/html/pl/scripts-config.html:1.41 Fri Apr 1 13:46:53 2011 +++ lms/doc/html/pl/scripts-config.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/scripts-list.html diff -u lms/doc/html/pl/scripts-list.html:1.15 lms/doc/html/pl/scripts-list.html:1.16 --- lms/doc/html/pl/scripts-list.html:1.15 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/scripts-list.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/scripts.html diff -u lms/doc/html/pl/scripts.html:1.16 lms/doc/html/pl/scripts.html:1.17 --- lms/doc/html/pl/scripts.html:1.16 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/scripts.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/tscript.html diff -u lms/doc/html/pl/tscript.html:1.24 lms/doc/html/pl/tscript.html:1.25 --- lms/doc/html/pl/tscript.html:1.24 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/tscript.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/user.html diff -u lms/doc/html/pl/user.html:1.34 lms/doc/html/pl/user.html:1.35 --- lms/doc/html/pl/user.html:1.34 Mon Mar 7 13:10:57 2011 +++ lms/doc/html/pl/user.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/userpanel-config.html diff -u lms/doc/html/pl/userpanel-config.html:1.3 lms/doc/html/pl/userpanel-config.html:1.4 --- lms/doc/html/pl/userpanel-config.html:1.3 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/userpanel-config.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/userpanel-install.html diff -u lms/doc/html/pl/userpanel-install.html:1.3 lms/doc/html/pl/userpanel-install.html:1.4 --- lms/doc/html/pl/userpanel-install.html:1.3 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/userpanel-install.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/userpanel-modules.html diff -u lms/doc/html/pl/userpanel-modules.html:1.3 lms/doc/html/pl/userpanel-modules.html:1.4 --- lms/doc/html/pl/userpanel-modules.html:1.3 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/userpanel-modules.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/userpanel-style.html diff -u lms/doc/html/pl/userpanel-style.html:1.3 lms/doc/html/pl/userpanel-style.html:1.4 --- lms/doc/html/pl/userpanel-style.html:1.3 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/userpanel-style.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE Index: lms/doc/html/pl/userpanel.html diff -u lms/doc/html/pl/userpanel.html:1.3 lms/doc/html/pl/userpanel.html:1.4 --- lms/doc/html/pl/userpanel.html:1.3 Sat Feb 6 19:52:48 2010 +++ lms/doc/html/pl/userpanel.html Sat Oct 15 17:58:22 2011 @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE From cvs w lms.org.pl Sat Oct 15 17:58:23 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 15 Oct 2011 17:58:23 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc/sgml (install.sgml) Message-ID: <20111015155823.4CFBB302A041@eftep.altec.pl> Date: Saturday, October 15, 2011 @ 17:58:23 Author: chilek Path: /cvsroot/lms/doc/sgml Modified: install.sgml - documentation regen Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/sgml/install.sgml.diff?&r1=1.155&r2=1.156 Index: lms/doc/sgml/install.sgml diff -u lms/doc/sgml/install.sgml:1.155 lms/doc/sgml/install.sgml:1.156 --- lms/doc/sgml/install.sgml:1.155 Fri Oct 14 18:31:02 2011 +++ lms/doc/sgml/install.sgml Sat Oct 15 17:58:23 2011 @@ -1,4 +1,4 @@ -<!-- $Id: install.sgml,v 1.155 2011/10/14 16:31:02 chilek Exp $ --> +<!-- $Id: install.sgml,v 1.156 2011/10/15 15:58:23 chilek Exp $ --> <chapter id="install"> <title>Installation and configuration @@ -532,6 +532,7 @@ total netto price = ($2.56 * 1366 m = $3496.96) / 1,22 = $2866.36 + Invoices From cvs w lms.org.pl Sat Oct 15 18:20:04 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 15 Oct 2011 18:20:04 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (common.php) Message-ID: <20111015162004.18653302A040@eftep.altec.pl> Date: Saturday, October 15, 2011 @ 18:20:04 Author: chilek Path: /cvsroot/lms/lib Modified: common.php - conversion missed during port to Smarty 3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/common.php.diff?&r1=1.128&r2=1.129 Index: lms/lib/common.php diff -u lms/lib/common.php:1.128 lms/lib/common.php:1.129 --- lms/lib/common.php:1.128 Fri Oct 14 18:08:56 2011 +++ lms/lib/common.php Sat Oct 15 18:20:03 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: common.php,v 1.128 2011/10/14 16:08:56 chilek Exp $ + * $Id: common.php,v 1.129 2011/10/15 16:20:03 chilek Exp $ */ // Common functions, that making it in class would be nonsense :) @@ -659,7 +659,7 @@ $delta = time()-$timestamp; if ($delta > $CONFIG['phpui']['lastonline_limit']) { if($delta>59) - return trans('$a ago ($1)', uptimef($delta), date('Y/m/d, H:i', $timestamp)); + return trans('$a ago ($b)', uptimef($delta), date('Y/m/d, H:i', $timestamp)); else return date('(Y/m/d, H:i)', $timestamp); } From cvs w lms.org.pl Sat Oct 15 20:24:11 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 15 Oct 2011 20:24:11 +0200 (CEST) Subject: [lms-commits] CVS update of lms/templates (traffic.html) Message-ID: <20111015182411.42707302A040@eftep.altec.pl> Date: Saturday, October 15, 2011 @ 20:24:11 Author: chilek Path: /cvsroot/lms/templates Modified: traffic.html - missed conversions during port to Smarty 3 (again) Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/templates/traffic.html.diff?&r1=1.54&r2=1.55 Index: lms/templates/traffic.html diff -u lms/templates/traffic.html:1.54 lms/templates/traffic.html:1.55 --- lms/templates/traffic.html:1.54 Fri Oct 14 18:09:06 2011 +++ lms/templates/traffic.html Sat Oct 15 20:24:11 2011 @@ -1,5 +1,5 @@ {include file="header.html"} - +

{$layout.pagetitle}

{if $bars} {if ($download || $upload) && function_exists('imagecreate')} @@ -22,7 +22,7 @@ {if $showips}{$download.ipaddr[download]}{else}{$download.name[download]|truncate:25:"...":true}{/if} - + {$download.data[download]|string_format:"%.2f"} {$download.unit[download]} ({$download.avg[download]|string_format:"%d"} kbit/s) @@ -47,7 +47,7 @@ {if $showips}{$upload.ipaddr[upload]}{else}{$upload.name[upload]|truncate:25:"...":true}{/if} - + {$upload.data[upload]|string_format:"%.2f"} {$upload.unit[upload]} ({$upload.avg[upload]|string_format:"%d"} kbit/s) From cvs w lms.org.pl Mon Oct 17 23:15:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Mon, 17 Oct 2011 23:15:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc (ChangeLog) Message-ID: <20111017211556.8913B302A040@eftep.altec.pl> Date: Monday, October 17, 2011 @ 23:15:56 Author: chilek Path: /cvsroot/lms/doc Modified: ChangeLog - quicksearch: fixed search for hosts when exact mac address was entered Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/ChangeLog.diff?&r1=1.1593&r2=1.1594 Index: lms/doc/ChangeLog diff -u lms/doc/ChangeLog:1.1593 lms/doc/ChangeLog:1.1594 --- lms/doc/ChangeLog:1.1593 Fri Oct 14 18:08:56 2011 +++ lms/doc/ChangeLog Mon Oct 17 23:15:56 2011 @@ -1,4 +1,4 @@ -$Id: ChangeLog,v 1.1593 2011/10/14 16:08:56 chilek Exp $ +$Id: ChangeLog,v 1.1594 2011/10/17 21:15:56 chilek Exp $ version ? (????-??-??): @@ -35,7 +35,8 @@ WARNING: This update changes required version of Smarty from 2.6 to 3.x. It was quite strongly tested with Smarty 3.1.3 ----------------------------------------------------------------- - + - quicksearch: fixed search for hosts when exact mac address was entered [chilan] + version 1.11.13 Dira (2011-04-07) - contrib/cutoff2: Fixed "Column 'period' in where clause is ambiguous" [alec] From cvs w lms.org.pl Mon Oct 17 23:15:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Mon, 17 Oct 2011 23:15:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/modules (quicksearch.php) Message-ID: <20111017211556.CD2DF302A042@eftep.altec.pl> Date: Monday, October 17, 2011 @ 23:15:56 Author: chilek Path: /cvsroot/lms/modules Modified: quicksearch.php - quicksearch: fixed search for hosts when exact mac address was entered Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/modules/quicksearch.php.diff?&r1=1.75&r2=1.76 Index: lms/modules/quicksearch.php diff -u lms/modules/quicksearch.php:1.75 lms/modules/quicksearch.php:1.76 --- lms/modules/quicksearch.php:1.75 Fri Sep 16 22:48:17 2011 +++ lms/modules/quicksearch.php Mon Oct 17 23:15:56 2011 @@ -21,12 +21,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: quicksearch.php,v 1.75 2011/09/16 20:48:17 chilek Exp $ + * $Id: quicksearch.php,v 1.76 2011/10/17 21:15:56 chilek Exp $ */ function macformat($mac, $escape=false) { - global $DB; + global $DB; $res = str_replace('-', ':', $mac); @@ -50,10 +50,10 @@ if(strlen($tmp) == 12) // we've the whole address if(check_mac($tmp)) $res = $tmp; - - if ($escape) - $res = $DB->Escape("%$res%"); } + + if ($escape) + $res = $DB->Escape("%$res%"); return $res; } From cvs w lms.org.pl Mon Oct 17 23:15:56 2011 From: cvs w lms.org.pl (LMS CVS) Date: Mon, 17 Oct 2011 23:15:56 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (LMSDB_common.class.php) Message-ID: <20111017211556.AB3CD302A041@eftep.altec.pl> Date: Monday, October 17, 2011 @ 23:15:56 Author: chilek Path: /cvsroot/lms/lib Modified: LMSDB_common.class.php - quicksearch: fixed search for hosts when exact mac address was entered Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/LMSDB_common.class.php.diff?&r1=1.58&r2=1.59 Index: lms/lib/LMSDB_common.class.php diff -u lms/lib/LMSDB_common.class.php:1.58 lms/lib/LMSDB_common.class.php:1.59 --- lms/lib/LMSDB_common.class.php:1.58 Fri Mar 11 10:43:39 2011 +++ lms/lib/LMSDB_common.class.php Mon Oct 17 23:15:56 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMSDB_common.class.php,v 1.58 2011/03/11 09:43:39 chilek Exp $ + * $Id: LMSDB_common.class.php,v 1.59 2011/10/17 21:15:56 chilek Exp $ */ /* @@ -31,7 +31,7 @@ Class LMSDB_common { var $_version = '1.11-cvs'; - var $_revision = '$Revision: 1.58 $'; + var $_revision = '$Revision: 1.59 $'; // Driver powinien nadpisaæ t± zmienn± warto¶ci± TRUE, żeby // funkcja inicjuj±ca baze danych wiedziała że driver siê poprawnie @@ -274,7 +274,7 @@ if($input === NULL) return 'NULL'; - elseif(gettype($input) == 'string') + elseif(is_string($input)) return '\''.addcslashes($input,"'\\\0").'\''; else return $input; From cvs w lms.org.pl Tue Oct 18 01:08:03 2011 From: cvs w lms.org.pl (LMS CVS) Date: Tue, 18 Oct 2011 01:08:03 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (LMS.class.php) Message-ID: <20111017230803.42103302A041@eftep.altec.pl> Date: Tuesday, October 18, 2011 @ 01:08:03 Author: chilek Path: /cvsroot/lms/lib Modified: LMS.class.php - BTS#0000867: execution node_del_{before,after} hooks while deleting owner Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/LMS.class.php.diff?&r1=1.1078&r2=1.1079 Index: lms/lib/LMS.class.php diff -u lms/lib/LMS.class.php:1.1078 lms/lib/LMS.class.php:1.1079 --- lms/lib/LMS.class.php:1.1078 Fri Oct 14 18:08:56 2011 +++ lms/lib/LMS.class.php Tue Oct 18 01:08:03 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMS.class.php,v 1.1078 2011/10/14 16:08:56 chilek Exp $ + * $Id: LMS.class.php,v 1.1079 2011/10/17 23:08:03 chilek Exp $ */ // LMS Class - contains internal LMS database functions used @@ -35,7 +35,7 @@ var $cache = array(); // internal cache var $hooks = array(); // registered plugin hooks var $_version = '1.11-cvs'; // class version - var $_revision = '$Revision: 1.1078 $'; + var $_revision = '$Revision: 1.1079 $'; function LMS(&$DB, &$AUTH, &$CONFIG) // class variables setting { @@ -506,9 +506,17 @@ $this->DB->Execute('DELETE FROM customerassignments WHERE customerid=?', array($id)); $this->DB->Execute('DELETE FROM assignments WHERE customerid=?', array($id)); // nodes - $this->DB->Execute('DELETE FROM nodegroupassignments WHERE nodeid IN ( - SELECT id FROM nodes WHERE ownerid=?)', array($id)); - $this->DB->Execute('DELETE FROM nodes WHERE ownerid=?', array($id)); + $nodes = $this->DB->GetCol('SELECT id FROM nodes WHERE ownerid=?', array(id)); + if ($nodes) + { + $this->DB->Execute('DELETE FROM nodegroupassignments WHERE nodeid IN ('.join(',', $nodes).')'); + $plugin_data = array(); + foreach ($nodes as $node) + $plugin_data[] = array('id' => $node, 'ownerid' => $id); + $this->ExecHook('node_del_before', $plugin_data); + $this->DB->Execute('DELETE FROM nodes WHERE ownerid=?', array($id)); + $this->ExecHook('node_del_after', $plugin_data); + } // hosting $this->DB->Execute('UPDATE passwd SET ownerid=0 WHERE ownerid=?', array($id)); $this->DB->Execute('UPDATE domains SET ownerid=0 WHERE ownerid=?', array($id)); From cvs w lms.org.pl Tue Oct 18 01:08:03 2011 From: cvs w lms.org.pl (LMS CVS) Date: Tue, 18 Oct 2011 01:08:03 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc (ChangeLog) Message-ID: <20111017230803.18CE4302A040@eftep.altec.pl> Date: Tuesday, October 18, 2011 @ 01:08:03 Author: chilek Path: /cvsroot/lms/doc Modified: ChangeLog - BTS#0000867: execution node_del_{before,after} hooks while deleting owner Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/ChangeLog.diff?&r1=1.1594&r2=1.1595 Index: lms/doc/ChangeLog diff -u lms/doc/ChangeLog:1.1594 lms/doc/ChangeLog:1.1595 --- lms/doc/ChangeLog:1.1594 Mon Oct 17 23:15:56 2011 +++ lms/doc/ChangeLog Tue Oct 18 01:08:02 2011 @@ -1,4 +1,4 @@ -$Id: ChangeLog,v 1.1594 2011/10/17 21:15:56 chilek Exp $ +$Id: ChangeLog,v 1.1595 2011/10/17 23:08:02 chilek Exp $ version ? (????-??-??): @@ -36,7 +36,8 @@ It was quite strongly tested with Smarty 3.1.3 ----------------------------------------------------------------- - quicksearch: fixed search for hosts when exact mac address was entered [chilan] - + - BTS#0000867: execution node_del_{before,after} hooks while deleting owner [chilan] + version 1.11.13 Dira (2011-04-07) - contrib/cutoff2: Fixed "Column 'period' in where clause is ambiguous" [alec] From cvs w lms.org.pl Thu Oct 20 16:22:12 2011 From: cvs w lms.org.pl (LMS CVS) Date: Thu, 20 Oct 2011 16:22:12 +0200 (CEST) Subject: [lms-commits] CVS update of lms/lib (LMS.class.php) Message-ID: <20111020142212.5C098302A040@eftep.altec.pl> Date: Thursday, October 20, 2011 @ 16:22:12 Author: chilek Path: /cvsroot/lms/lib Modified: LMS.class.php - LMS::DeleteCustomer(): typo Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/lib/LMS.class.php.diff?&r1=1.1079&r2=1.1080 Index: lms/lib/LMS.class.php diff -u lms/lib/LMS.class.php:1.1079 lms/lib/LMS.class.php:1.1080 --- lms/lib/LMS.class.php:1.1079 Tue Oct 18 01:08:03 2011 +++ lms/lib/LMS.class.php Thu Oct 20 16:22:12 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: LMS.class.php,v 1.1079 2011/10/17 23:08:03 chilek Exp $ + * $Id: LMS.class.php,v 1.1080 2011/10/20 14:22:12 chilek Exp $ */ // LMS Class - contains internal LMS database functions used @@ -35,7 +35,7 @@ var $cache = array(); // internal cache var $hooks = array(); // registered plugin hooks var $_version = '1.11-cvs'; // class version - var $_revision = '$Revision: 1.1079 $'; + var $_revision = '$Revision: 1.1080 $'; function LMS(&$DB, &$AUTH, &$CONFIG) // class variables setting { @@ -506,7 +506,7 @@ $this->DB->Execute('DELETE FROM customerassignments WHERE customerid=?', array($id)); $this->DB->Execute('DELETE FROM assignments WHERE customerid=?', array($id)); // nodes - $nodes = $this->DB->GetCol('SELECT id FROM nodes WHERE ownerid=?', array(id)); + $nodes = $this->DB->GetCol('SELECT id FROM nodes WHERE ownerid=?', array($id)); if ($nodes) { $this->DB->Execute('DELETE FROM nodegroupassignments WHERE nodeid IN ('.join(',', $nodes).')'); From cvs w lms.org.pl Thu Oct 20 20:09:49 2011 From: cvs w lms.org.pl (LMS CVS) Date: Thu, 20 Oct 2011 20:09:49 +0200 (CEST) Subject: [lms-commits] CVS update of lms (index.php) Message-ID: <20111020180949.28A8C302A040@eftep.altec.pl> Date: Thursday, October 20, 2011 @ 20:09:48 Author: chilek Path: /cvsroot/lms Modified: index.php - Smarty developers change format version string constant even for minor versions Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/index.php.diff?&r1=1.226&r2=1.227 Index: lms/index.php diff -u lms/index.php:1.226 lms/index.php:1.227 --- lms/index.php:1.226 Fri Oct 14 18:08:54 2011 +++ lms/index.php Thu Oct 20 20:09:48 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.226 2011/10/14 16:08:54 chilek Exp $ + * $Id: index.php,v 1.227 2011/10/20 18:09:48 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOUR CONFIG FILE @@ -100,7 +100,7 @@ // test for proper version of Smarty if (constant('Smarty::SMARTY_VERSION')) - $ver_chunks = preg_split('/-/', Smarty::SMARTY_VERSION); + $ver_chunks = preg_split('/[- ]/', Smarty::SMARTY_VERSION); else $ver_chunks = NULL; if (count($ver_chunks) != 2 || version_compare('3.0', $ver_chunks[1]) > 0) From cvs w lms.org.pl Fri Oct 21 15:37:07 2011 From: cvs w lms.org.pl (LMS CVS) Date: Fri, 21 Oct 2011 15:37:07 +0200 (CEST) Subject: [lms-commits] CVS update of lms/templates (chooselocation.html) Message-ID: <20111021133707.E417E302A040@eftep.altec.pl> Date: Friday, October 21, 2011 @ 15:37:07 Author: chilek Path: /cvsroot/lms/templates Modified: chooselocation.html - missed removal of popup_init Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/templates/chooselocation.html.diff?&r1=1.1&r2=1.2 Index: lms/templates/chooselocation.html diff -u lms/templates/chooselocation.html:1.1 lms/templates/chooselocation.html:1.2 --- lms/templates/chooselocation.html:1.1 Wed Aug 31 12:46:46 2011 +++ lms/templates/chooselocation.html Fri Oct 21 15:37:07 2011 @@ -1,5 +1,5 @@ - + @@ -12,7 +12,8 @@ {$xajax} -{popup_init src="img/overlib.js"} + + {if !empty($states)}
    From cvs w lms.org.pl Sat Oct 22 13:03:22 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 22 Oct 2011 13:03:22 +0200 (CEST) Subject: [lms-commits] CVS update of lms (index.php) Message-ID: <20111022110322.C7F78302A040@eftep.altec.pl> Date: Saturday, October 22, 2011 @ 13:03:22 Author: alec Path: /cvsroot/lms Modified: index.php - Use defined() instead of constant() to suppress PHP warning Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/index.php.diff?&r1=1.227&r2=1.228 Index: lms/index.php diff -u lms/index.php:1.227 lms/index.php:1.228 --- lms/index.php:1.227 Thu Oct 20 20:09:48 2011 +++ lms/index.php Sat Oct 22 13:03:22 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.227 2011/10/20 18:09:48 chilek Exp $ + * $Id: index.php,v 1.228 2011/10/22 11:03:22 alec Exp $ */ // REPLACE THIS WITH PATH TO YOUR CONFIG FILE @@ -99,7 +99,7 @@ // test for proper version of Smarty -if (constant('Smarty::SMARTY_VERSION')) +if (defined('Smarty::SMARTY_VERSION')) $ver_chunks = preg_split('/[- ]/', Smarty::SMARTY_VERSION); else $ver_chunks = NULL; @@ -241,7 +241,7 @@ $SMARTY->assign('server', $_SERVER); $SMARTY->display('notfound.html'); } - + if($SESSION->get('lastmodule') != $module) $SESSION->save('lastmodule', $module); } From cvs w lms.org.pl Sat Oct 22 13:22:39 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 22 Oct 2011 13:22:39 +0200 (CEST) Subject: [lms-commits] CVS update of lms/devel (smarty_install.sh) Message-ID: <20111022112239.CE050302A040@eftep.altec.pl> Date: Saturday, October 22, 2011 @ 13:22:39 Author: alec Path: /cvsroot/lms/devel Modified: smarty_install.sh - Use Smarty3 Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/devel/smarty_install.sh.diff?&r1=1.10&r2=1.11 Index: lms/devel/smarty_install.sh diff -u lms/devel/smarty_install.sh:1.10 lms/devel/smarty_install.sh:1.11 --- lms/devel/smarty_install.sh:1.10 Tue Jan 11 08:28:11 2011 +++ lms/devel/smarty_install.sh Sat Oct 22 13:22:39 2011 @@ -3,7 +3,7 @@ # Smarty templates library quick installation (with sources download) # -SMARTYVER="2.6.26" +SMARTYVER="3.1.4" cd ../lib # download From cvs w lms.org.pl Sat Oct 22 13:25:13 2011 From: cvs w lms.org.pl (LMS CVS) Date: Sat, 22 Oct 2011 13:25:13 +0200 (CEST) Subject: [lms-commits] CVS update of lms/doc (ChangeLog) Message-ID: <20111022112513.DB12A302A040@eftep.altec.pl> Date: Saturday, October 22, 2011 @ 13:25:13 Author: alec Path: /cvsroot/lms/doc Modified: ChangeLog - Add warning about required PHP version Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/doc/ChangeLog.diff?&r1=1.1595&r2=1.1596 Index: lms/doc/ChangeLog diff -u lms/doc/ChangeLog:1.1595 lms/doc/ChangeLog:1.1596 --- lms/doc/ChangeLog:1.1595 Tue Oct 18 01:08:02 2011 +++ lms/doc/ChangeLog Sat Oct 22 13:25:13 2011 @@ -1,4 +1,4 @@ -$Id: ChangeLog,v 1.1595 2011/10/17 23:08:02 chilek Exp $ +$Id: ChangeLog,v 1.1596 2011/10/22 11:25:13 alec Exp $ version ? (????-??-??): @@ -35,9 +35,11 @@ WARNING: This update changes required version of Smarty from 2.6 to 3.x. It was quite strongly tested with Smarty 3.1.3 ----------------------------------------------------------------- + WARNING: This update changes required version of PHP to 5.2+ + ----------------------------------------------------------------- - quicksearch: fixed search for hosts when exact mac address was entered [chilan] - BTS#0000867: execution node_del_{before,after} hooks while deleting owner [chilan] - + version 1.11.13 Dira (2011-04-07) - contrib/cutoff2: Fixed "Column 'period' in where clause is ambiguous" [alec] From cvs w lms.org.pl Thu Oct 27 23:08:47 2011 From: cvs w lms.org.pl (LMS CVS) Date: Thu, 27 Oct 2011 23:08:47 +0200 (CEST) Subject: [lms-commits] CVS update of lms/userpanel (index.php) Message-ID: <20111027210847.F3681302A040@eftep.altec.pl> Date: Thursday, October 27, 2011 @ 23:08:47 Author: chilek Path: /cvsroot/lms/userpanel Modified: index.php - Smarty developers change format version string constant even for minor versions Diff URLs: http://cvs.lms.org.pl/viewvc/Development/lms/userpanel/index.php.diff?&r1=1.17&r2=1.18 Index: lms/userpanel/index.php diff -u lms/userpanel/index.php:1.17 lms/userpanel/index.php:1.18 --- lms/userpanel/index.php:1.17 Fri Oct 14 18:09:07 2011 +++ lms/userpanel/index.php Thu Oct 27 23:08:47 2011 @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * - * $Id: index.php,v 1.17 2011/10/14 16:09:07 chilek Exp $ + * $Id: index.php,v 1.18 2011/10/27 21:08:47 chilek Exp $ */ // REPLACE THIS WITH PATH TO YOUR CONFIG FILE @@ -92,7 +92,7 @@ // test for proper version of Smarty if (constant('Smarty::SMARTY_VERSION')) - $ver_chunks = preg_split('/-/', Smarty::SMARTY_VERSION); + $ver_chunks = preg_split('/[- ]/', Smarty::SMARTY_VERSION); else $ver_chunks = NULL; if (count($ver_chunks) != 2 || version_compare('3.0', $ver_chunks[1]) > 0)