summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 94255bf)
raw | patch | inline | side by side (parent: 94255bf)
author | opensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 1 Nov 2005 10:30:05 +0000 (10:30 +0000) | ||
committer | opensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 1 Nov 2005 10:30:05 +0000 (10:30 +0000) |
getxls.php5 need also to be fixed
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1776 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1776 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/html/getxls.php b/html/getxls.php
index 4128773024a5d8b4b7d4ec27dd32b167e8549574..b54d3862816dc25c24f459f53c9baef523113e1a 100644 (file)
--- a/html/getxls.php
+++ b/html/getxls.php
Copyright (C) 2003 Cajus Pollmeier
Copyright (C) 2005 Guillaume Delecourt
Copyright (C) 2005 Vincent Seynhaeve
+ Copyright (C) 2005 Benoit Mortier
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
$user= $ldap->gen_xls($dn,"(objectClass=*)",array("uid","dateOfBirth","gender","givenName","preferredLanguage"));
$intitul=array(_("Birthday").":", _("Sexe").":", _("Name")."/"._("Firstname").":",_("Language").":");
- $worksheet=& $workbook->addworksheet('Users');
+ $worksheet=& $workbook->addworksheet(_("Users"));
$worksheet->set_column('A:B', 32);
{
if($i>1)
$worksheet->write('A'.$r++,"");
- $worksheet->write('A'.$r++,"uid : ".$user[$i][0],$title_bold);
+ $worksheet->write('A'.$r++,_("User ID").": ".$user[$i][0],$title_bold);
+
for($j=1;$j<5;$j++)
{
$r++;
break;
case "ou=groups,": $groups= $ldap->gen_xls($dn,"(objectClass=*)",array("cn","memberUid"),TRUE,1);
- $intitul=array(_("Members:"));
- $worksheet =& $workbook->addworksheet('Groups');
+ $intitul=array(_("Members").":");
+ $worksheet =& $workbook->addworksheet(_("Groups"));
$worksheet->set_column('A:B', 32);
//count number of groups
$r=1;
for($i=1;$i<$groups_nbr;$i++)
{
- $worksheet->write('A'.$r++,"uid : ".$groups[$i][0][0],$title_bold);
+ $worksheet->write('A'.$r++,_("User ID").": ".$groups[$i][0][0],$title_bold);
for($j=1;$j<=2;$j++)
{
$r++;
{
if($i>1)
$worksheet->write('A'.$r++,"");
- $worksheet->write('A'.$r++,"cn : ".$computers[$i][0],$title_bold);
+ $worksheet->write('A'.$r++,_("Common Name").": ".$computers[$i][0],$title_bold);
for($j=1;$j<3;$j++)
{
$r++;
case "dc=addressbook,": //data about addressbook
$address= $ldap->gen_xls($dn,"(objectClass=*)",array("cn","displayName","facsimileTelephoneNumber","givenName","homePhone","homePostalAddress","initials","l","mail","mobile","o","ou","pager","telephoneNumber","postalAddress","postalCode","sn","st","title"));
- $intitul=array(_("Common name").":",_("Display Name").":",_("Fax").":",_("Name")."/"._("Firstname").":",_("Home phone").":",_("Home postal address").":",_("Initiales").":",_("Location").":",_("Mail address").":",_("Mobile phone").":",_("City").":",_("Postal address").":",_("Pager").":",_("Phone number").":",_("Adress").":",_("Postal code").":",_("Surename").":",_("State").":",_("Function").":");
+ $intitul=array(_("Common name").":",_("Display Name").":",_("Fax").":",_("Name")."/"._("Firstname").":",_("Home phone").":",_("Home postal address").":",_("Initials").":",_("Location").":",_("Mail address").":",_("Mobile phone").":",_("City").":",_("Postal address").":",_("Pager").":",_("Phone number").":",_("Adress").":",_("Postal code").":",_("Surename").":",_("State").":",_("Function").":");
$worksheet =& $workbook->addworksheet(_("Servers"));
$worksheet->set_column('A:B', 32);
{
if($i>1)
$worksheet->write('A'.$r++,"");
- $worksheet->write('A'.$r++,"cn : ".$address[$i][0],$title_bold);
+ $worksheet->write('A'.$r++,_("Common Name").": ".$address[$i][0],$title_bold);
for($j=1;$j<19;$j++)
{
$r++;
$fname = tempnam("/tmp", "demo.xls");
$workbook =& new writeexcel_workbook($fname);
- $worksheet =& $workbook->addworksheet('Users');
- $worksheet2 =& $workbook->addworksheet('Groups');
- $worksheet3 =& $workbook->addworksheet('Servers');
- $worksheet4 =& $workbook->addworksheet('Computers');
- $worksheet5 =& $workbook->addworksheet('Adressbook');
+ $worksheet =& $workbook->addworksheet(_("Users"));
+ $worksheet2 =& $workbook->addworksheet(_("Groups"));
+ $worksheet3 =& $workbook->addworksheet(_("Servers"));
+ $worksheet4 =& $workbook->addworksheet(_("Computers"));
+ $worksheet5 =& $workbook->addworksheet(_("Adressbook"));
$worksheet->set_column('A:B', 32);
$worksheet2->set_column('A:B', 32);
{
if($i>1)
$worksheet->write('A'.$r++,"");
- $worksheet->write('A'.$r++,"uid : ".$user[$i][0],$title_bold);
+ $worksheet->write('A'.$r++,_("User ID").": ".$user[$i][0],$title_bold);
for($j=1;$j<5;$j++)
{
$r++;
$r=1;
for($i=1;$i<$groups_nbr;$i++)
{
- $worksheet2->write('A'.$r++,"uid : ".$groups[$i][0][0],$title_bold);
+ $worksheet2->write('A'.$r++,_("User ID").": ".$groups[$i][0][0],$title_bold);
for($j=1;$j<=2;$j++)
{
$r++;
//count number of servers
$servers_nbr=count($servers);
$r=1;
- $worksheet3->write('A'.$r++,"Servers : ",$title_bold);
+ $worksheet3->write('A'.$r++,_("Servers").": ",$title_bold);
for($i=1;$i<$servers_nbr;$i++)
{
for($j=0;$j<1;$j++)
{
if($i>1)
$worksheet->write('A'.$r++,"");
- $worksheet4->write('A'.$r++,"cn : ".$computers[$i][0],$title_bold);
+ $worksheet4->write('A'.$r++,_("Common Name").": ".$computers[$i][0],$title_bold);
for($j=1;$j<3;$j++)
{
$r++;
{
if($i>1)
$worksheet5->write('A'.$r++,"");
- $worksheet5->write('A'.$r++,"cn : ".$address[$i][0],$title_bold);
+ $worksheet5->write('A'.$r++,_("Common Name").": ".$address[$i][0],$title_bold);
for($j=1;$j<19;$j++)
{
$r++;
index 1b4535565a40124fdebdc7581b303832ace7bf26..f45f08d19ee5b91099d871036bbf38057caba8e3 100644 (file)
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Fax"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Name"
msgid "Set"
msgstr "Setzen"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Geschlecht"
msgid "Organizational information"
msgstr "Angabe zur Organisationseinheit"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Organisation"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Pager"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Ort"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Land"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "Postleitzahl"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Beschreibung"
msgstr "FAX-Nummer auf die GOfax reagieren soll"
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Sprache"
msgstr "Persönlich"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Initialien"
msgstr "Firma"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Stadt"
msgid "Cell phone"
msgstr "Mobiltelefon"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Telefon (zu Hause)"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr "Benutzer ID"
msgstr "Gruppenverwaltung"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Gruppen"
msgstr "Benutzerverwaltung"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Benutzer"
msgid "UNIX accounts"
msgstr "Unix-Konten"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr "Server"
msgid "Lifetime (in days)"
msgstr "Lebenszeit (in Tagen)"
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
msgid "Phone number"
msgstr "Telefonnummer"
msgid "Index"
msgstr "Index"
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
#, fuzzy
msgid "Sexe"
msgstr "Geschlecht"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
#, fuzzy
msgid "Firstname"
msgstr "Listenname"
-#: html/getxls.php:77
+#: html/getxls.php:79 html/getxls.php:197
#, fuzzy
-msgid "Members:"
+msgid "Members"
msgstr "Zusammengefasste Objekte"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
#, fuzzy
msgid "Computers"
msgstr "Zähle Benutzer"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Name des Standortes:"
+
+#: html/getxls.php:126
#, fuzzy
msgid "Server Name"
msgstr "Server-Name"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Common name"
msgstr "Name des Standortes:"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Display Name"
msgstr "Angezeigter Name"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr ""
-#: html/getxls.php:147
-#, fuzzy
-msgid "Initiales"
-msgstr "Initialien"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mail address"
msgstr "MAC-Adresse"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mobile phone"
msgstr "Telefon (zu Hause)"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Postal address"
msgstr "Postleitzahl"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Adress"
msgstr "Adresse"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Server-Name"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Function"
msgstr "Funktion"
-#: html/getxls.php:192
+#: html/getxls.php:194
#, fuzzy
msgid "BirthDate"
msgstr "Datum"
-#: html/getxls.php:195
-#, fuzzy
-msgid "Members"
-msgstr "Zusammengefasste Objekte"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "DisplayName"
msgstr "Angezeigter Name"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Phone Number"
msgstr "Telefonnummer"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Adress"
msgstr "Postleitzahl"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Email address"
msgstr "Primäre Adresse"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "mobile"
msgstr "Mobiltelefon"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Organizational Unit"
msgstr "Organisationsbezogen"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Address"
msgstr "Postleitzahl"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Code"
msgstr "Postleitzahl"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Sn"
msgstr "S"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "st"
msgstr "setzen"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Title"
msgstr "Datei"
+#: html/getxls.php:215
+#, fuzzy
+msgid "Adressbook"
+msgstr "Adressbuch"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "Die SQL-Datenbank kann nicht erreicht werden!"
"Versionen). In einigen Fällen ist es hilfreich, das 'error_reporting' zu "
"aktivieren (dies kann jedoch ein Sicherheitsrisiko darstellen)."
+#, fuzzy
+#~ msgid "Members:"
+#~ msgstr "Zusammengefasste Objekte"
+
+#, fuzzy
+#~ msgid "Initiales"
+#~ msgstr "Initialien"
+
#~ msgid "Printer driver information file setup"
#~ msgstr "Einrichtung der Informations-Datei des Drucker-Treibers"
index bd6497816898a8f80a9f385a9af0b62e3fa102a3..d1527b016c081dba57b7ad6d55e6c0d8da050e41 100644 (file)
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Fax"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Nombre"
msgid "Set"
msgstr "por debajo"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Sexo"
msgid "Organizational information"
msgstr "Información organizativa"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Organización"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Dispositivo de aviso"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Localización"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Estado"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "Código Postal"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Descripción"
msgstr "Numero de fax que activa GOfax"
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Lenguaje"
msgstr "Personal"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Iniciales"
msgstr "Compañia"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Ciudad"
msgid "Cell phone"
msgstr "Móvil"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Teléfono particular"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr "Identificador (ID) de usuario"
msgstr "Administración de grupos"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Grupos"
msgstr "Administración de Usuarios"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Usuarios"
msgid "UNIX accounts"
msgstr "Cuentas UNIX"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr "Servidores"
msgid "Lifetime (in days)"
msgstr ""
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
#, fuzzy
msgid "Phone number"
msgstr "Números de teléfonos"
msgid "Index"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
#, fuzzy
msgid "Sexe"
msgstr "Sexo"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
#, fuzzy
msgid "Firstname"
msgstr "Nombre de la lista"
-#: html/getxls.php:77
+#: html/getxls.php:79 html/getxls.php:197
#, fuzzy
-msgid "Members:"
+msgid "Members"
msgstr "Objetos miembro"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
#, fuzzy
msgid "Computers"
msgstr "incompleto"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Nombre de la localización"
+
+#: html/getxls.php:126
#, fuzzy
msgid "Server Name"
msgstr "Nombre del servidor"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Common name"
msgstr "Nombre de la localización"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Display Name"
msgstr "Nombre mostrado"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr ""
-#: html/getxls.php:147
-#, fuzzy
-msgid "Initiales"
-msgstr "Iniciales"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mail address"
msgstr "Dirección MAC"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mobile phone"
msgstr "Teléfono particular"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Postal address"
msgstr "Código Postal"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Adress"
msgstr "Dirección"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Nombre del servidor"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Function"
msgstr "Función"
-#: html/getxls.php:192
+#: html/getxls.php:194
#, fuzzy
msgid "BirthDate"
msgstr "Fecha"
-#: html/getxls.php:195
-#, fuzzy
-msgid "Members"
-msgstr "Objetos miembro"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "DisplayName"
msgstr "Nombre mostrado"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Phone Number"
msgstr "Números de teléfonos"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Adress"
msgstr "Código Postal"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Email address"
msgstr "Cuenta Principal"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "mobile"
msgstr "Teléfono Móvil"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Organizational Unit"
msgstr "De organización"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Address"
msgstr "Código Postal"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Code"
msgstr "Código Postal"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Sn"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "st"
msgstr "Borrar"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Title"
msgstr "Archivo"
+#: html/getxls.php:215
+#, fuzzy
+msgid "Adressbook"
+msgstr "Libreta de direcciones"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "No puedo conectar al servidor de base de datos."
"(But it could be a security risk) "
msgstr ""
+#, fuzzy
+#~ msgid "Members:"
+#~ msgstr "Objetos miembro"
+
+#, fuzzy
+#~ msgid "Initiales"
+#~ msgstr "Iniciales"
+
#, fuzzy
#~ msgid "Current used information setup"
#~ msgstr "Información genérica del usuario"
index 026bbcb43c129c60de820b4c263b921da69a7262..2ec6b97dbcc397a9181b8c2975c9c9fb09a9d256 100644 (file)
# translation of messages.po to
# translation of messages.po to
# translation of messages.po to
+# translation of messages.po to
# translation of messages.po to French
# Benoit Mortier <benoit.mortier@opensides.be>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: messages\n"
-"PO-Revision-Date: 2005-10-31 14:54+0100\n"
+"PO-Revision-Date: 2005-11-01 12:13+0100\n"
"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
"Language-Team: <fr@li.org>\n"
"MIME-Version: 1.0\n"
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Fax"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Nom"
msgid "Set"
msgstr "Rempli"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Sexe"
msgid "Organizational information"
msgstr "Informations sur l'entreprise"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Entreprise"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Bip"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Lieu"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Département"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "Code postal"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Description"
msgstr "Numéro de fax pour lesquels GOfax s'activera"
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Langue"
msgstr "Personnel"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Initiales"
msgstr "Société"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Ville"
msgid "Cell phone"
msgstr "GSM"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Téléphone personnel"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr "ID de l'utilisateur"
msgstr "Administration du groupe"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Groupes"
msgstr "Administration des utilisateurs"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Utilisateurs"
msgid "UNIX accounts"
msgstr "Comptes UNIX"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr "Serveurs"
msgid "Lifetime (in days)"
msgstr "Durée (en jours)"
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
msgid "Phone number"
msgstr "Numéro de téléphone"
msgid "Index"
msgstr "Index"
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr "Anniversaire"
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Sexe"
msgstr "Sexe"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
msgid "Firstname"
msgstr "Nom de Famille"
-#: html/getxls.php:77
-msgid "Members:"
+#: html/getxls.php:79 html/getxls.php:197
+msgid "Members"
msgstr "Membres"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
msgid "Computers"
msgstr "Ordinateurs"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Nom complet"
+
+#: html/getxls.php:126
msgid "Server Name"
msgstr "Nom du serveur"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Common name"
msgstr "Nom complet"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Display Name"
msgstr "Nom à afficher"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr "Adresse postale personelle"
-#: html/getxls.php:147
-msgid "Initiales"
-msgstr "Initiales"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Mail address"
msgstr "Adresse de messagerie"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Mobile phone"
msgstr "GSM"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Postal address"
msgstr "Adresse postale"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Adress"
msgstr "Addresse"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Surnom"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Function"
msgstr "Fonction"
-#: html/getxls.php:192
+#: html/getxls.php:194
msgid "BirthDate"
msgstr "Anniversaire"
-#: html/getxls.php:195
-msgid "Members"
-msgstr "Membres"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr "id de l'utilisateur"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "DisplayName"
msgstr "Nom affiché"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Phone Number"
msgstr "Numéro de téléphone"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Adress"
msgstr "Adresse Postale"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Email address"
msgstr "Adresse de messagerie"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "mobile"
msgstr "GSM"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Organizational Unit"
msgstr "Département"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Address"
msgstr "Adresse postale"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Code"
msgstr "Code postal"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Sn"
msgstr "sn"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "st"
msgstr "Etat"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Title"
msgstr "Titre"
+#: html/getxls.php:215
+msgid "Adressbook"
+msgstr "Carnet d'adresses"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "Impossible de se connecter au serveur de base de données!"
index 36fd339ec642dd299a3ffd2f87c42f26da8c0ded..caa9e5537d2573103610592703890b9afb2c1314 100644 (file)
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Fax"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Cognome"
msgid "Set"
msgstr "Imposta"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Sesso"
msgid "Organizational information"
msgstr "Informazioni organizzazione"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Organizzazione"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Pager"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Località"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Stato"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "CAP"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Descrizione"
msgstr ""
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Lingua"
msgstr "Personale"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Iniziali"
msgstr "Azienda"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Città"
msgid "Cell phone"
msgstr "Cellolare"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Telefono privato"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr ""
msgstr "Amministrazione dei gruppi di utenti"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Gruppi di utenti"
msgstr "Amministrazione utenti"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Utenti"
msgid "UNIX accounts"
msgstr "Account Unix"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr ""
msgid "Lifetime (in days)"
msgstr ""
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
#, fuzzy
msgid "Phone number"
msgstr "Numeri di telefono"
msgid "Index"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
#, fuzzy
msgid "Sexe"
msgstr "Sesso"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
#, fuzzy
msgid "Firstname"
msgstr "Liste di blocco"
-#: html/getxls.php:77
+#: html/getxls.php:79 html/getxls.php:197
#, fuzzy
-msgid "Members:"
+msgid "Members"
msgstr "Oggetti membri"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
#, fuzzy
msgid "Computers"
msgstr "incompleto"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Nome locazione"
+
+#: html/getxls.php:126
#, fuzzy
msgid "Server Name"
msgstr "Server"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Common name"
msgstr "Nome locazione"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Display Name"
msgstr "Mostra il nome"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr ""
-#: html/getxls.php:147
-#, fuzzy
-msgid "Initiales"
-msgstr "Iniziali"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mail address"
msgstr "Indirizzo principale"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mobile phone"
msgstr "Telefono privato"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Postal address"
msgstr "CAP"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Adress"
msgstr "Indirizzo"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Script path"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Function"
msgstr "funzione"
-#: html/getxls.php:192
+#: html/getxls.php:194
#, fuzzy
msgid "BirthDate"
msgstr "Data"
-#: html/getxls.php:195
-#, fuzzy
-msgid "Members"
-msgstr "Oggetti membri"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "DisplayName"
msgstr "Mostra il nome"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Phone Number"
msgstr "Numeri di telefono"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Adress"
msgstr "CAP"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Email address"
msgstr "Indirizzo principale"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "mobile"
msgstr "Cellulare"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Organizational Unit"
msgstr "Organizzazione"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Address"
msgstr "CAP"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Code"
msgstr "CAP"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Sn"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "st"
msgstr "reset"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Title"
msgstr "scrivere"
+#: html/getxls.php:215
+#, fuzzy
+msgid "Adressbook"
+msgstr "Rubrica"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "Impossibile connettersi al server del database!"
"(But it could be a security risk) "
msgstr ""
+#, fuzzy
+#~ msgid "Members:"
+#~ msgstr "Oggetti membri"
+
+#, fuzzy
+#~ msgid "Initiales"
+#~ msgstr "Iniziali"
+
#, fuzzy
#~ msgid "Current used information setup"
#~ msgstr "Informazioni generiche"
diff --git a/locale/messages.po b/locale/messages.po
index 82d2acbbc0afbc36cabea6240eb5ee91e79b12b4..50629ea4785aa91382b6ffb1d31e09ce783f3c33 100644 (file)
--- a/locale/messages.po
+++ b/locale/messages.po
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr ""
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr ""
msgid "Set"
msgstr ""
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr ""
msgid "Organizational information"
msgstr ""
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr ""
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr ""
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr ""
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr ""
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr ""
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr ""
msgstr ""
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr ""
msgstr ""
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr ""
msgstr ""
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr ""
msgid "Cell phone"
msgstr ""
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr ""
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr ""
msgstr ""
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr ""
msgstr ""
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr ""
msgid "UNIX accounts"
msgstr ""
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr ""
msgid "Lifetime (in days)"
msgstr ""
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
msgid "Phone number"
msgstr ""
msgid "Index"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Sexe"
msgstr ""
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
msgid "Firstname"
msgstr ""
-#: html/getxls.php:77
-msgid "Members:"
+#: html/getxls.php:79 html/getxls.php:197
+msgid "Members"
msgstr ""
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
msgid "Computers"
msgstr ""
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+msgid "Common Name"
+msgstr ""
+
+#: html/getxls.php:126
msgid "Server Name"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Common name"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Display Name"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr ""
-#: html/getxls.php:147
-msgid "Initiales"
-msgstr ""
-
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Mail address"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Mobile phone"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Postal address"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Adress"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Surename"
msgstr ""
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Function"
msgstr ""
-#: html/getxls.php:192
+#: html/getxls.php:194
msgid "BirthDate"
msgstr ""
-#: html/getxls.php:195
-msgid "Members"
-msgstr ""
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "DisplayName"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Phone Number"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Adress"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Email address"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "mobile"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Organizational Unit"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Address"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Postal Code"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Sn"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "st"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Title"
msgstr ""
+#: html/getxls.php:215
+msgid "Adressbook"
+msgstr ""
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr ""
index d4e0e827fec909294ba292658a43a41c308e516c..bb1bed2953779a84d30c3eff80967c0334ed21dc 100644 (file)
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Fax"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Naam"
msgid "Set"
msgstr "Stel in"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Geslacht"
msgid "Organizational information"
msgstr "Organisatie informatie"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Organisatie"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Pieper"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Plaats"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Provincie"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "Postcode"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Omschrijving"
msgstr "Fax nummer waarop GOfax moet reageren"
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Taal"
msgstr "Persoonlijk"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Initialen"
msgstr "Bedrijf"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Plaats"
msgid "Cell phone"
msgstr "GSM"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Telefoon Privé"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr "Gebruikers ID"
msgstr "Groepen beheer"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Groepen"
msgstr "Gebruikersbeheer"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Gebruikers"
msgid "UNIX accounts"
msgstr "Unix accounts"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr "Servers"
msgid "Lifetime (in days)"
msgstr "Geldigheidsduur (in dagen)"
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
msgid "Phone number"
msgstr "Telefoonnummer"
msgid "Index"
msgstr "Index"
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr "Geboortedatum"
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Sexe"
msgstr "Geslacht"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
msgid "Firstname"
msgstr "Voornaam"
-#: html/getxls.php:77
+#: html/getxls.php:79 html/getxls.php:197
#, fuzzy
-msgid "Members:"
+msgid "Members"
msgstr "Lidmaatschap objecten"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
msgid "Computers"
msgstr "Computers"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Algemene naam"
+
+#: html/getxls.php:126
#, fuzzy
msgid "Server Name"
msgstr "Servernaam"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Common name"
msgstr "Algemene naam"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Display Name"
msgstr "Getoonde naam"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr "Adres thuis"
-#: html/getxls.php:147
-#, fuzzy
-msgid "Initiales"
-msgstr "Initialen"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mail address"
msgstr "Hardware adres (MAC)"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mobile phone"
msgstr "Telefoon Privé"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Postal address"
msgstr "Adres thuis"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Adress"
msgstr "Adres"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Servernaam"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Function"
msgstr "functie"
-#: html/getxls.php:192
+#: html/getxls.php:194
#, fuzzy
msgid "BirthDate"
msgstr "Geboortedatum"
-#: html/getxls.php:195
-#, fuzzy
-msgid "Members"
-msgstr "Lidmaatschap objecten"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "DisplayName"
msgstr "Getoonde naam"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Phone Number"
msgstr "Telefoonnummer"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Adress"
msgstr "Postcode"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Email address"
msgstr "Primair adres"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "mobile"
msgstr "GSM"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Organizational Unit"
msgstr "Bedrijfsmatig"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Address"
msgstr "Adres thuis"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Code"
msgstr "Postcode"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Sn"
msgstr "SC"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "st"
msgstr "stel in"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Title"
msgstr "Bestand"
+#: html/getxls.php:215
+#, fuzzy
+msgid "Adressbook"
+msgstr "Adresboek"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "Kan niet verbinden met de database server!"
"In sommige gevallen kan het handig zijn om foutrapportage aan te zetten "
"(maar dit kan een veiligheidsrisico vormen) "
+#, fuzzy
+#~ msgid "Members:"
+#~ msgstr "Lidmaatschap objecten"
+
+#, fuzzy
+#~ msgid "Initiales"
+#~ msgstr "Initialen"
+
#~ msgid "Printer driver information file setup"
#~ msgstr "Printer driver informatie bestand instellingen"
index 05f7ce1fb2ef3dd13362dd2aab5a92432265e202..9917691658d9557de5b6b82a2caefc24ca4877b8 100644 (file)
#: plugins/gofax/faxaccount/generic.tpl:10
#: plugins/addons/addressbook/contents.tpl:14
#: plugins/admin/users/class_userManagement.inc:732
-#: plugins/admin/departments/generic.tpl:62 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/admin/departments/generic.tpl:62 html/getxls.php:149
+#: html/getxls.php:206
msgid "Fax"
msgstr "Факс"
#: plugins/admin/fai/faiScript.tpl:9 plugins/admin/fai/faiVariableEntry.tpl:9
#: plugins/admin/fai/faiTemplate.tpl:9 plugins/admin/fai/faiHookEntry.tpl:9
#: plugins/admin/fai/faiTemplateEntry.tpl:7 plugins/admin/fai/faiHook.tpl:9
-#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:53 html/getxls.php:147
-#: html/getxls.php:192 html/getxls.php:201 html/getxls.php:204
+#: plugins/gofon/macro/parameter.tpl:5 html/getxls.php:54 html/getxls.php:149
+#: html/getxls.php:194 html/getxls.php:203 html/getxls.php:206
msgid "Name"
msgstr "Фамилия"
msgid "Set"
msgstr "Установить"
-#: plugins/personal/generic/generic.tpl:81 html/getxls.php:192
+#: plugins/personal/generic/generic.tpl:81 html/getxls.php:194
msgid "Sex"
msgstr "Пол"
msgid "Organizational information"
msgstr "Информация об организации"
-#: plugins/personal/generic/generic.tpl:183 html/getxls.php:204
+#: plugins/personal/generic/generic.tpl:183 html/getxls.php:206
msgid "Organization"
msgstr "Организация"
#: plugins/personal/generic/generic.tpl:235
#: plugins/addons/addressbook/address_edit.tpl:102
-#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:91 html/getxls.php:149
+#: html/getxls.php:206
msgid "Pager"
msgstr "Пейджер"
#: plugins/personal/generic/generic.tpl:257
#: plugins/admin/departments/generic.tpl:42
#: plugins/admin/departments/generic.tpl:50
-#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:147
+#: plugins/admin/systems/workstation.tpl:18 html/getxls.php:149
msgid "Location"
msgstr "Местоположение"
#: plugins/personal/generic/generic.tpl:261
-#: plugins/admin/departments/generic.tpl:46 html/getxls.php:147
+#: plugins/admin/departments/generic.tpl:46 html/getxls.php:149
msgid "State"
msgstr "Адм. единица"
#: plugins/personal/generic/generic.tpl:339
#: plugins/addons/addressbook/address_edit.tpl:81
-#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:147
+#: plugins/addons/addressbook/address_info.tpl:70 html/getxls.php:149
msgid "Postal code"
msgstr "Почтовый индекс"
#: plugins/admin/fai/faiTemplate.tpl:19 plugins/admin/fai/faiHookEntry.tpl:17
#: plugins/admin/fai/faiTemplateEntry.tpl:11 plugins/admin/fai/faiHook.tpl:19
#: plugins/gofon/macro/generic.tpl:36 plugins/gofon/conference/generic.tpl:51
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:101
-#: html/getxls.php:198
+#: plugins/generic/references/contents.tpl:11 html/getxls.php:103
+#: html/getxls.php:200
msgid "Description"
msgstr "Описание"
msgstr "Номер факса, для которого сработает GOfax"
#: plugins/gofax/faxaccount/generic.tpl:16
-#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:53
-#: html/getxls.php:192
+#: plugins/admin/ogroups/phonequeue.tpl:35 html/getxls.php:54
+#: html/getxls.php:194
msgid "Language"
msgstr "Язык"
msgstr "Контакт"
#: plugins/addons/addressbook/address_edit.tpl:29
-#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:19 html/getxls.php:149
+#: html/getxls.php:206
msgid "Initials"
msgstr "Отчество"
msgstr "Компания"
#: plugins/addons/addressbook/address_edit.tpl:78
-#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:147
-#: html/getxls.php:204
+#: plugins/addons/addressbook/address_info.tpl:67 html/getxls.php:149
+#: html/getxls.php:206
msgid "City"
msgstr "Город"
msgid "Cell phone"
msgstr "Сотовый телефон"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:147
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:149
msgid "Home phone"
msgstr "Домашний телефон"
-#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:101
+#: plugins/addons/addressbook/class_addressbook.inc:506 html/getxls.php:66
+#: html/getxls.php:88 html/getxls.php:103 html/getxls.php:238
+#: html/getxls.php:253
msgid "User ID"
msgstr "Идентификатор пользователя"
msgstr "Управление группами"
#: plugins/admin/groups/class_groupManagement.inc:25
-#: plugins/admin/ogroups/class_ogroupManagement.inc:42
+#: plugins/admin/ogroups/class_ogroupManagement.inc:42 html/getxls.php:80
+#: html/getxls.php:212
msgid "Groups"
msgstr "Группы"
msgstr "Управление пользователями"
#: plugins/admin/users/class_userManagement.inc:25
-#: plugins/admin/systems/printer.tpl:65
+#: plugins/admin/systems/printer.tpl:65 html/getxls.php:56 html/getxls.php:211
msgid "Users"
msgstr "Пользователи"
msgid "UNIX accounts"
msgstr "UNIX аккаунт"
-#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:126
-#: html/getxls.php:132 html/getxls.php:149
+#: plugins/admin/ogroups/class_ogroupManagement.inc:45 html/getxls.php:128
+#: html/getxls.php:134 html/getxls.php:151 html/getxls.php:213
+#: html/getxls.php:269
msgid "Servers"
msgstr "Серверы"
msgid "Lifetime (in days)"
msgstr ""
-#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:147
+#: plugins/gofon/conference/generic.tpl:69 html/getxls.php:149
#, fuzzy
msgid "Phone number"
msgstr "Телефонные номера"
msgid "Index"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
msgid "Birthday"
msgstr ""
-#: html/getxls.php:53
+#: html/getxls.php:54
#, fuzzy
msgid "Sexe"
msgstr "Пол"
-#: html/getxls.php:53 html/getxls.php:147 html/getxls.php:192
-#: html/getxls.php:204
+#: html/getxls.php:54 html/getxls.php:149 html/getxls.php:194
+#: html/getxls.php:206
#, fuzzy
msgid "Firstname"
msgstr "Список"
-#: html/getxls.php:77
+#: html/getxls.php:79 html/getxls.php:197
#, fuzzy
-msgid "Members:"
+msgid "Members"
msgstr "Включаемые объекты"
-#: html/getxls.php:102
+#: html/getxls.php:104 html/getxls.php:214
#, fuzzy
msgid "Computers"
msgstr "не полный"
-#: html/getxls.php:124
+#: html/getxls.php:114 html/getxls.php:161 html/getxls.php:287
+#: html/getxls.php:304
+#, fuzzy
+msgid "Common Name"
+msgstr "Местоположение"
+
+#: html/getxls.php:126
#, fuzzy
msgid "Server Name"
msgstr "Имя сервера"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Common name"
msgstr "Местоположение"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Display Name"
msgstr "Отображаемое имя"
-#: html/getxls.php:147
+#: html/getxls.php:149
msgid "Home postal address"
msgstr ""
-#: html/getxls.php:147
-#, fuzzy
-msgid "Initiales"
-msgstr "Отчество"
-
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mail address"
msgstr "MAC-адрес"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Mobile phone"
msgstr "Домашний телефон"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Postal address"
msgstr "Почтовый индекс"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Adress"
msgstr "Адрес"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Surename"
msgstr "Имя сервера"
-#: html/getxls.php:147
+#: html/getxls.php:149
#, fuzzy
msgid "Function"
msgstr "Действие"
-#: html/getxls.php:192
+#: html/getxls.php:194
#, fuzzy
msgid "BirthDate"
msgstr "Дата"
-#: html/getxls.php:195
-#, fuzzy
-msgid "Members"
-msgstr "Включаемые объекты"
-
-#: html/getxls.php:198
+#: html/getxls.php:200
msgid "Uid"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "DisplayName"
msgstr "Отображаемое имя"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Phone Number"
msgstr "Телефонные номера"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Adress"
msgstr "Почтовый индекс"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Email address"
msgstr "Основной адрес"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "mobile"
msgstr "Мобильный"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Organizational Unit"
msgstr "Организация"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Address"
msgstr "Почтовый индекс"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Postal Code"
msgstr "Почтовый индекс"
-#: html/getxls.php:204
+#: html/getxls.php:206
msgid "Sn"
msgstr ""
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "st"
msgstr "сброс"
-#: html/getxls.php:204
+#: html/getxls.php:206
#, fuzzy
msgid "Title"
msgstr "Файлы"
+#: html/getxls.php:215
+#, fuzzy
+msgid "Adressbook"
+msgstr "Адресная книга"
+
#: html/getfax.php:53
msgid "Could not connect to database server!"
msgstr "Невозможно подключиться к серверу базы данных!"
"(But it could be a security risk) "
msgstr ""
+#, fuzzy
+#~ msgid "Members:"
+#~ msgstr "Включаемые объекты"
+
+#, fuzzy
+#~ msgid "Initiales"
+#~ msgstr "Отчество"
+
#, fuzzy
#~ msgid "Current used information setup"
#~ msgstr "Общая информация о пользователе"