From: opensides Date: Tue, 1 Nov 2005 10:30:05 +0000 (+0000) Subject: more localization fixes for getxls.php X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=169c5b9ab6cc4a4a9b059a7138a913778fe53b9d;p=gosa.git more localization fixes for getxls.php getxls.php5 need also to be fixed 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 412877302..b54d38628 100644 --- a/html/getxls.php +++ b/html/getxls.php @@ -4,6 +4,7 @@ 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 @@ -52,7 +53,7 @@ function dump_ldap ($mode= 0) $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); @@ -62,7 +63,8 @@ function dump_ldap ($mode= 0) { 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++; @@ -74,8 +76,8 @@ function dump_ldap ($mode= 0) 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 @@ -83,7 +85,7 @@ function dump_ldap ($mode= 0) $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++; @@ -109,7 +111,7 @@ function dump_ldap ($mode= 0) { 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++; @@ -144,7 +146,7 @@ function dump_ldap ($mode= 0) 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); @@ -156,7 +158,7 @@ function dump_ldap ($mode= 0) { 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++; @@ -206,11 +208,11 @@ function dump_ldap ($mode= 0) $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); @@ -233,7 +235,7 @@ function dump_ldap ($mode= 0) { 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++; @@ -248,7 +250,7 @@ function dump_ldap ($mode= 0) $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++; @@ -264,7 +266,7 @@ function dump_ldap ($mode= 0) //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++) @@ -282,7 +284,7 @@ function dump_ldap ($mode= 0) { 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++; @@ -299,7 +301,7 @@ function dump_ldap ($mode= 0) { 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++; diff --git a/locale/de/LC_MESSAGES/messages.po b/locale/de/LC_MESSAGES/messages.po index 1b4535565..f45f08d19 100644 --- a/locale/de/LC_MESSAGES/messages.po +++ b/locale/de/LC_MESSAGES/messages.po @@ -93,8 +93,8 @@ msgstr "Konnektivit #: 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" @@ -1877,8 +1877,8 @@ msgstr "Bild #: 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" @@ -1913,7 +1913,7 @@ msgstr "Geburtsdatum" 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" @@ -1981,7 +1981,7 @@ msgstr "Eigenschaften bearbeiten" 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" @@ -2026,20 +2026,20 @@ msgstr "Mobiltelefon" #: 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" @@ -2077,7 +2077,7 @@ msgstr "Stra #: 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" @@ -2783,8 +2783,8 @@ msgstr "Skriptname" #: 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" @@ -3328,8 +3328,8 @@ msgid "Fax number for GOfax to trigger on" 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" @@ -3732,7 +3732,8 @@ msgid "Personal" 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" @@ -3752,8 +3753,8 @@ msgid "Company" 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" @@ -3844,11 +3845,13 @@ msgstr "Telefon (Arbeit)" 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" @@ -4280,7 +4283,8 @@ msgid "Group administration" 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" @@ -4602,7 +4606,7 @@ msgid "User administration" 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" @@ -7109,8 +7113,9 @@ msgstr "Objektgruppen" 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" @@ -8618,7 +8623,7 @@ msgstr "W 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" @@ -9717,154 +9722,155 @@ msgstr "" 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!" @@ -10389,6 +10395,14 @@ msgstr "" "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" diff --git a/locale/es/LC_MESSAGES/messages.po b/locale/es/LC_MESSAGES/messages.po index bd6497816..d1527b016 100644 --- a/locale/es/LC_MESSAGES/messages.po +++ b/locale/es/LC_MESSAGES/messages.po @@ -90,8 +90,8 @@ msgstr "Conectividad" #: 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" @@ -1874,8 +1874,8 @@ msgstr "Cambiar foto" #: 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" @@ -1910,7 +1910,7 @@ msgstr "Fecha de nacimiento" 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" @@ -1979,7 +1979,7 @@ msgstr "Editar propiedades" 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" @@ -2024,20 +2024,20 @@ msgstr "Teléfono Móvil" #: 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" @@ -2075,7 +2075,7 @@ msgstr "Calle" #: 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" @@ -2820,8 +2820,8 @@ msgstr "Nombre de la lista" #: 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" @@ -3394,8 +3394,8 @@ msgid "Fax number for GOfax to trigger on" 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" @@ -3800,7 +3800,8 @@ msgid "Personal" 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" @@ -3820,8 +3821,8 @@ msgid "Company" 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" @@ -3912,11 +3913,13 @@ msgstr "Teléfono del trabajo" 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" @@ -4342,7 +4345,8 @@ msgid "Group administration" 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" @@ -4668,7 +4672,7 @@ msgid "User administration" 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" @@ -7245,8 +7249,9 @@ msgstr "Grupos de objetos" 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" @@ -8866,7 +8871,7 @@ msgstr "Elija el subárbol donde colocar el usuario" 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" @@ -9978,153 +9983,154 @@ 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 "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." @@ -10633,6 +10639,14 @@ msgid "" "(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" diff --git a/locale/fr/LC_MESSAGES/messages.po b/locale/fr/LC_MESSAGES/messages.po index 026bbcb43..2ec6b97db 100644 --- a/locale/fr/LC_MESSAGES/messages.po +++ b/locale/fr/LC_MESSAGES/messages.po @@ -6,12 +6,13 @@ # 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 , 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 \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -94,8 +95,8 @@ msgstr "Connectivité" #: 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" @@ -1869,8 +1870,8 @@ msgstr "Changer la photo" #: 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" @@ -1905,7 +1906,7 @@ msgstr "Date de naissance" 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" @@ -1973,7 +1974,7 @@ msgstr "Modifier les propriétés" 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" @@ -2018,20 +2019,20 @@ msgstr "Portable" #: 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" @@ -2069,7 +2070,7 @@ msgstr "Rue" #: 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" @@ -2781,8 +2782,8 @@ msgstr "Nom du script" #: 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" @@ -3319,8 +3320,8 @@ msgid "Fax number for GOfax to trigger on" 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" @@ -3729,7 +3730,8 @@ msgid "Personal" 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" @@ -3749,8 +3751,8 @@ msgid "Company" 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" @@ -3842,11 +3844,13 @@ msgstr "Téléphone du bureau" 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" @@ -4266,7 +4270,8 @@ msgid "Group administration" 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" @@ -4586,7 +4591,7 @@ msgid "User administration" 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" @@ -7077,8 +7082,9 @@ msgstr "Groupes d'objets" 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" @@ -8578,7 +8584,7 @@ msgstr "Sélectionnez la branche où sera enregistrée la conférence" 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" @@ -9661,129 +9667,131 @@ msgstr "" 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!" diff --git a/locale/it/LC_MESSAGES/messages.po b/locale/it/LC_MESSAGES/messages.po index 36fd339ec..caa9e5537 100644 --- a/locale/it/LC_MESSAGES/messages.po +++ b/locale/it/LC_MESSAGES/messages.po @@ -90,8 +90,8 @@ msgstr "Connettività" #: 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" @@ -1831,8 +1831,8 @@ msgstr "Cambia foto" #: 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" @@ -1867,7 +1867,7 @@ msgstr "Data di nascita" 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" @@ -1936,7 +1936,7 @@ msgstr "Modifica proprietà" 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" @@ -1981,20 +1981,20 @@ msgstr "Cellulare" #: 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" @@ -2032,7 +2032,7 @@ msgstr "Strada" #: 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" @@ -2754,8 +2754,8 @@ msgstr "Script path" #: 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" @@ -3318,8 +3318,8 @@ msgid "Fax number for GOfax to trigger on" 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" @@ -3711,7 +3711,8 @@ msgid "Personal" 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" @@ -3731,8 +3732,8 @@ msgid "Company" 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à" @@ -3818,11 +3819,13 @@ msgstr "Telefono del lavoro" 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 "" @@ -4215,7 +4218,8 @@ msgid "Group administration" 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" @@ -4526,7 +4530,7 @@ msgid "User administration" 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" @@ -7005,8 +7009,9 @@ msgstr "Gruppi di oggetti" 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 "" @@ -8574,7 +8579,7 @@ msgstr "Scegli il subtree per l'utente" 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" @@ -9588,153 +9593,154 @@ 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 "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!" @@ -10201,6 +10207,14 @@ msgid "" "(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 82d2acbbc..50629ea47 100644 --- a/locale/messages.po +++ b/locale/messages.po @@ -73,8 +73,8 @@ msgstr "" #: 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 "" @@ -1773,8 +1773,8 @@ 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 "" @@ -1809,7 +1809,7 @@ 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 "" @@ -1877,7 +1877,7 @@ 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 "" @@ -1922,20 +1922,20 @@ 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 "" @@ -1973,7 +1973,7 @@ 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 "" @@ -2646,8 +2646,8 @@ 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 "" @@ -3167,8 +3167,8 @@ msgid "Fax number for GOfax to trigger on" 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 "" @@ -3557,7 +3557,8 @@ msgid "Personal" 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 "" @@ -3577,8 +3578,8 @@ msgid "Company" 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 "" @@ -3664,11 +3665,13 @@ 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 "" @@ -4057,7 +4060,8 @@ msgid "Group administration" 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 "" @@ -4358,7 +4362,7 @@ msgid "User administration" 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 "" @@ -6731,8 +6735,9 @@ 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 "" @@ -8153,7 +8158,7 @@ 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 "" @@ -9090,127 +9095,128 @@ 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 "" diff --git a/locale/nl/LC_MESSAGES/messages.po b/locale/nl/LC_MESSAGES/messages.po index d4e0e827f..bb1bed295 100644 --- a/locale/nl/LC_MESSAGES/messages.po +++ b/locale/nl/LC_MESSAGES/messages.po @@ -94,8 +94,8 @@ msgstr "Verbindingen" #: 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" @@ -1870,8 +1870,8 @@ msgstr "Verander plaatje" #: 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" @@ -1906,7 +1906,7 @@ msgstr "Geboortedatum" 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" @@ -1974,7 +1974,7 @@ msgstr "Eigenschappen bewerken" 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" @@ -2019,20 +2019,20 @@ msgstr "GSM" #: 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" @@ -2070,7 +2070,7 @@ msgstr "Straat" #: 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" @@ -2773,8 +2773,8 @@ msgstr "Scriptnaam" #: 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" @@ -3308,8 +3308,8 @@ msgid "Fax number for GOfax to trigger on" 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" @@ -3709,7 +3709,8 @@ msgid "Personal" 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" @@ -3729,8 +3730,8 @@ msgid "Company" 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" @@ -3821,11 +3822,13 @@ msgstr "Telefoon Werk" 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" @@ -4243,7 +4246,8 @@ msgid "Group administration" 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" @@ -4561,7 +4565,7 @@ msgid "User administration" 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" @@ -7044,8 +7048,9 @@ msgstr "Objectgroepen" 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" @@ -8548,7 +8553,7 @@ msgstr "Kies de subtree waaronder de conferentie geplaatst wordt" 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" @@ -9640,149 +9645,150 @@ msgstr "" 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!" @@ -10301,6 +10307,14 @@ msgstr "" "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" diff --git a/locale/ru/LC_MESSAGES/messages.po b/locale/ru/LC_MESSAGES/messages.po index 05f7ce1fb..991769165 100644 --- a/locale/ru/LC_MESSAGES/messages.po +++ b/locale/ru/LC_MESSAGES/messages.po @@ -89,8 +89,8 @@ msgstr "Подключение" #: 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 "Факс" @@ -1867,8 +1867,8 @@ 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 "Фамилия" @@ -1903,7 +1903,7 @@ 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 "Пол" @@ -1972,7 +1972,7 @@ 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 "Организация" @@ -2017,20 +2017,20 @@ 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 "Адм. единица" @@ -2068,7 +2068,7 @@ 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 "Почтовый индекс" @@ -2817,8 +2817,8 @@ 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 "Описание" @@ -3391,8 +3391,8 @@ msgid "Fax number for GOfax to trigger on" 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 "Язык" @@ -3793,7 +3793,8 @@ msgid "Personal" 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 "Отчество" @@ -3813,8 +3814,8 @@ msgid "Company" 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 "Город" @@ -3903,11 +3904,13 @@ 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 "Идентификатор пользователя" @@ -4334,7 +4337,8 @@ msgid "Group administration" 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 "Группы" @@ -4659,7 +4663,7 @@ msgid "User administration" 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 "Пользователи" @@ -7277,8 +7281,9 @@ 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 "Серверы" @@ -8891,7 +8896,7 @@ 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 "Телефонные номера" @@ -9955,153 +9960,154 @@ 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 "Невозможно подключиться к серверу базы данных!" @@ -10589,6 +10595,14 @@ msgid "" "(But it could be a security risk) " msgstr "" +#, fuzzy +#~ msgid "Members:" +#~ msgstr "Включаемые объекты" + +#, fuzzy +#~ msgid "Initiales" +#~ msgstr "Отчество" + #, fuzzy #~ msgid "Current used information setup" #~ msgstr "Общая информация о пользователе"