translation update
This commit is contained in:
parent
cf43372f72
commit
03394bb8a1
|
@ -3,7 +3,7 @@
|
|||
$Id$
|
||||
|
||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
Copyright (C) 2003 - 2011 Roland Gruber
|
||||
Copyright (C) 2003 - 2012 Roland Gruber
|
||||
|
||||
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
|
||||
|
@ -103,7 +103,7 @@ class lamList {
|
|||
public function __construct($type) {
|
||||
$this->type = $type;
|
||||
$this->labels = array(
|
||||
'nav' => _("%s object(s) found"),
|
||||
'nav' => _("Object count: %s"),
|
||||
'error_noneFound' => _("No objects found!"),
|
||||
'newEntry' => _("New object"),
|
||||
'deleteEntry' => _("Delete selected objects"));
|
||||
|
|
|
@ -135,7 +135,7 @@ class lamAsteriskExtList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s extension(s) found"),
|
||||
'nav' => _("Extension count: %s"),
|
||||
'error_noneFound' => _("No Asterisk extensions found."),
|
||||
'newEntry' => _("New extension"),
|
||||
'deleteEntry' => _("Delete selected extensions"));
|
||||
|
|
|
@ -136,7 +136,7 @@ class lamAsteriskExtNewUIList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s extension(s) found"),
|
||||
'nav' => _("Extension count: %s"),
|
||||
'error_noneFound' => _("No Asterisk extensions found."),
|
||||
'newEntry' => _("New extension"),
|
||||
'deleteEntry' => _("Delete selected extensions"));
|
||||
|
|
|
@ -156,7 +156,7 @@ class lamDHCPList extends lamList {
|
|||
public function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s DHCP(s) found"),
|
||||
'nav' => _("DHCP count: %s"),
|
||||
'error_noneFound' => _("No DHCPs found!"),
|
||||
'newEntry' => _("New DHCP"),
|
||||
'dhcpDefaults' => _("DHCP settings"),
|
||||
|
|
|
@ -171,7 +171,7 @@ class lamGroupList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s group(s) found"),
|
||||
'nav' => _("Group count: %s"),
|
||||
'error_noneFound' => _("No groups found!"),
|
||||
'newEntry' => _("New group"),
|
||||
'deleteEntry' => _("Delete selected groups"));
|
||||
|
|
|
@ -158,7 +158,7 @@ class lamHostList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s host(s) found"),
|
||||
'nav' => _("Host count: %s"),
|
||||
'error_noneFound' => _("No hosts found!"),
|
||||
'newEntry' => _("New host"),
|
||||
'deleteEntry' => _("Delete selected hosts"));
|
||||
|
|
|
@ -132,7 +132,7 @@ class lamMailAliasList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s alias(es) found"),
|
||||
'nav' => _("Alias count: %s"),
|
||||
'error_noneFound' => _("No aliases found!"),
|
||||
'newEntry' => _("New alias"),
|
||||
'deleteEntry' => _("Delete selected aliases"));
|
||||
|
|
|
@ -155,7 +155,7 @@ class lamNetgroupList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s group(s) found"),
|
||||
'nav' => _("Group count: %s"),
|
||||
'error_noneFound' => _("No groups found!"),
|
||||
'newEntry' => _("New group"),
|
||||
'deleteEntry' => _("Delete selected groups"));
|
||||
|
|
|
@ -153,7 +153,7 @@ class lamSmbDomainList extends lamList {
|
|||
function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s domain(s) found"),
|
||||
'nav' => _("Domain count: %s"),
|
||||
'error_noneFound' => _("No domains found!"),
|
||||
'newEntry' => _("New domain"),
|
||||
'deleteEntry' => _("Delete selected domains"));
|
||||
|
|
|
@ -194,7 +194,7 @@ class lamUserList extends lamList {
|
|||
public function __construct($type) {
|
||||
parent::__construct($type);
|
||||
$this->labels = array(
|
||||
'nav' => _("%s user(s) found"),
|
||||
'nav' => _("User count: %s"),
|
||||
'error_noneFound' => _("No users found!"),
|
||||
'newEntry' => _("New user"),
|
||||
'deleteEntry' => _("Delete selected users"));
|
||||
|
|
Loading…
Reference in New Issue