translation update

This commit is contained in:
Roland Gruber 2012-02-05 19:03:25 +00:00
parent 55b115de78
commit 2d2e732f9c
10 changed files with 25 additions and 23 deletions

View File

@ -106,7 +106,7 @@ class lamList {
'nav' => _("%s object(s) found"), 'nav' => _("%s object(s) found"),
'error_noneFound' => _("No objects found!"), 'error_noneFound' => _("No objects found!"),
'newEntry' => _("New object"), 'newEntry' => _("New object"),
'deleteEntry' => _("Delete object")); 'deleteEntry' => _("Delete selected objects"));
$this->configOptions = $this->listGetAllConfigOptions(); $this->configOptions = $this->listGetAllConfigOptions();
$this->listReadOptionsFromCookie(); $this->listReadOptionsFromCookie();
} }

View File

@ -3,8 +3,8 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
Copyright (C) 2009 Pozdnyak Pavel Copyright (C) 2009 Pozdnyak Pavel
2010 Roland Gruber 2010 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -27,6 +27,7 @@ $Id$
* *
* @package types * @package types
* @author Pozdnyak Pavel * @author Pozdnyak Pavel
* @author Roland Gruber
*/ */
/** /**
@ -135,9 +136,9 @@ class lamAsteriskExtList extends lamList {
parent::__construct($type); parent::__construct($type);
$this->labels = array( $this->labels = array(
'nav' => _("%s extension(s) found"), 'nav' => _("%s extension(s) found"),
'error_noneFound' => _("No extension(s) found!"), 'error_noneFound' => _("No Asterisk extensions found."),
'newEntry' => _("New extension"), 'newEntry' => _("New extension"),
'deleteEntry' => _("Delete extension(s)")); 'deleteEntry' => _("Delete selected extensions"));
} }
} }

View File

@ -4,8 +4,8 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
Copyright (C) 2009 Pozdnyak Pavel Copyright (C) 2009 Pozdnyak Pavel
2010 Roland Gruber 2010 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -28,6 +28,7 @@
* *
* @package types * @package types
* @author Pozdnyak Pavel * @author Pozdnyak Pavel
* @author Roland Gruber
*/ */
/** /**
@ -136,9 +137,9 @@ class lamAsteriskExtNewUIList extends lamList {
parent::__construct($type); parent::__construct($type);
$this->labels = array( $this->labels = array(
'nav' => _("%s extension(s) found"), 'nav' => _("%s extension(s) found"),
'error_noneFound' => _("No extension(s) found!"), 'error_noneFound' => _("No Asterisk extensions found."),
'newEntry' => _("New extension"), 'newEntry' => _("New extension"),
'deleteEntry' => _("Delete extension(s)")); 'deleteEntry' => _("Delete selected extensions"));
} }
protected function listGetParams() { protected function listGetParams() {

View File

@ -4,7 +4,7 @@ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2008 Thomas Manninger Copyright (C) 2008 Thomas Manninger
2009 - 2011 Roland Gruber 2009 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -160,7 +160,7 @@ class lamDHCPList extends lamList {
'error_noneFound' => _("No DHCPs found!"), 'error_noneFound' => _("No DHCPs found!"),
'newEntry' => _("New DHCP"), 'newEntry' => _("New DHCP"),
'dhcpDefaults' => _("DHCP settings"), 'dhcpDefaults' => _("DHCP settings"),
'deleteEntry' => _("Delete DHCP(s)")); 'deleteEntry' => _("Delete selected DHCP entries"));
} }
/** /**

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2005 - 2010 Roland Gruber Copyright (C) 2005 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -174,7 +174,7 @@ class lamGroupList extends lamList {
'nav' => _("%s group(s) found"), 'nav' => _("%s group(s) found"),
'error_noneFound' => _("No groups found!"), 'error_noneFound' => _("No groups found!"),
'newEntry' => _("New group"), 'newEntry' => _("New group"),
'deleteEntry' => _("Delete group(s)")); 'deleteEntry' => _("Delete selected groups"));
} }
/** /**

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2005 - 2009 Roland Gruber Copyright (C) 2005 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -161,7 +161,7 @@ class lamHostList extends lamList {
'nav' => _("%s host(s) found"), 'nav' => _("%s host(s) found"),
'error_noneFound' => _("No hosts found!"), 'error_noneFound' => _("No hosts found!"),
'newEntry' => _("New host"), 'newEntry' => _("New host"),
'deleteEntry' => _("Delete host(s)")); 'deleteEntry' => _("Delete selected hosts"));
} }
} }

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2005 - 2010 Roland Gruber Copyright (C) 2005 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -135,7 +135,7 @@ class lamMailAliasList extends lamList {
'nav' => _("%s alias(es) found"), 'nav' => _("%s alias(es) found"),
'error_noneFound' => _("No aliases found!"), 'error_noneFound' => _("No aliases found!"),
'newEntry' => _("New alias"), 'newEntry' => _("New alias"),
'deleteEntry' => _("Delete alias(es)")); 'deleteEntry' => _("Delete selected aliases"));
} }
} }

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2009 - 2010 Roland Gruber Copyright (C) 2009 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -158,7 +158,7 @@ class lamNetgroupList extends lamList {
'nav' => _("%s group(s) found"), 'nav' => _("%s group(s) found"),
'error_noneFound' => _("No groups found!"), 'error_noneFound' => _("No groups found!"),
'newEntry' => _("New group"), 'newEntry' => _("New group"),
'deleteEntry' => _("Delete group(s)")); 'deleteEntry' => _("Delete selected groups"));
} }
} }

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2005 - 2010 Roland Gruber Copyright (C) 2005 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -156,7 +156,7 @@ class lamSmbDomainList extends lamList {
'nav' => _("%s domain(s) found"), 'nav' => _("%s domain(s) found"),
'error_noneFound' => _("No domains found!"), 'error_noneFound' => _("No domains found!"),
'newEntry' => _("New domain"), 'newEntry' => _("New domain"),
'deleteEntry' => _("Delete domain(s)")); 'deleteEntry' => _("Delete selected domains"));
} }
} }

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2005 - 2011 Roland Gruber Copyright (C) 2005 - 2012 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -197,7 +197,7 @@ class lamUserList extends lamList {
'nav' => _("%s user(s) found"), 'nav' => _("%s user(s) found"),
'error_noneFound' => _("No users found!"), 'error_noneFound' => _("No users found!"),
'newEntry' => _("New user"), 'newEntry' => _("New user"),
'deleteEntry' => _("Delete user(s)")); 'deleteEntry' => _("Delete selected users"));
} }
/** /**