translation update

This commit is contained in:
Roland Gruber 2012-02-09 17:08:39 +00:00
parent cf43372f72
commit 03394bb8a1
10 changed files with 11 additions and 11 deletions

View File

@ -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"));

View File

@ -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"));

View File

@ -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"));

View File

@ -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"),

View File

@ -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"));

View File

@ -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"));

View File

@ -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"));

View File

@ -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"));

View File

@ -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"));

View File

@ -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"));