gosa-plugin-ldapmanager-2.7.4/0000755000175000017500000000000011752422556015227 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/html/0000755000175000017500000000000011752422556016173 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/html/images/0000755000175000017500000000000011752422556017440 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/html/images/ldif.png0000644000175000017500000000260311041626711021053 0ustar cajuscajusPNG  IHDR00WsBIT|d pHYs11(RtEXtSoftwarewww.inkscape.org<IDATxXOhU1۴Il@LUAD ^z@UKj6YA!HB*Mch6fiinٝϟǒ˖ @ޛy~of~;R)0Cg`}911q[$.>4  5D]]A7:;<[͠|xsh puN /()yW066hBak^l7\0s##$-]#:Z#je 8-X:!x,"hwuKԁV0p, a"ذ)~- &oK4i^G <,-ƥ (X[Bcw Xg1,:P/ pRT8{Ɵ84fS0KQQ4p#Lݯ:d2 $@RZ]j EQ;C5tv_'zjǢD@,et"5Fg@@-!V')n&DhimV9](/4;tA a{5|%*x9Ӕ52@)9G^4۝r3 e o&T! } p$^34F0>4u9],`׀A6;;{FU!l_?G˲UEem_i+}7g%MhxEpM*r-=!D +B4GG/Ζ<1H{kTuĘ)vàQiEzvhJuL7y04 ksDח*IENDB`gosa-plugin-ldapmanager-2.7.4/html/getxls.php0000644000175000017500000004065311424574755020227 0ustar cajuscajusget_ldap_link(); $display = ""; if($mode == 2){ // Single Entry Export ! /* Get required attributes */ $d = base64_decode($_GET['d']); $n = base64_decode($_GET['n']); /* Create dn to search entries in */ $dn=$d.$n; /* Create some strings */ $date=date('dS \of F Y '); $fname = tempnam("/tmp", "demo.xls"); /* Create xls workbench */ $workbook= new writeexcel_workbook($fname); /* Create some styles to generate xls */ $title_title= $workbook->addformat(array( bold => 1, color => 'green', size => 11, underline => 2, font => 'Helvetica' )); $title_bold= $workbook->addformat(array( bold => 1, color => 'black', size => 10, font => 'Helvetica' )); # Create a format for the phone numbers $f_phone = $workbook->addformat(); $f_phone->set_align('left'); $f_phone->set_num_format('\0#'); /* If the switch reaches default (it should not), this will be set to false, so nothig will be created ... */ $save = true; /* Check which type of data was requested */ switch ($d){ /* PEOPLE Get all peoples from this $dn and put them into the xls work sheet */ case get_people_ou() : $user = $ldap->gen_xls($dn,"(objectClass=*)",array("uid","dateOfBirth","gender","givenName","preferredLanguage")); $intitul = array(_("Birthday").":", _("Sex").":", _("Surname")."/"._("Given name").":",_("Language").":"); // name of the xls file $name_section = _("Users"); $worksheet = $workbook->addworksheet(_("Users")); $worksheet->set_column('A:B', 51); $user_nbr = count($user); $worksheet->write('A1',sprintf(_("User list of %s on %s"),$n,$date),$title_title); $r=3; for($i=1;$i<$user_nbr;$i++) { if($i>1) $worksheet->write('A'.$r++,""); $worksheet->write('A'.$r++,_("User ID").": ".$user[$i][0],$title_bold); for($j=1;$j<5;$j++) { $r++; $worksheet->write('A'.$r,$intitul[$j-1]); $user[$i][$j]=utf8_decode ($user[$i][$j]); $worksheet->write('B'.$r,$user[$i][$j]); } $worksheet->write('A'.$r++,""); } break; /* GROUPS Get all groups from th $dn and put them into the xls work sheet */ case get_groups_ou(): /* Get group data */ $groups = $ldap->gen_xls($dn,"(objectClass=*)",array("cn","memberUid"),TRUE,1); $intitul = array(_("Members").":"); //name of the xls file $name_section=_("Groups"); $worksheet = $workbook->addworksheet(_("Groups")); $worksheet->set_column('A:B', 51); //count number of groups $groups_nbr=count($groups); $worksheet->write('A1', sprintf(_("Groups of %s on %s"), $n, $date),$title_title); $r=3; for($i=1;$i<$groups_nbr;$i++) { $worksheet->write('A'.$r++,_("User ID").": ".$groups[$i][0][0],$title_bold); for($j=1;$j<=2;$j++) { $r++; $worksheet->write('A'.$r,$intitul[$j-1]); for($k=0;$k<= $groups[$i][$j]['count'];$k++) { $worksheet->write('B'.$r,$groups[$i][$j][$k]); $r++; } } } break; /* SYSTEMS Get all systems from th $dn and put them into the xls work sheet */ case get_ou("systemManagement", "systemRDN"): $name_section=_("Servers"); $computers= $ldap->gen_xls($dn,"(&(objectClass=*)(cn=*))",array("cn","description","uid")); $intitul=array(_("Description").":",_("User ID").":"); $worksheet = $workbook->addworksheet(_("Computers")); $worksheet->set_column('A:B', 32); //count number of computers $computers_nbr=count($computers); $r=1; for($i=1;$i<$computers_nbr;$i++) { if($i>1) $worksheet->write('A'.$r++,""); $worksheet->write('A'.$r++,_("Common name").": ".$computers[$i][0],$title_bold); for($j=1;$j<3;$j++) { $r++; $worksheet->write('A'.$r,$intitul[$j-1]); $computers[$i][$j]=utf8_decode ($computers[$i][$j]); $worksheet->write('B'.$r,$computers[$i][$j]); } $worksheet->write('A'.$r++,""); } break; /* SYSTEMS Get all systems from th $dn and put them into the xls work sheet */ case get_ou("servgeneric", "serverRDN"): $servers= $ldap->gen_xls($dn,"(objectClass=*)",array("cn")); $intitul=array(_("Server name").":"); //name of the xls file $name_section=_("Servers"); $worksheet = $workbook->addworksheet(_("Servers")); $worksheet->set_column('A:B', 51); //count number of servers $servers_nbr=count($servers); $worksheet->write('A1',sprintf(_("Servers of %s on %s"), $n, $date),$title_title); $r=3; $worksheet->write('A'.$r++,_("Servers").": ",$title_bold); for($i=1;$i<$servers_nbr;$i++) { for($j=0;$j<1;$j++) { $r++; $worksheet->write('A'.$r,$intitul[$j]); $servers[$i][$j]=utf8_decode ($servers[$i][$j]); $worksheet->write('B'.$r,$servers[$i][$j]); } } break; case "dc=addressbook,": //data about addressbook /* ADDRESSBOOK Get all addressbook entries from $dn and put them into the xls work sheet */ $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")."/"._("Given name").":",_("Home phone").":", _("Home postal address").":",_("Initials").":",_("Location").":", _("Mail address").":",_("Mobile phone").":",_("City").":", _("Postal address").":",_("Pager").":",_("Phone number").":", _("Address").":",_("Postal code").":",_("Surname").":", _("State").":",_("Function").":"); //name of the xls file $name_section=_("Address book"); $worksheet = $workbook->addworksheet(_("Servers")); $worksheet->set_column('A:B', 51); //count number of entries $address_nbr=count($address); $worksheet->write('A1',sprintf(_("Address book of %s on %s"),$n, $date),$title_title); $r=3; for($i=1;$i<$address_nbr;$i++) { if($i>1) $worksheet->write('A'.$r++,""); $worksheet->write('A'.$r++,_("Common Name").": ".$address[$i][0],$title_bold); for($j=1;$j<19;$j++) { $r++; $worksheet->write('A'.$r,$intitul[$j]); $address[$i][$j]=utf8_decode ($address[$i][$j]); $worksheet->write('B'.$r,$address[$i][$j],$f_phone); } $worksheet->write('A'.$r++,""); } break; default: $save = false; echo "Specified parameter '".$d."' was not found in switch-case."; } if($save){ $workbook->close(); } // We'll be outputting a xls header('Content-type: application/x-msexcel'); // It will be called demo.xls header('Content-Disposition: attachment; filename=xls_export_'.$name_section.".xls"); // The source is in original.xls readfile($fname); unlink ($fname); } elseif($mode == 3){ // Full Export ! $dn = base64_decode($_GET['dn']); //data about users $user= $ldap->gen_xls( get_people_ou().$dn,"(objectClass=*)",array("uid","dateOfBirth","gender","givenName","preferredLanguage")); $user_intitul=array(_("Day of birth").":",_("Sex").":",_("Surname")."/"._("Given name").":",_("Language").":"); //data about groups $groups= $ldap->gen_xls(get_groups_ou().$dn,"(objectClass=*)",array("cn","memberUid"),TRUE,1); $groups_intitul=array(_("Members").":"); //data about computers $computers= $ldap->gen_xls("ou=computers,".$dn,"(objectClass=*)",array("cn","description","uid")); $computers_intitul=array(_("Description").":",_("UID").":"); //data about servers $servers= $ldap->gen_xls(get_ou("servgeneric", "serverRDN").$dn,"(objectClass=*)",array("cn")); $servers_intitul=array(_("Name").":"); //data about addressbook $address= $ldap->gen_xls("dc=addressbook,".$dn,"(objectClass=*)", array("cn","displayName","facsimileTelephoneNumber","givenName","homePhone","homePostalAddress", "initials","l","mail","mobile","o","ou","pager","telephoneNumber","postalAddress", "postalCode","sn","st","title")); $address_intitul= array("cn",_("Display name").":",_("Fax").":",_("Surname")."/"._("Given name").":", _("Phone number").":",_("Postal address").":",_("Initials").":",_("City").":", _("Email address").":",_("Mobile").":",_("Organization").":",_("Organizational unit").":", _("Pager").":",_("Phone number").":",_("Postal address").":",_("Postal Code").":", _("Surname").":",_("State").":",_("Title").":"); //name of the xls file $name_section=_("Full"); $date=date('dS \of F Y '); $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(_("Address book")); $worksheet->set_column('A:B', 51); $worksheet2->set_column('A:B', 51); $worksheet3->set_column('A:B', 51); $worksheet4->set_column('A:B', 51); $worksheet5->set_column('A:B', 51); $title_title= $workbook->addformat(array( bold => 1, color => 'green', size => 11, font => 'Helvetica' )); $title_bold = $workbook->addformat(array( bold => 1, color => 'black', size => 10, font => 'Helvetica' )); # Create a format for the phone numbers $f_phone = $workbook->addformat(); $f_phone->set_align('left'); $f_phone->set_num_format('\0#'); //count number of users $user_nbr=count($user); $worksheet->write('A1',sprintf(_("User list of %s on %s"), $dn, $date),$title_title); $r=3; for($i=1;$i<$user_nbr;$i++) { if($i>1) $worksheet->write('A'.$r++,""); $worksheet->write('A'.$r++,_("User ID").": ".$user[$i][0],$title_bold); for($j=1;$j<5;$j++) { $r++; $worksheet->write('A'.$r,$user_intitul[$j-1]); $user[$i][$j]=utf8_decode ($user[$i][$j]); $worksheet->write('B'.$r,$user[$i][$j]); } $worksheet->write('A'.$r++,""); } //count number of groups $groups_nbr=count($groups); $worksheet2->write('A1',sprintf(_("Groups of %s on %s"), $dn, $date),$title_title); $r=3; for($i=1;$i<$groups_nbr;$i++) { $worksheet2->write('A'.$r++,_("User ID").": ".$groups[$i][0][0],$title_bold); for($j=1;$j<=2;$j++) { $r++; $worksheet2->write('A'.$r,$group_intitul[$j-1]); for($k=0;$k<= $groups[$i][$j]['count'];$k++) { $worksheet2->write('B'.$r,$groups[$i][$j][$k]); $r++; } } } //count number of servers $servers_nbr=count($servers); $worksheet3->write('A1',sprintf(_("Servers of %s on %s"),$dn,$date),$title_title); $r=3; $worksheet3->write('A'.$r++,_("Servers").": ",$title_bold); for($i=1;$i<$servers_nbr;$i++) { for($j=0;$j<1;$j++) { $r++; $worksheet3->write('A'.$r,$servers_intitul[$j]); $servers[$i][$j]=utf8_decode ($servers[$i][$j]); $worksheet3->write('B'.$r,$servers[$i][$j]); } } //count number of computers $computers_nbr=count($computers); $worksheet4->write('A1',sprintf(_("Computers of %s on %s"),$dn,$date),$title_title); $r=3; for($i=1;$i<$computers_nbr;$i++) { if($i>1) $worksheet->write('A'.$r++,""); $worksheet4->write('A'.$r++,_("Common name").": ".$computers[$i][0],$title_bold); for($j=1;$j<3;$j++) { $r++; $worksheet4->write('A'.$r,$computers_intitul[$j-1]); $computers[$i][$j]=utf8_decode ($computers[$i][$j]); $worksheet4->write('B'.$r,$computers[$i][$j]); } $worksheet4->write('A'.$r++,""); } //count number of entries $address_nbr=count($address); $worksheet5->write('A1',sprintf(_("Address book of %s on %s"),$dn, $date),$title_title); $r=3; for($i=1;$i<$address_nbr;$i++) { if($i>1) $worksheet5->write('A'.$r++,""); $worksheet5->write('A'.$r++,_("Common name").": ".$address[$i][0],$title_bold); for($j=1;$j<19;$j++) { $r++; $worksheet5->write('A'.$r,$address_intitul[$j]); $address[$i][$j]=utf8_decode ($address[$i][$j]); $worksheet5->write('B'.$r,$address[$i][$j],$f_phone); } $worksheet5->write('A'.$r++,""); } $workbook->close(); // We'll be outputting a xls header('Content-type: application/x-msexcel'); // It will be called demo.xls header('Content-Disposition: attachment; filename='.$name_section.".xls"); readfile($fname); unlink ($fname); } elseif($mode == 4){ // IVBB LDIF Export $dn = base64_decode($_GET['dn']); echo $display; } } /* Basic setup, remove eventually registered sessions */ @require_once ("../../../include/php_setup.inc"); @require_once ("functions.inc"); session::start(); session::set('errorsAlreadyPosted',array()); /* Logged in? Simple security check */ if (!session::is_set('ui')){ new log("security","all/all","",array(),"Error: getxls.php called without session") ; header ("Location: index.php"); exit; } $ui = session::get('ui'); $config = session::get('config'); /* Check ACL's */ $dn =""; if(isset($_GET['n'])){ $dn = base64_decode($_GET['n']); $acl_dn = base64_decode($_GET['d']).base64_decode($_GET['n']); }elseif(isset($_GET['dn'])){ $dn = base64_decode($_GET['dn']); $acl_dn = base64_decode($_GET['dn']); } $acl = $ui->get_permissions($acl_dn,"ldapmanager/ldif"); if(!preg_match("/r/",$acl)){ msg_dialog::display(_("Permission error"),_("You have no permission to do LDAP exports!"),FATAL_ERROR_DIALOG); exit(); } header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); header("Cache-Control: post-check=0, pre-check=0"); header("Content-type: text/plain"); switch ($_GET['ivbb']){ case 2: dump_ldap (2); break; case 3: dump_ldap (3); break; case 4: dump_ldap (4); break; default: echo "Error in ivbb parameter. Request aborted."; } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/plugin.dsc0000644000175000017500000000042111336200072017176 0ustar cajuscajus[gosa-plugin] name = ldapmanager description = "Simple LDAP backup and insertion tasks" version = 2.6.8 author = "Cajus Pollmeier " maintainer = "GOsa packages maintainers group " homepage = https://oss.gonicus.de/labs/gosa/ gosa-plugin-ldapmanager-2.7.4/addons/0000755000175000017500000000000011752422556016477 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/0000755000175000017500000000000011752422556020752 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/tabs_ldif.inc0000644000175000017500000000052210743610477023373 0ustar cajuscajus gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/class_exportxls.inc0000644000175000017500000001242411425514337024701 0ustar cajuscajusinitTime = microtime(TRUE); $this->config= &$config; $this->ui = get_userinfo(); $this->base = $this->config->current['BASE']; $this->baseSelector= new baseSelector($this->config->idepartments, $this->base); $this->baseSelector->setSubmitButton(false); $this->baseSelector->setHeight(300); $this->baseSelector->update(true); stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open', $amount = 1, $duration = (microtime(TRUE) - $this->initTime)); } function execute() { /* Call parent execute */ plugin::execute(); /* Log view */ if(!$this->view_logged){ $this->view_logged = TRUE; new log("view","all/".get_class($this),$this->dn); } $dn = $this->config->current['BASE']; /* Set government mode */ $smarty= get_smarty(); $smarty->assign("type",FALSE); $smarty->assign("depselectivbb",""); if (!$this->baseSelector->update()) { msg_dialog::display(_("Error"), msgPool::permMove(), ERROR_DIALOG); } if ($this->base != $this->baseSelector->getBase()) { $this->base= $this->baseSelector->getBase(); $this->is_modified= TRUE; } /* Check permissions for export */ // fill in old vars in the Export form if((isset($_POST['single']))&&(isset($_POST['sfrmgetsingle']))){ $smarty->assign("single",set_post(get_post('single'))); $smarty->assign("type",set_post("single")); $a=get_post('single'); $b=$this->base; } if(isset($_POST['sfrmgetfull'])){ $smarty->assign("type","full"); $dn = $this->base; } else { $smarty->assign("depselectfull", ""); } if((isset($_POST['selivbb']))&&(isset($_POST['sfrmgetivbb']))){ $smarty->assign("depselectivbb",set_post(get_post('selivbb'))); $smarty->assign("type","ivbb"); $dn = get_post('selivbb'); } else { $smarty->assign("depselectivbb", ""); } // Set values for optionlist in form $bases = array(); $acl_bases = $this->ui->get_module_departments("ldapmanager"); foreach($this->config->idepartments as $base_dn => $name){ if(in_array_ics($base_dn,$acl_bases)){ $bases[$base_dn] = $name; } } $smarty->assign("deplist", $bases); $smarty->assign("choicelist",set_post(array( get_people_ou() =>"users" , get_groups_ou() =>"groups" , get_ou("systemManagement", "systemRDN") =>"computers", get_ou("servgeneric", "serverRDN") =>"servers", "dc=addressbook," =>"addressbook"))); // Get the LDAP link, to generate the Export $ldap = $this->config->get_ldap_link(); $smarty->assign ("govmode", $this->config->get_cfg_value("core","honourIvbbAttributes")); $smarty->assign("LDIFError",FALSE); if(isset($dn)) { if(!($ldap->dn_exists($dn) && $dn != "")){ $smarty->assign("LDIFError",TRUE); msg_dialog::display(_("Error"), _("Cannot export selected entries!"), ERROR_DIALOG); } } /* check alcs for given dn */ $acls =""; if(isset($dn)){ $acls = $this->ui->get_permissions($dn,"ldapmanager/ldif"); } if(!preg_match("/r/",$acls) && (isset($_POST['sfrmgetsingle']) || isset($_POST['sfrmgetfull']) || isset($_POST['sfrmgetivbb']))){ /* Show error msg */ msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to export %s!"), bold(LDAP::fix($dn))), ERROR_DIALOG); /* Show main page */ $smarty->assign("LDIFError",TRUE); $smarty->assign("para",""); }else{ // Export a single LDAP entry if(isset($_POST['sfrmgetsingle'])) { $smarty->assign("para","?ivbb=2&d=".base64_encode(get_post('single'))."&n=".base64_encode($this->base)); } elseif(isset($_POST['sfrmgetfull'])) { $smarty->assign("para","?ivbb=3&dn=".base64_encode($this->base)); } elseif(isset($_POST['sfrmgetivbb'])) { $smarty->assign("para","?ivbb=4&dn=".base64_encode(get_post('selivbb'))); } } $smarty->assign("base", $this->baseSelector->render()); return ($smarty->fetch (get_template_path('contentexportxls.tpl', TRUE))); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/contentcsv.tpl0000644000175000017500000000561011461523146023655 0ustar cajuscajusTemporary disabled gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/class_import.inc0000644000175000017500000001116311470716450024142 0ustar cajuscajusinitTime = microtime(TRUE); $this->config= &$config; $this->ui = get_userinfo(); stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open', $amount = 1, $duration = (microtime(TRUE) - $this->initTime)); } function execute() { /* Call parent execute */ plugin::execute(); /* Log view */ if(!$this->view_logged){ $this->view_logged = TRUE; new log("view","all/".get_class($this),$this->dn); } /* Set government mode */ $smarty= get_smarty(); // Get the LDAP link, to generate the Export $ldap = $this->config->get_ldap_link(); $smarty->assign("LDIFError",FALSE); $smarty->assign("type",FALSE); /* Get acls */ $acl = $this->ui->get_permissions($this->config->current['BASE'],"all/all"); /* Import requested check file and acls */ if((isset($_FILES['userfile']['name']))&&(isset($_POST['fileup']))){ /* Check acls */ if(!preg_match("/w/",$acl)){ msg_dialog::display(_("Permission error"), _("You need full write access to the LDAP tree to import data!"), ERROR_DIALOG); }else{ $smarty->assign("type","importfile"); $handle = NULL; $filename = gosa_file_name($_FILES['userfile']['tmp_name']); // Check if there is a file submitted if(!$_FILES['userfile']['size'] > 0 ) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file is empty")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } // Is there a tmp file, which we can use ? elseif(!file_exists($filename)) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not found")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } // Can we open the tmp file, for reading elseif(!$handle = @fopen($filename,"r")) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not readable")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } else { // Everything just fine :) $str = ""; // Reading content while(!feof($handle)) { $str .= fread($handle,1024); } @fclose($handle); // Should we use Overwrite ? if(!empty($_POST['overwrite'])) $overwrite = true; else $overwrite = false;; if(!empty($_POST['cleanup'])) $cleanup = true; else $cleanup = false; $ErrorStr=""; $check = $ldap->import_complete_ldif($str,$ErrorStr,$overwrite,$cleanup); if($check == INSERT_OK ){ $smarty->assign("LDIFError",FALSE); } else { $smarty->assign("LDIFError",TRUE); } switch($check) { case INSERT_OK: break; case ALREADY_EXISTING_ENTRY: msg_dialog::display(_("LDAP error"), $ErrorStr, ERROR_DIALOG); break; case UNKNOWN_TOKEN_IN_LDIF_FILE: msg_dialog::display(_("LDAP error"), $ErrorStr, ERROR_DIALOG); break; default: msg_dialog::display(_("Internal error"), sprintf(_("Undefined flag %s!"), bold($check)), ERROR_DIALOG); break; } } } } return ($smarty->fetch (get_template_path('contentimport.tpl', TRUE))); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/contentexport.tpl0000644000175000017500000000142611424574755024417 0ustar cajuscajus

{t}The LDIF export plug-in provides methods to download a complete snapshot of the running LDAP directory as LDIF. You may save these files for backup purpose or when initializing a new server.{/t}


{$base}

gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/class_export.inc0000644000175000017500000000772111475426071024160 0ustar cajuscajusinitTime = microtime(TRUE); /* Include config object */ $this->config= &$config; $this->ui = get_userinfo(); $this->baseSelector= new baseSelector($this->config->idepartments, $this->config->current['BASE']); $this->baseSelector->setSubmitButton(false); $this->baseSelector->setHeight(300); $this->baseSelector->update(true); stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open', $amount = 1, $duration = (microtime(TRUE) - $this->initTime)); } function execute() { /* Call parent execute */ plugin::execute(); /* Log view */ if(!$this->view_logged){ $this->view_logged = TRUE; new log("view","all/".get_class($this),$this->dn); } // Update baseSelector if (!$this->baseSelector->update()) { msg_dialog::display(_("Error"), msgPool::permMove(), ERROR_DIALOG); } if ($this->base != $this->baseSelector->getBase()) { $this->base= $this->baseSelector->getBase(); $this->is_modified= TRUE; } // Assign smarty values $smarty= get_smarty(); $smarty->assign("single",""); $smarty->assign("base", $this->baseSelector->render()); // fill in old vars in the Export form if(isset($_POST['single'])) $smarty->assign("single",set_post(get_post('single'))); // Get the LDAP link, to generate the Export $ldap = $this->config->get_ldap_link(); $dn = ""; if(isset($_POST['sfrmgetsingle'])) { $dn = get_post('single'); $scope= "base"; $acls = $this->ui->get_permissions($dn,"ldapmanager/ldif"); $name = "entryExport.ldif"; if(!$ldap->dn_exists($dn)){ msg_dialog::display(_("LDAP error"), sprintf(_("No such object %s!"),bold(LDAP::fix($dn))), ERROR_DIALOG); $dn =""; } }elseif(isset($_POST['sfrmgetfull'])){ $dn = $this->base; $scope= "sub"; $acls = $this->ui->get_permissions($dn,"ldapmanager/ldif"); $name = "fullExport.ldif"; } if(!empty($dn)){ // Check permissions before sending the output if(!preg_match("/r/",$acls)){ msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to export %s!"), bold(LDAP::fix($dn))), ERROR_DIALOG); }else{ // Check permissions before sending the output if(!preg_match("/r/",$acls)){ msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to export %s!"), bold(LDAP::fix($dn))), ERROR_DIALOG); }else{ $data = $ldap->generateLdif(LDAP::fix($dn), 'objectClass=*',$scope); if($data === NULL){ msg_dialog::display(_("Error"), sprintf(_("Failed to generate LDAP export: %s"), $ldap->get_error()), ERROR_DIALOG); }else{ send_binary_content($data,$name); } } } } // Show the main form return ($smarty->fetch (get_template_path('contentexport.tpl', TRUE))); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/contentexportxls.tpl0000644000175000017500000000334611424574755025151 0ustar cajuscajus{if $LDIFError != FALSE || $type == FALSE}

{t}The XLS export plug-in provides methods to download a complete snapshot of the running LDAP directory as XLS. You may save these files for documentation.{/t}


{if $govmode eq "true"} {/if}
{**}
{$base}
{else}

{t}Export successful{/t}


{image path="images/filesaveas.png"} {t}Click here to save the LDAP export to a XLS file{/t}

{/if}
gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/class_ldif.inc0000644000175000017500000000324211425514344023543 0ustar cajuscajusinitTime = microtime(TRUE); stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open', $amount = 1, $duration = (microtime(TRUE) - $this->initTime)); /* Include config object */ $this->ldif= new ldiftab($config, $config->data['TABS']['LDIFTAB'], ""); } function execute() { /* Call parent execute */ plugin::execute(); /* Show main page */ return ($this->ldif->execute()); } /* Return plugin informations for acl handling #FIXME You can only read attributes within this report plugin */ static function plInfo() { return (array( "plShortName" => _("LDAP manager"), "plDescription" => _("LDAP manager")." ("._("import")."/"._("export").")", "plSelfModify" => FALSE, "plDepends" => array(), "plPriority" => 1, "plSection" => array("addon"), "plCategory" => array("ldapmanager" => array("description" => _("LDAP manager"))), "plProvidedAcls" => array() )); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/class_csvimport.inc0000644000175000017500000004145511470716443024667 0ustar cajuscajusinitTime = microtime(TRUE); /* Include config object */ $this->config= &$config; $this->ui = get_userinfo(); stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open', $amount = 1, $duration = (microtime(TRUE) - $this->initTime)); } function execute() { /* Call parent execute */ plugin::execute(); /* Log view */ if(!$this->view_logged){ $this->view_logged = TRUE; new log("view","all/".get_class($this),$this->dn); } /* initiate smarty */ $smarty= get_smarty(); $smarty->assign("selectedattrs",array(0=>"")); $smarty->assign("data",array(0=>"")); $smarty->assign("head",array(0=>"")); $smarty->assign("sorted",0); $smarty->assign("fileup",0); /* Get the LDAP link, to generate the Export */ $ldap = $this->config->get_ldap_link(); $arrtemplates = array(); $tempvar =0; /* Array to fill in Formfields */ $arrtemplates[$tempvar] = "None"; if(!is_array($this->csvinfo)){ $this->csvinfo=array(); } /* Set Usertemplate information and get all Attribute from userclass */ unset ($this->csvinfo['arrtemplates']); unset ($this->csvinfo['arrtempls']); /* Generate Template Array, Attribute Array */ if(!isset($this->csvinfo['arrtempls'])){ /* Generating attributes */ $attrs = @get_class_vars("user"); $this->csvinfo['attr'] = $attrs['attributes']; /* Attach the choise none to discard a csv col */ $new = array(); $new[0]="none"; $new[1]="userPassword"; for($c = 0; $c < count($this->csvinfo['attr']);$c++){ $new[$c+2]=$this->csvinfo['attr'][$c]; } $this->csvinfo['attr'] = $new; /* Search all Templates */ $this->csvinfo['templates'] = $ldap->search("(objectClass=gosaUserTemplate)",array("*")); /* Array to handle selected Form fiels */ $this->csvinfo['arrtempls'][$tempvar]['name'] = ""; $this->csvinfo['arrtempls'][$tempvar]['dn'] = ""; $this->csvinfo['arrtemplates'][]="None"; while($temp = $ldap->fetch($this->csvinfo['templates'])){ $tempvar ++; $this->csvinfo['arrtemplates'][$tempvar] = $temp['sn'][0]." - ".$this->config->idepartments[preg_replace("/^[^,]+,".preg_quote(get_people_ou(), '/')."/i", "", $temp['dn'])]; $this->csvinfo['arrtempls'] [$tempvar]['name'] = $temp['sn'][0]; $this->csvinfo['arrtempls'] [$tempvar]['dn'] = $temp['dn']; } } $arr_temp = array_flip($this->csvinfo['attr']); $this->csvinfo['arr_selected']= array($arr_temp['uid'],$arr_temp['sn'],$arr_temp['givenName'],$arr_temp['userPassword']); $smarty->assign("templates",$this->csvinfo['arrtemplates']); $smarty->assign("attrs",$this->csvinfo['attr']); /* Check permissions for import */ $acl = $this->ui->get_permissions($this->config->current['BASE'],"all/all"); if(!preg_match("/w/",$acl)){ if(isset($_POST['userfile']) || isset($_POST['sorted']) || isset($_POST['fileup'])){ msg_dialog::display(_("Permission error"), _("You've no permission to import CSV files!"), ERROR_DIALOG); } return ($smarty->fetch (get_template_path('contentcsv.tpl', TRUE))); } /* If the given dat from the csv File are sorted by the attributes */ if(isset($_POST['sorted'])) { /* Template Handling */ $smarty->assign("fileup",TRUE); $smarty->assign("sorted",TRUE); for($i = 0 ; $i < $this->csvinfo['rows'];$i++){ /* Preparing given Data */ $this->csvinfo['sorteddata'][$i]=array(); /* Go through every col */ for($a = 0; $a <= ($this->csvinfo['cols']); $a ++) { /* Append a status col at last, to show possibly errors */ if($a==($this->csvinfo['cols'])){ $this->csvinfo['sorteddata'][$i]["status"]="-"; } else { $cc = ($i * ($this->csvinfo['cols']))+$a; /* If theres a Attribut given for this col */ if(!empty($_POST[('row'.($a))])) { $this->csvinfo['sorteddata'][$i][$this->csvinfo['attr'][$_POST[('row'.($a))]]]=$this->csvinfo['data'][($cc)]; } } } } /* aleast one entry */ $rowcnt=0; if(isset($this->csvinfo['sorteddata'])){ $rowcnt ++; /* Set the col count */ $tblcolcount= count ($this->csvinfo['cols']); /* entrie count */ $tbl_entries= count ($this->csvinfo['count']); /* row count */ $tbl_rows = $tbl_entries / $tblcolcount; /* No error occurred */ $failing = FALSE; /* For every row */ for($i = 0; $i < $this->csvinfo['rows']; $i++){ /* Get elemenet */ $dat = $this->csvinfo['sorteddata'][$i]; /* If not all needed vars set .... */ if( ( empty($dat['sn']))||( empty($dat['givenName']))||( empty($dat['uid']))|| (!isset($dat['sn']))||(!isset($dat['givenName']))||(!isset($dat['uid']))){ /* Output Error */ msg_dialog::display(_("Error"), sprintf(_("Need at least %s, %s and %s to create users!"), bold("sn"), bold("givenName"), bold("uid")), ERROR_DIALOG); } else { /* Register usertab to trigger edit dialog */ $this->usertab= new usertabs($this->config, $this->config->data['TABS']['USERTABS'], 'new'); $keys = array_keys($dat); /* Set all submitted vars */ if(is_array($keys)) foreach($keys as $key) { if($key != "status"){ $this->usertab->$key = $dat[$key]; } } /* Initialize template */ if($this->csvinfo['tplid']!=0){ $this->usertab->adapt_from_template($this->csvinfo['arrtempls'][$this->csvinfo['tplid']]['dn']); $this->usertab->save_object(); } else { /* Reset vars */ if(is_array($keys)) foreach($keys as $key) { if($key != "status"){ $this->usertab->by_object['user']->$key = $dat[$key]; } } } // Setting user Password if((isset($dat['userPassword']))&&(!empty($dat['userPassword']))) $password = $dat['userPassword']; else { $rand_str=""; $feed = "0123456789abcdefghijklmnopqrstuvwxyz"; for ($i=0; $i < 8; $i++) { $rand_str .= substr($feed, rand(0, strlen($feed)-1), 1); } $password = $rand_str; } /* Insert in the LDAP tree */ if(count($this->usertab->check())) { msg_dialog::displayChecks($this->usertab->check()); $this->csvinfo['sorteddata'][$i]['status']=""._("failed").""; $failing = $i+1; break; } else { $this->csvinfo['sorteddata'][$i]['status']=_("OK"); $this->usertab->save(); if(!change_password($this->usertab->dn,$password,FALSE,'','', $message)){ msg_dialog::displayChecks(array($message)); } } } } $pointsbefore = FALSE; $pointsafter = FALSE; /* Get Attributs for Tableheadline */ $this->csvinfo['colsstr'] = array(); for($i =0; $i <= $this->csvinfo['cols']; $i++) { if(!empty($_POST[('row'.$i)])){ $this->csvinfo['colsstr'][$i] = $this->csvinfo['attr'][$_POST[('row'.$i)]]; } } /*Create array with data for the template */ if($failing == FALSE){ $dataouts= array(); for($i =1; $i <= $this->csvinfo['shownrowscount']; $i++) { if(is_array($this->csvinfo['sorteddata'][($i-1)])){ foreach($this->csvinfo['sorteddata'][($i-1)] as $dat){ $dataouts[]=$dat; } } } if($this->csvinfo['rows']> $this->csvinfo['shownrowscount']){ $pointsafter = TRUE; } } else { $pointsbefore = TRUE; $pointsafter = TRUE; $begin = $failing -3; if($begin <0) { $begin =0; $pointsbefore = FALSE; } $end = $failing + 2; if($end > $this->csvinfo['rows']) { $end = $this->csvinfo['rows']+1; $pointsafter = FALSE; } $this->csvinfo['shownrowscount']=$end - $begin; if($this->csvinfo['shownrowscount']> $this->csvinfo['rows'])$this->csvinfo['shownrowscount']=$this->csvinfo['rows']; $dataouts = array(); for($i =$begin; $i <= $end; $i++) { if(is_array($this->csvinfo['sorteddata'][($i-1)])){ foreach($this->csvinfo['sorteddata'][($i-1)] as $dat){ $dataouts[]=$dat; } } } } $tmparr2 = $this->csvinfo['colsstr']; $tmparr2[]=_("status"); /* Error? */ if ($failing){ msg_dialog::display(_("Error"), sprintf(_("Cannot add entry %s!"), bold($failing)), ERROR_DIALOG); } $smarty->assign("error",$failing); /* Set vars to smarty */ $smarty->assign("cols",count($tmparr2)); $smarty->assign("anz" ,$this->csvinfo['count']); $smarty->assign("rows",$this->csvinfo['shownrowscount']); $cnt = 0 ; $tmp2 = $tmp3 = array(); if(is_array($dataouts)) foreach($dataouts as $tmp){ $tmp2[] = $tmp; $cnt ++ ; if($cnt >= count($tmparr2)){ $tmp3[] = $tmp2; $tmp2= array(); $cnt = 0; } } $smarty->assign("head",$tmparr2); $smarty->assign("data",$tmp3); /* Set other vars */ $smarty->assign("i",1); $smarty->assign("ie",0); $smarty->assign("tplid",$this->csvinfo['tplid']); $smarty->assign("pointsafter",$pointsafter); $smarty->assign("pointsbefore",$pointsbefore); } else { /* Set Template ID */ $tplid = $_POST['tplid']; $smarty->assign("tpl",$arrtemplates[$tplid]); msg_dialog::display(_("Information"), _("Nothing to import!"), INFO_DIALOG); } /* If theres a File uploaded */ } else { /* Check if theres a file uploaded */ if(!empty($_FILES['userfile']['name'])){ $handle = NULL; $filename = gosa_file_name($_FILES['userfile']['tmp_name']); if((!isset($_FILES['userfile']['name']))||(!isset($_POST['fileup']))) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not found")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } elseif(!$_FILES['userfile']['size'] > 0 ) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file is empty")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } /* Is there a tmp file, which we can use ? */ elseif(!file_exists($filename)) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not found")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } elseif(!$handle = @fopen($filename,"r")) { msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not readable")), ERROR_DIALOG); $smarty->assign("LDIFError",TRUE); } else { $smarty->assign("fileup",TRUE); $str = ""; /* Reading content */ while(!feof($handle)) { $str .= fread($handle,1024); } $lines = preg_split("/\n/",$str); $anz = 0; $rest = 0; $data = array(); /* check colum count */ if(is_array($lines)) foreach($lines as $line) { /* continue if theres a comment */ if(substr(trim($line),0,1)=="#"){ continue; } $line= str_replace ("\t","",$line); $cells = explode(",",$line ) ; if(count($cells)> $anz ){ $anz = count($cells); } } /* At least one entry */ if($anz >1) { /* Generate array with outpu info */ if(is_array($lines)) foreach($lines as $line) { $rest = 0; $cnt = 0; /* dont use comments or empty lines */ if((substr(trim($line),0,1)=="#")||(empty($line))){ continue; } /* replace \t to , */ $line= str_replace ("\t" ,"" ,$line); /* get all elements */ $cells = explode(",",$line ) ; /* attach all elements to data array */ if(is_array($cells)) foreach($cells as $cell) { if(!empty($cell)) { $cnt++; $data[]=trim($cell); } } /* cell count less than anz, attach some empty fields */ if(($cnt != $anz)&&(!empty($cnt))) { $rest = $anz - $cnt; for($i = 0 ; $i < $rest ; $i ++){ $data[] = " "; } } } unset($this->csvinfo['sorteddata']); unset($this->csvinfo['colsstr']); unset($this->csvinfo['sorteddata']); $this->csvinfo['cols'] = $anz; $this->csvinfo['data'] = array(); $this->csvinfo['data'] = $data; $this->csvinfo['count'] = count($this->csvinfo['data']); if($this->csvinfo['count']> (6* $this->csvinfo['cols'])) { /* only show 6 rows in ouptuttablei */ $datouttemp = array_chunk($this->csvinfo['data'],(6* $this->csvinfo['cols'])); $this->csvinfo['dataout']=$datouttemp[0]; $this->csvinfo['shownrowscount'] = 6; } else { $this->csvinfo['shownrowscount'] = (count($this->csvinfo['data']))/$this->csvinfo['cols']; $this->csvinfo['dataout']= $this->csvinfo['data']; } $this->csvinfo['tplid'] = $_POST['template']; $this->csvinfo['templatestr'] = $this->csvinfo['arrtemplates' ][$this->csvinfo['tplid']]; $this->csvinfo['count'] = count($this->csvinfo['data']); $this->csvinfo['rows'] = (count($this->csvinfo['data'])/$anz); $i = 0; $tmp = $tmp2= array(); if(is_array($this->csvinfo['dataout'])) foreach($this->csvinfo['dataout'] as $dat){ $tmp[]= $dat; $i++; if($i >=$this->csvinfo['cols']){ $i = 0; $tmp2[] = $tmp; $tmp = array(); } } /* Set Templateid */ $smarty->assign("tplid",$this->csvinfo['tplid']); /* Set Template */ $smarty->assign("tpl",$this->csvinfo['templatestr']); /* Temp var 1 */ $smarty->assign("ia",1); /* Temp var 2 */ $smarty->assign("i",0); /* Num rows */ $smarty->assign("rows",$this->csvinfo['shownrowscount']); for($i = 0 ; $i < $anz; $i ++) $this->csvinfo['arr_selected'][]="0"; $smarty->assign("selectedattrs",$this->csvinfo['arr_selected']); /* Entrie count5 */ $smarty->assign("anz",$this->csvinfo['cols']); /* Array with data */ $smarty->assign("data",$tmp2); @fclose($handle); } else { $smarty->assign("tpl",$this->csvinfo['attr'][$_POST['template']]); $smarty->assign("LDIFError",TRUE); $smarty->assign("fileup",FALSE); msg_dialog::display(_("Error"), _("Cannot find CSV data in the selected file!"), ERROR_DIALOG); } } } } /* Show main page */ return ($smarty->fetch (get_template_path('contentcsv.tpl', TRUE))); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/contentimport.tpl0000644000175000017500000000305311424574755024406 0ustar cajuscajusTemporary disabled gosa-plugin-ldapmanager-2.7.4/addons/ldapmanager/main.inc0000644000175000017500000000260411354074725022372 0ustar cajuscajusset_acl_category("ldapmanager"); session::set('ldif',$ldif); } $ldif = session::get('ldif'); /* Execute formular */ $display= $ldif->execute (); $display.= "\n"; /* Store changes in session */ session::set('ldif',$ldif); } ?> gosa-plugin-ldapmanager-2.7.4/locale/0000755000175000017500000000000011752422556016466 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/ru/0000755000175000017500000000000011752422556017114 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/ru/LC_MESSAGES/0000755000175000017500000000000011752422556020701 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/ru/LC_MESSAGES/messages.po0000644000175000017500000004211511475426262023053 0ustar cajuscajus# Translation of messages.po to Russian # Valia V. Vaneeva , 2004. # $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2005-04-18 14:35+0300\n" "Last-Translator: Igor Muratov \n" "Language-Team: ALT Linux Team\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: poEdit 1.3.1\n" #: html/getxls.php:88 msgid "Birthday" msgstr "" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Пол" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 #, fuzzy msgid "Surname" msgstr "Имя сервера" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Имя" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Язык" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Пользователи" #: html/getxls.php:96 html/getxls.php:343 #, fuzzy, php-format msgid "User list of %s on %s" msgstr "Список пользователей" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "Идентификатор пользователя" #: html/getxls.php:123 html/getxls.php:286 #, fuzzy msgid "Members" msgstr "Включаемые объекты" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Группы" #: html/getxls.php:133 html/getxls.php:362 #, fuzzy, php-format msgid "Groups of %s on %s" msgstr "Группа пользователя" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Серверы" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Описание" #: html/getxls.php:161 html/getxls.php:313 #, fuzzy msgid "Computers" msgstr "не полный" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 #, fuzzy msgid "Common name" msgstr "Местоположение" #: html/getxls.php:187 msgid "Server name" msgstr "Имя сервера" #: html/getxls.php:197 html/getxls.php:381 #, fuzzy, php-format msgid "Servers of %s on %s" msgstr "Серверы" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Отображаемое имя" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Факс" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Фамилия" #: html/getxls.php:225 msgid "Home phone" msgstr "Домашний телефон" #: html/getxls.php:226 msgid "Home postal address" msgstr "" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Отчество" #: html/getxls.php:226 msgid "Location" msgstr "Местоположение" #: html/getxls.php:227 #, fuzzy msgid "Mail address" msgstr "MAC-адрес" #: html/getxls.php:227 #, fuzzy msgid "Mobile phone" msgstr "Домашний телефон" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Город" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 #, fuzzy msgid "Postal address" msgstr "Почтовый индекс" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Пейджер" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 #, fuzzy msgid "Phone number" msgstr "Телефонные номера" #: html/getxls.php:229 msgid "Address" msgstr "Адрес" #: html/getxls.php:229 msgid "Postal code" msgstr "Почтовый индекс" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Адм. единица" #: html/getxls.php:230 #, fuzzy msgid "Function" msgstr "Действие" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Адресная книга" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Адресная книга" #: html/getxls.php:246 #, fuzzy msgid "Common Name" msgstr "Местоположение" #: html/getxls.php:283 #, fuzzy msgid "Day of birth" msgstr "Дата рождения" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 #, fuzzy msgid "Email address" msgstr "Основной адрес" #: html/getxls.php:301 msgid "Mobile" msgstr "Мобильный" #: html/getxls.php:301 msgid "Organization" msgstr "Организация" #: html/getxls.php:301 #, fuzzy msgid "Organizational unit" msgstr "Организация" #: html/getxls.php:302 #, fuzzy msgid "Postal Code" msgstr "Почтовый индекс" #: html/getxls.php:303 #, fuzzy msgid "Title" msgstr "Файлы" #: html/getxls.php:306 msgid "Full" msgstr "" #: html/getxls.php:397 #, fuzzy, php-format msgid "Computers of %s on %s" msgstr "не полный" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "Права для членов группы" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "У вас недостаточно прав для создания пользователя в этой ветке." #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "Экспорт в LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Что-то будет" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "Удалить" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "Значение поля \"Файлы\" некорректно." #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "Имя сервера" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "Ошибка LDAP:" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "Терминал-сервер" #: addons/ldapmanager/class_import.inc:125 #, fuzzy, php-format msgid "Undefined flag %s!" msgstr "не определена" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "Модуль экспорта в LDIF позволяет получать полный образ текущего каталога " "LDAPв формате ldif. Эти образы можно сохранять как резервные копии или " "использовать при инициализации нового сервера." #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Просмотр" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 #, fuzzy msgid "Remove existing entries first" msgstr "Удалить сервис DNS" #: addons/ldapmanager/contentimport.tpl:48 #, fuzzy msgid "Import successful" msgstr "Импорт успешен." #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Импортировать" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "Модуль экспорта в LDIF позволяет получать полный образ текущего каталога " "LDAPв формате ldif. Эти образы можно сохранять как резервные копии или " "использовать при инициализации нового сервера." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Экспорт объекта" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Выбрать подразделение для экспорта" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Экспорт" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Выбрать подразделение для экспорта" #: addons/ldapmanager/contentexportxls.tpl:59 #, fuzzy msgid "Export successful" msgstr "Экспорт успешен." #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Щелкните здесь, чтобы сохранить образ базы данных LDAP в файл" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Щелкните здесь, чтобы сохранить результаты экспорта" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "Ошибка LDAP:" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 #, fuzzy msgid "LDAP manager" msgstr "Экспорт в LDIF" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "Импортировать" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "Экспорт" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "Модуль экспорта в LDIF позволяет получать полный образ текущего каталога " "LDAPв формате ldif. Эти образы можно сохранять как резервные копии или " "использовать при инициализации нового сервера." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "" #: addons/ldapmanager/class_exportxls.inc:6 #, fuzzy msgid "XLS import" msgstr "Импортировать" #: addons/ldapmanager/class_exportxls.inc:111 #, fuzzy msgid "Cannot export selected entries!" msgstr "Включаемые объекты" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "У вас недостаточно прав для удаления этого подразделения." #: addons/ldapmanager/contentcsv.tpl:4 msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "Импортировать" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "" #: addons/ldapmanager/contentcsv.tpl:21 #, fuzzy msgid "Select template" msgstr "Создать шаблон" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "" #: addons/ldapmanager/contentcsv.tpl:38 msgid "There was an error during the import of your data." msgstr "" #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Состояние" #: addons/ldapmanager/contentcsv.tpl:82 #, fuzzy msgid "Selected Template" msgstr "Выберите режим терминала" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Настройки Samba" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "У вас недостаточно прав для удаления этого подразделения." #: addons/ldapmanager/class_csvimport.inc:169 #, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:217 #, fuzzy msgid "failed" msgstr "Ошибка" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 #, fuzzy msgid "status" msgstr "Состояние" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "состояние неизвестно" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Информация" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:502 #, fuzzy msgid "Cannot find CSV data in the selected file!" msgstr "Удалить" #: addons/ldapmanager/class_export.inc:6 #, fuzzy msgid "CSV import" msgstr "Импортировать" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #, fuzzy #~ msgid "Adressbook" #~ msgstr "Адресная книга" #, fuzzy #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "Щелкните здесь, чтобы сохранить образ базы данных LDAP в файл" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "У вас недостаточно прав для удаления этого подразделения." #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "Изменить параметры" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "Экспорт в LDIF" #~ msgid "Click here to save the LDAP Export " #~ msgstr "Щелкните здесь, чтобы сохранить результаты экспорта" #, fuzzy #~ msgid "Cannot insert entry '%s'!" #~ msgstr "состояние неизвестно" #, fuzzy #~ msgid "Ldap manger" #~ msgstr "Экспорт в LDIF" #, fuzzy #~ msgid "Surename" #~ msgstr "Имя сервера" #~ msgid "Back" #~ msgstr "Назад" #, fuzzy #~ msgid "Ldap manager addon" #~ msgstr "Экспорт в LDIF" gosa-plugin-ldapmanager-2.7.4/locale/pl/0000755000175000017500000000000011752422556017101 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/pl/LC_MESSAGES/0000755000175000017500000000000011752422556020666 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/pl/LC_MESSAGES/messages.po0000644000175000017500000003753111475426262023046 0ustar cajuscajusmsgid "" msgstr "" "Project-Id-Version: polski\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2007-07-14 21:45+0100\n" "Last-Translator: Piotr Rybicki \n" "Language-Team: Piotr Rybicki \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Polish\n" "X-Poedit-Country: POLAND\n" "X-Poedit-SourceCharset: iso-8859-2\n" "X-Poedit-Basepath: tedst\n" #: html/getxls.php:88 msgid "Birthday" msgstr "Urodziny" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Płeć" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Nazwisko" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Imię" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Język" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Użytkownicy" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Lista użytkowników %s na %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "Identyfikator użytkownika" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Członkowie" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Grupy" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Grupy %s na %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Serwery" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Opis" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Komputery" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Nazwa potoczna" #: html/getxls.php:187 msgid "Server name" msgstr "Nazwa serwera" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Serwery %s na %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Wyświetl nazwę" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Imię" #: html/getxls.php:225 msgid "Home phone" msgstr "Telefon domowy" #: html/getxls.php:226 msgid "Home postal address" msgstr "Adres domowy" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Inicjały" #: html/getxls.php:226 msgid "Location" msgstr "Lokalizacja" #: html/getxls.php:227 msgid "Mail address" msgstr "Adres email" #: html/getxls.php:227 msgid "Mobile phone" msgstr "Telefon komórkowy" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Miasto" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "Adres pocztowy" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Pager" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Numer telefonu" #: html/getxls.php:229 msgid "Address" msgstr "Adres" #: html/getxls.php:229 msgid "Postal code" msgstr "Kod pocztowy" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Stan" #: html/getxls.php:230 msgid "Function" msgstr "Funkcja" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Książka adresowa" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Książka adresowa %s na %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Zwykła nazwa" #: html/getxls.php:283 msgid "Day of birth" msgstr "Data urodzenia" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "Adres email" #: html/getxls.php:301 msgid "Mobile" msgstr "Komórka" #: html/getxls.php:301 msgid "Organization" msgstr "Organizacja" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Jednostka organizacyjna" #: html/getxls.php:302 msgid "Postal Code" msgstr "Kod Pocztowy" #: html/getxls.php:303 msgid "Title" msgstr "Tytuł" #: html/getxls.php:306 msgid "Full" msgstr "Pełne" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Komputery %s na %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "Uprawnienia" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "Brak uprawnień do wysyłania wiadomości!" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "export LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "To robi coś" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "Błąd" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "Nie można stworzyć pliku '%s'." #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "Wybrany plik jest pusty" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "Właściciel pliku" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "błąd LDAP:" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "Terminal Server" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "Import LDIF umożliwia wprowadzenie zestawu wpisów do działającego katalogu " "LDAP jako ldif. Można użyć tej funkcjonalności aby dodać nowe lub " "zmodyfikować isniejące wpisy. Pamiętaj, że GOsa nie sprawdza zgodności ldif " "z systemem GOsa." #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "Importuj plik LDIF" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Przeglądaj" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr " Zmień istniejące obiekty, zachowaj nienaruszone atrybuty" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" "Nadpisz istniejące obiekty, wszystkie wyświetlone atrybuty zostaną usunięte" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "Najpierw usuń istniejące wpisy" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "Import powiódł się" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Import" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "Dodatek export XLS umożliwia ściąganie snapshot'u działającego katalogu LDAP " "jalo xls. Można zapisać te pliki dla dokumentacji." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Eksportuj pojedynczy wpis" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Wybierz dane które chcesz eksportować" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Export" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "Eksportuj kompletny XLS dla" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "Eksportuj IVBB LDIF dla" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Wybierz departament, który chcesz eksportować" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "Eksport zakończony powodzeniem" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Kliknij tutaj aby zapisać kompletną bazę LDAP do pliku" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Kliknij tutaj aby zapisać Eksport LDAP do pliku xls" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "błąd LDAP:" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "Menedżer LDAP" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "Import" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "Export" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "Dodatek eksport LDIF zapewnia metody do sciągnięcia snapshot'u działającego " "katalogu LDAP jako ldif. Można zapisać te pliki dla celów bezpieczeństwa lub " "podczas inicjalizacji nowego serwera." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "Eksportuj kompletny LDIF dla" #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "Import XLS" #: addons/ldapmanager/class_exportxls.inc:111 #, fuzzy msgid "Cannot export selected entries!" msgstr "Utwórz obiekty" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "Brak uprawnień do eksportowania bazy LDAP." #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "Dodatek imoprt CSV zapewnia metody do wygenerowania kont użytkowników z " "pliku zawierającego wartości oddzielone przecinkami. Administrator może " "zdecydować które kolumny powinny być zmapowane na jakie atrybuty. Proszę " "zauważyć że trzeba zmapować conajmniej zestaw UID, GIVENNAME i SURENAME." #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "import CVS" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "Wybierz plik CSV do importu" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "Wybierz Szablon" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "Wszystkie elementy zostały prawidłowo zapisane w bazie LDAP." #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "Ups. Wystąpił błąd podczas importu danych." #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "Raport z importu:" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Status:" #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "Wybrany Szablon" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Ustawienia grupy" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "Brak uprawnień do wykonania importu CSV." #: addons/ldapmanager/class_csvimport.inc:169 #, fuzzy, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "Potrzeba 'sn', 'givenName' oraz 'uid' do utworzenia użytkownika." #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "błąd" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "status" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "Nie można usunąć wpisu '%s!" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Informacja" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "Nic do importowania!" #: addons/ldapmanager/class_csvimport.inc:502 #, fuzzy msgid "Cannot find CSV data in the selected file!" msgstr "Nie można stworzyć pliku '%s'." #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "import CVS" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "Książka adresowa" #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "Kliknij tutaj aby zapisać kompletną bazę LDAP do pliku xls" #~ msgid "ok" #~ msgstr "ok" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "Brak uprawnień do usunięcia tego departamentu." #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "Parametr kernela" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "Menedżer LDAP" #~ msgid "Click here to save the LDAP Export " #~ msgstr "Kliknij tutaj aby zapisać Eksport LDAP" #, fuzzy #~ msgid "Cannot insert entry '%s'!" #~ msgstr "Nieznany wpis '%s'!" #, fuzzy #~ msgid "Ldap manger" #~ msgstr "Menedżer LDAP" #~ msgid "Surename" #~ msgstr "Nazwisko" #~ msgid "Back" #~ msgstr "Wróć" #, fuzzy #~ msgid "Ldap manager addon" #~ msgstr "Menedżer LDAP" gosa-plugin-ldapmanager-2.7.4/locale/it/0000755000175000017500000000000011752422556017102 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/it/LC_MESSAGES/0000755000175000017500000000000011752422556020667 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/it/LC_MESSAGES/messages.po0000644000175000017500000003405011475426262023040 0ustar cajuscajus# translation of messages.po to Italian # Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/ # Copyright (c) 2005 Alessandro Amici # Alessandro Amici , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2005-11-18 15:26+0100\n" "Last-Translator: Alessandro Amici \n" "Language-Team: Italian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #: html/getxls.php:88 msgid "Birthday" msgstr "" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Sesso" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Cognome" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Nome" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Lingua" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Utenti" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Lista degli utenti di %s su %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Membri" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Gruppi di utenti" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Gruppi di %s su %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 #, fuzzy msgid "Servers" msgstr "Server" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Descrizione" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Computer" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Nome comune" #: html/getxls.php:187 #, fuzzy msgid "Server name" msgstr "Server" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Server di %s su %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Mostra il nome" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Cognome" #: html/getxls.php:225 msgid "Home phone" msgstr "Telefono privato" #: html/getxls.php:226 msgid "Home postal address" msgstr "" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Iniziali" #: html/getxls.php:226 msgid "Location" msgstr "Località" #: html/getxls.php:227 msgid "Mail address" msgstr "Indirizzo principale" #: html/getxls.php:227 msgid "Mobile phone" msgstr "Cellulare" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Città" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "CAP" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Pager" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Numero di telefono" #: html/getxls.php:229 msgid "Address" msgstr "Indirizzo" #: html/getxls.php:229 msgid "Postal code" msgstr "CAP" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Stato" #: html/getxls.php:230 msgid "Function" msgstr "Funzione" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Rubrica" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Rubrica di %s su %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Nome comune" #: html/getxls.php:283 msgid "Day of birth" msgstr "Data di nascita" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "Indirizzo principale" #: html/getxls.php:301 msgid "Mobile" msgstr "Cellulare" #: html/getxls.php:301 msgid "Organization" msgstr "Organizzazione" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Unità del'organizzazione" #: html/getxls.php:302 msgid "Postal Code" msgstr "CAP" #: html/getxls.php:303 msgid "Title" msgstr "Titolo" #: html/getxls.php:306 msgid "Full" msgstr "" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Computer di %s su %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "Permessi" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "Non hai il permesso di cambiare la tua password." #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "Esporta in LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Questo fa qualcosa" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "Rimuovi" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "Rimuovi" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "Cognome" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "Errore LDAP" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "Terminal Server" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "" #: addons/ldapmanager/contentimport.tpl:10 msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 #, fuzzy msgid "Browse" msgstr "Base" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 #, fuzzy msgid "Remove existing entries first" msgstr "Rimuovi le estensioni di posta" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Importa" #: addons/ldapmanager/contentexportxls.tpl:3 msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Scegli il dipartimento di base per la ricerca" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Esporta" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Scegli il dipartimento di base per la ricerca" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Non hai il permesso di cambiare la tua password." #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Non hai il permesso di cambiare la tua password." #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "Errore LDAP" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "Amministrazione LDAP" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "Importa" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "Esporta" #: addons/ldapmanager/contentexport.tpl:2 msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "" #: addons/ldapmanager/class_exportxls.inc:6 #, fuzzy msgid "XLS import" msgstr "Importa da formato CSV" #: addons/ldapmanager/class_exportxls.inc:111 #, fuzzy msgid "Cannot export selected entries!" msgstr "Gruppo di oggetti" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "Non hai il permesso di cambiare la tua password." #: addons/ldapmanager/contentcsv.tpl:4 msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "Importa da formato CSV" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "" #: addons/ldapmanager/contentcsv.tpl:21 #, fuzzy msgid "Select template" msgstr "Template" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "" #: addons/ldapmanager/contentcsv.tpl:38 msgid "There was an error during the import of your data." msgstr "" #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Stato" #: addons/ldapmanager/contentcsv.tpl:82 #, fuzzy msgid "Selected Template" msgstr "Template" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Impostazioni FAX" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "Non hai il permesso di cambiare la tua password." #: addons/ldapmanager/class_csvimport.inc:169 #, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:217 #, fuzzy msgid "failed" msgstr "Fallito" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 #, fuzzy msgid "status" msgstr "Stato" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "Rimuovi" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Informazioni" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:502 #, fuzzy msgid "Cannot find CSV data in the selected file!" msgstr "Rimuovi" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "Importa da formato CSV" #: addons/ldapmanager/class_export.inc:74 #, fuzzy, php-format msgid "No such object %s!" msgstr "Oggetti membri" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "Rubrica" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "Non hai il permesso di cambiare la tua password." #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "Parametro" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "Amministrazione LDAP" #, fuzzy #~ msgid "Ldap manger" #~ msgstr "Amministrazione LDAP" #~ msgid "Surename" #~ msgstr "Cognome" #~ msgid "Back" #~ msgstr "Indietro" #, fuzzy #~ msgid "Ldap manager addon" #~ msgstr "Amministrazione LDAP" gosa-plugin-ldapmanager-2.7.4/locale/pt_BR/0000755000175000017500000000000011752422556017474 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/pt_BR/LC_MESSAGES/0000755000175000017500000000000011752422556021261 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/pt_BR/LC_MESSAGES/messages.po0000644000175000017500000004106511475426262023436 0ustar cajuscajus# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: GOsa plugins - ldapmanager\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2010-03-11 20:47-0300\n" "Last-Translator: Marcos Amorim \n" "Language-Team: Marcos Amorim Clever de Oliveira " "\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: BRAZIL\n" #: html/getxls.php:88 #, fuzzy msgid "Birthday" msgstr "Aniversário" #: html/getxls.php:88 html/getxls.php:283 #, fuzzy msgid "Sex" msgstr "Sexo" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 #, fuzzy msgid "Surname" msgstr "Sobrenome" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 #, fuzzy msgid "Given name" msgstr "Nome fornecido" #: html/getxls.php:88 html/getxls.php:283 #, fuzzy msgid "Language" msgstr "Linguagem" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 #, fuzzy msgid "Users" msgstr "Usuários" #: html/getxls.php:96 html/getxls.php:343 #, fuzzy, php-format msgid "User list of %s on %s" msgstr "Lista de usuários de %s a %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 #, fuzzy msgid "User ID" msgstr "ID do usuário" #: html/getxls.php:123 html/getxls.php:286 #, fuzzy msgid "Members" msgstr "Membros" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 #, fuzzy msgid "Groups" msgstr "Grupos" #: html/getxls.php:133 html/getxls.php:362 #, fuzzy, php-format msgid "Groups of %s on %s" msgstr "Grupos de %s a %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 #, fuzzy msgid "Servers" msgstr "Servidores" #: html/getxls.php:160 html/getxls.php:289 #, fuzzy msgid "Description" msgstr "Descrição" #: html/getxls.php:161 html/getxls.php:313 #, fuzzy msgid "Computers" msgstr "Computadores" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 #, fuzzy msgid "Common name" msgstr "Nome do Objeto" #: html/getxls.php:187 #, fuzzy msgid "Server name" msgstr "Nome do Objeto" #: html/getxls.php:197 html/getxls.php:381 #, fuzzy, php-format msgid "Servers of %s on %s" msgstr "Servidores de %s a %s" #: html/getxls.php:224 html/getxls.php:299 #, fuzzy msgid "Display name" msgstr "Exibir nome" #: html/getxls.php:224 html/getxls.php:299 #, fuzzy msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 #, fuzzy msgid "Name" msgstr "Nome" #: html/getxls.php:225 #, fuzzy msgid "Home phone" msgstr "Telefone residencial" #: html/getxls.php:226 #, fuzzy msgid "Home postal address" msgstr "Endereço residêncial" #: html/getxls.php:226 html/getxls.php:300 #, fuzzy msgid "Initials" msgstr "Iniciais" #: html/getxls.php:226 #, fuzzy msgid "Location" msgstr "Localização" #: html/getxls.php:227 #, fuzzy msgid "Mail address" msgstr "Endereço de Email" #: html/getxls.php:227 #, fuzzy msgid "Mobile phone" msgstr "Celular" #: html/getxls.php:227 html/getxls.php:300 #, fuzzy msgid "City" msgstr "Cidade" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 #, fuzzy msgid "Postal address" msgstr "Código Postal" #: html/getxls.php:228 html/getxls.php:302 #, fuzzy msgid "Pager" msgstr "Pager" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 #, fuzzy msgid "Phone number" msgstr "Número de telefone" #: html/getxls.php:229 #, fuzzy msgid "Address" msgstr "Endereço" #: html/getxls.php:229 #, fuzzy msgid "Postal code" msgstr "Código postal" #: html/getxls.php:230 html/getxls.php:303 #, fuzzy msgid "State" msgstr "Estado" #: html/getxls.php:230 #, fuzzy msgid "Function" msgstr "Função" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Catálogo de Endereços" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Catálogo de endereços de %s a %s" #: html/getxls.php:246 #, fuzzy msgid "Common Name" msgstr "Nome do Objeto" #: html/getxls.php:283 #, fuzzy msgid "Day of birth" msgstr "Data de nascimento" #: html/getxls.php:289 #, fuzzy msgid "UID" msgstr "UID" #: html/getxls.php:301 #, fuzzy msgid "Email address" msgstr "E-mail" #: html/getxls.php:301 #, fuzzy msgid "Mobile" msgstr "Celular" #: html/getxls.php:301 #, fuzzy msgid "Organization" msgstr "Organização" #: html/getxls.php:301 #, fuzzy msgid "Organizational unit" msgstr "Unidade organizacional" #: html/getxls.php:302 #, fuzzy msgid "Postal Code" msgstr "CEP" #: html/getxls.php:303 #, fuzzy msgid "Title" msgstr "Título" #: html/getxls.php:306 #, fuzzy msgid "Full" msgstr "Cheio" #: html/getxls.php:397 #, fuzzy, php-format msgid "Computers of %s on %s" msgstr "Computadores de %s a %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "Erro de permissão" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "Você não tem permissão para fazer exportações do LDAP" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 #, fuzzy msgid "LDIF export" msgstr "Exportar LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 #, fuzzy msgid "This does something" msgstr "Isto faz algo" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 #, fuzzy msgid "Error" msgstr "Erro" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "Impossível ler o estado do arquivo: %s" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "O arquivo especificado está vazio." #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "Arquivo não encontrado" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy msgid "file not readable" msgstr " %s (não é um arquivo simples)\n" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "Erro LDAP" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "Erro interno" #: addons/ldapmanager/class_import.inc:125 #, fuzzy, php-format msgid "Undefined flag %s!" msgstr "Trocar flag remover" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "O plugin de importação LDIF provê métodos para enviar definições de entradas " "para o diretório LDAP em ldif. Você pode usá-lo para adicionar ou modificar " "entradas existentes. Lembre-se que o GOsa não verifica conformidades nos " "ldifs." #: addons/ldapmanager/contentimport.tpl:17 #, fuzzy msgid "Import LDIF File" msgstr "Importar arquivo LDIF" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 #, fuzzy msgid "Browse" msgstr "Navegar" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "" #: addons/ldapmanager/contentimport.tpl:48 #, fuzzy msgid "Import successful" msgstr "Importação bem sucedida" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 #, fuzzy msgid "Import" msgstr "Importar" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "O plugin de exportação XLS provê métodos para recebimento de uma amostra " "completa do diretório LDAP em xls. Você pode salvar estes arquivos para " "documentação." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 #, fuzzy msgid "Export single entry" msgstr "Exportar uma entrada simples" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Escolha a data para exportar" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 #, fuzzy msgid "Export" msgstr "Exportar" #: addons/ldapmanager/contentexportxls.tpl:25 #, fuzzy msgid "Export complete XLS for" msgstr "Exportar XLS completo para" #: addons/ldapmanager/contentexportxls.tpl:39 #, fuzzy msgid "Export IVBB LDIF for" msgstr "Exportar IVBB LDIF para" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Escolha o departamento para exportar" #: addons/ldapmanager/contentexportxls.tpl:59 #, fuzzy msgid "Export successful" msgstr "Exportação bem sucedida" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Clique aqui para salvar a base de dados LDAP completa para um arquivo" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Clique aqui para salvar a exportação do LDAP para um arquivo xls" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "Erro LDAP" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 #, fuzzy msgid "LDAP manager" msgstr "Gerenciador LDAP" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "Importar" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "Exportar" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "O plugin de exportação LDIF provê métodos para recebimento de uma amostra " "completa do diretório LDAP em ldif. Você pode salvar estes arquivos como " "backup ou para criação de um novo servidor." #: addons/ldapmanager/contentexport.tpl:21 #, fuzzy msgid "Export complete LDIF for" msgstr "Exportar LDIF completo para" #: addons/ldapmanager/class_exportxls.inc:6 #, fuzzy msgid "XLS import" msgstr "Importação XLS" #: addons/ldapmanager/class_exportxls.inc:111 msgid "Cannot export selected entries!" msgstr "" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "Você não tem permissão para excluir esse objeto:" #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "O plugin de importação CSV provê métodos para geração de contas de usuários " "a partir de um arquivo contendo valores separados por vírgula. O " "administrador pode decidir qual coluna pode ser transferida para qual " "atributo. Note que deve ter definido pelo menos o UID, o Nome Fornecido e o " "Último Nome." #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "Importação CSV" #: addons/ldapmanager/contentcsv.tpl:12 #, fuzzy msgid "Select CSV file to import" msgstr "Selecione o arquivo CSV para importação" #: addons/ldapmanager/contentcsv.tpl:21 #, fuzzy msgid "Select template" msgstr "Selecione o modelo" #: addons/ldapmanager/contentcsv.tpl:36 #, fuzzy msgid "All entries have been written to the LDAP database successfully." msgstr "Todas as entradas foram escritas na base de dados LDAP com sucesso." #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "Opa. Aconteceu um erro durante a importação dos seus dados." #: addons/ldapmanager/contentcsv.tpl:41 #, fuzzy msgid "Here is the status report for the import:" msgstr "Aqui está o relatório de estatus da importação:" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Estatus:" #: addons/ldapmanager/contentcsv.tpl:82 #, fuzzy msgid "Selected Template" msgstr "Modelo selecionado" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Objetos membros" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "Você não tem permissão para fazer importações CSV." #: addons/ldapmanager/class_csvimport.inc:169 #, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:217 #, fuzzy msgid "failed" msgstr "falhou" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 #, fuzzy msgid "status" msgstr "estatus" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "Não é possível remover a entrada %s!" #: addons/ldapmanager/class_csvimport.inc:329 #, fuzzy msgid "Information" msgstr "Informação" #: addons/ldapmanager/class_csvimport.inc:329 #, fuzzy msgid "Nothing to import!" msgstr "Nada para importar!" #: addons/ldapmanager/class_csvimport.inc:502 msgid "Cannot find CSV data in the selected file!" msgstr "" #: addons/ldapmanager/class_export.inc:6 #, fuzzy msgid "CSV import" msgstr "Importação CSV" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #, fuzzy #~ msgid "Adressbook" #~ msgstr "Catálogo de endereços" #, fuzzy #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "" #~ "Clique aqui para salvar o banco de dados completo do LDAP para um arquivo " #~ "xls" #, fuzzy #~ msgid "ok" #~ msgstr "ok" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "Você não tem permissão para criar este objeto!" #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "erro de leitura em %.250s" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "Gerenciador LDAP" #, fuzzy #~ msgid "Click here to save the LDAP Export " #~ msgstr "Clique aqui para salvar a exportação do LDAP" #, fuzzy #~ msgid "Cannot insert entry '%s'!" #~ msgstr "Inserir Entrada de _ChangeLog" gosa-plugin-ldapmanager-2.7.4/locale/es/0000755000175000017500000000000011752422556017075 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/es/LC_MESSAGES/0000755000175000017500000000000011752422556020662 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/es/LC_MESSAGES/messages.po0000644000175000017500000004046411475426262023041 0ustar cajuscajus# translation of admin.po to # translation of systems.po to # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # , 2010. msgid "" msgstr "" "Project-Id-Version: admin\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2010-01-25 01:11+0100\n" "Last-Translator: \n" "Language-Team: Spanish <>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: html/getxls.php:88 msgid "Birthday" msgstr "Fecha de nacimiento" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Sexo" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Apellido" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Nombre de pila" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Idioma" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Usuarios" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Lista de usuarios de %s en %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "Identificador (ID) de usuario" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Miembros" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Grupos" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Grupos de %s en %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Servidores" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Descripción" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Ordenadores" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Nombre común" #: html/getxls.php:187 msgid "Server name" msgstr "Nombre del servidor" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Servidores de %s en %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Nombre a Mostrar" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Nombre" #: html/getxls.php:225 msgid "Home phone" msgstr "Teléfono particular" #: html/getxls.php:226 msgid "Home postal address" msgstr "Dirección Postal personal" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Iniciales" #: html/getxls.php:226 msgid "Location" msgstr "Localización" #: html/getxls.php:227 msgid "Mail address" msgstr "Dirección correo electrónico" #: html/getxls.php:227 msgid "Mobile phone" msgstr "Teléfono móvil" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Ciudad" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "Código Postal" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Buscapersonas" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Número de teléfono" #: html/getxls.php:229 msgid "Address" msgstr "Dirección" #: html/getxls.php:229 msgid "Postal code" msgstr "Código Postal" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Provincia" #: html/getxls.php:230 msgid "Function" msgstr "!Función" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Libreta direcciones" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Libreta de direcciones de %s en %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Nombre común" #: html/getxls.php:283 msgid "Day of birth" msgstr "Fecha de nacimiento" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "Dirección de correo" #: html/getxls.php:301 msgid "Mobile" msgstr "Móvil" #: html/getxls.php:301 msgid "Organization" msgstr "Organización" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Unidad organizativa" #: html/getxls.php:302 msgid "Postal Code" msgstr "Código Postal" #: html/getxls.php:303 msgid "Title" msgstr "Título" #: html/getxls.php:306 msgid "Full" msgstr "Lleno" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Ordenadores de %s en %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 msgid "Permission error" msgstr "Error de permisos" #: html/getxls.php:480 msgid "You have no permission to do LDAP exports!" msgstr "¡No tiene permisos para realizar volcados LDAP!" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "Exportar a LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Esto hace algo" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "¡Necesita permisos de escritura para importar datos al arbol LDAP!" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "Error" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, php-format msgid "Cannot read uploaded file: %s" msgstr "No puedo leer el archivo: %s" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 msgid "file is empty" msgstr "el archivo está vacío" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 msgid "file not found" msgstr "fichero no encontrado" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "fichero no accesible" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 msgid "LDAP error" msgstr "Error LDAP" #: addons/ldapmanager/class_import.inc:125 msgid "Internal error" msgstr "Error interno" #: addons/ldapmanager/class_import.inc:125 #, fuzzy, php-format msgid "Undefined flag %s!" msgstr "¡Etiqueta sin definir: '%s'!" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "La extensión importar LDIF tiene los metodos para cargar una copia espejo de " "parte o todo el directorio LDAP en formato LDIF. Puede utilizar esta opción " "para añadir, crear o modificar entradas existentes. Recuerde que GOsa NO " "comprobara su ldifs." #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "Importar archivo LDIF" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Visualizar" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "Modificar los objetos existentes, manteniendo los atributos" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" "Sobreescribir los objetos existentes, los atributos no mostrados serán " "eliminados" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "Primero elimine las entradas existentes" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "Importación correcta" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Importar" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "La extensión exportar XLS tiene los métodos para crear una copia espejo del " "directorio LDAP actual en un archivo XLS. Puede grabar estos ficheros como " "documentación." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Exportar solo esta entrada" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Elija la información que quiera exportar" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Exportar" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "Exportación del XLS completada para" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "Exportación IVBB LDIF para" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Elija el departamento que quiera exportar" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "Exportación completada" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Pulse aquí para guardar la base de datos LDAP completa a un archivo" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Pulse aquí para guardar la exportación LDAP en un fichero XLS" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "Error LDAP" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "Administrador LDAP" #: addons/ldapmanager/class_ldif.inc:43 msgid "import" msgstr "importar" #: addons/ldapmanager/class_ldif.inc:43 msgid "export" msgstr "exportar" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "La extensión exportar LDIF tiene los metodos para crear una copia espejo del " "directorio LDAP actual como un archivo LDIF. Puede grabar estos archivos " "como copias de seguridad o para iniciar un nuevo servidor." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "Exportación del LDIF completada para" #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "Importar desde XLS" #: addons/ldapmanager/class_exportxls.inc:111 msgid "Cannot export selected entries!" msgstr "¡No se puede exportar las entradas seleccionadas!" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "¡No tiene permisos para exportar '%s'!" #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "La extensión importar desde CSV tiene los metodos para generar cuentas desde " "un archivo que tiene valores separados por comas. El administrador puede " "decidir cuales columnas que deberían corresponder a cada atributo. Observe " "que al menos debe tener 'UID', 'GIVENNAME' y 'SURENAME' configurados." #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "Importar desde CSV" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "Seleccione el archivo CSV para importar" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "Selecciona plantilla" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "" "Todas las entradas han sido escritas correctamente en la base de datos LDAP." #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "Error: Ha habido un error durante la importación de los datos." #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "Este es el informe de estado de la importación:" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Estado: " #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "Plantilla seleccionada" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Parametros de grupos" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "No tiene permisos para importar archivos CSV." #: addons/ldapmanager/class_csvimport.inc:169 #, fuzzy, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "Se necesita al menos 'sn', 'givenName' y 'uid' para crear un usuario." #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "error" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "estado" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "¡No se puede eliminar la entrada %s!" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Información" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "¡No hay nada que importar!" #: addons/ldapmanager/class_csvimport.inc:502 msgid "Cannot find CSV data in the selected file!" msgstr "¡No se puede encontrar información CSV en el archivo seleccionado!" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "Importar desde CSV" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "Libreta de direcciones" #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "" #~ "Pulse aquí para guardar la base de datos LDAP completa en un archivo XLS" #~ msgid "ok" #~ msgstr "ok" #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "¡No tiene permisos para crear volcados LDAP!" #~ msgid "Error in ivbb parameter!" #~ msgstr "¡Error en parámetro ivbb!" #~ msgid "Ldap manager" #~ msgstr "Administrador LDAP" #~ msgid "Click here to save the LDAP Export " #~ msgstr "Pulse aquí para guardar la exportación LDAP" #~ msgid "Cannot insert entry '%s'!" #~ msgstr "¡No se puede introducir la entrada '%s'!" #, fuzzy #~ msgid "Surename" #~ msgstr "Apellidos" #~ msgid "Back" #~ msgstr "Atrás" gosa-plugin-ldapmanager-2.7.4/locale/de/0000755000175000017500000000000011752422556017056 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/de/LC_MESSAGES/0000755000175000017500000000000011752422556020643 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/de/LC_MESSAGES/messages.po0000644000175000017500000003715711475450310023016 0ustar cajuscajus# translation of messages.po to deutsch # GOsa2 Translations # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # # # Alfred Schroeder , 2004. # Cajus Pollmeier , 2004, 2005, 2006, 2008. # Jan Wenzel , 2004,2005, 2008. # Stefan Koehler , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2010-09-16 15:45+0100\n" "Last-Translator: Fabian Hickert \n" "Language-Team: deutsch \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: html/getxls.php:88 msgid "Birthday" msgstr "Geburtstag" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Geschlecht" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Nachname" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Vorname" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Sprache" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Benutzer" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Benutzerliste von %s auf %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "Benutzer-ID" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Mitglieder" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Gruppen" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Gruppen von %s auf %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Server" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Beschreibung" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Computer" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Allgemeiner Name" #: html/getxls.php:187 msgid "Server name" msgstr "Servername" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Server von %s auf %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Anzeigename" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Name" #: html/getxls.php:225 msgid "Home phone" msgstr "Telefonnummer (privat)" #: html/getxls.php:226 msgid "Home postal address" msgstr "Private Adresse" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Initialen" #: html/getxls.php:226 msgid "Location" msgstr "Ort" #: html/getxls.php:227 msgid "Mail address" msgstr "Mail-Adresse" #: html/getxls.php:227 msgid "Mobile phone" msgstr "Mobiltelefon" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Stadt" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "Adresse" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Pager" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Telefonnummer" #: html/getxls.php:229 msgid "Address" msgstr "Adresse" #: html/getxls.php:229 msgid "Postal code" msgstr "Postleitzahl" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Land" #: html/getxls.php:230 msgid "Function" msgstr "Funktion" #: html/getxls.php:233 html/getxls.php:314 msgid "Address book" msgstr "Adressbuch" #: html/getxls.php:240 html/getxls.php:416 #, php-format msgid "Address book of %s on %s" msgstr "Adressbuch von %s auf %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Allgemeiner Name" #: html/getxls.php:283 msgid "Day of birth" msgstr "Geburtsdatum" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "Email-Adresse" #: html/getxls.php:301 msgid "Mobile" msgstr "Mobiltelefon" #: html/getxls.php:301 msgid "Organization" msgstr "Organisation" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Organisationseinheit" #: html/getxls.php:302 msgid "Postal Code" msgstr "Postleitzahl" #: html/getxls.php:303 msgid "Title" msgstr "Titel" #: html/getxls.php:306 msgid "Full" msgstr "Voll" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Computer von %s auf %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 msgid "Permission error" msgstr "Berechtigungsfehler" #: html/getxls.php:480 msgid "You have no permission to do LDAP exports!" msgstr "Sie haben keine Berechtigung, um aus dem LDAP zu exportieren!" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "LDIF exportieren" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Dies tut etwas" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "Sie benötigen Vollzugriff auf den LDAP-Baum, um Daten zu importieren!" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "Fehler" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, php-format msgid "Cannot read uploaded file: %s" msgstr "Kann hochgeladene Datei nicht lesen: %s" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 msgid "file is empty" msgstr "Die Datei ist leer" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 msgid "file not found" msgstr "Die Datei wurde nicht gefunden" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "Die Datei ist nicht lesbar" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 msgid "LDAP error" msgstr "LDAP-Fehler" #: addons/ldapmanager/class_import.inc:125 msgid "Internal error" msgstr "Interner Fehler" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "Undefiniertes Flag '%s'!" #: addons/ldapmanager/contentimport.tpl:10 msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "Dieses Modul ermöglicht es Ihnen, einen Satz von Einträgen als LDIF in Ihre " "laufende LDAP-Datenbank zu importieren. Sie können diese Funktion " "beispielsweise zum Hinzufügen oder Aktualisieren existierender Einträge " "nutzen. Beachten Sie dabei bitte, dass GOsa die LDIF-Datei nicht auf " "Konformität prüft." #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "Importiere LDIF Datei" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Durchsuchen" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "Überschreibe vorhandene Objekte, behalte unbetroffene Attribute" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" "Überschreibe vorhandene Objekte, entferne dabei alle nicht aufgeführten " "Attribute" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "Enferne zunächst bereits existierende Einträge" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "Import erfolgreich" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Importieren" #: addons/ldapmanager/contentexportxls.tpl:3 msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "Dieses Modul ermöglicht Ihnen den Download der kompletten momentan " "verwendeten LDAP-Datenbank als xls-Datei. Die übertragenen Dateien können " "beispielsweise zur Dokumentation/Übersicht verwendet werden." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Exportiere einzelnen Eintrag" #: addons/ldapmanager/contentexportxls.tpl:14 msgid "Choose the data you want to export" msgstr "Wählen Sie die Daten, die exportiert werden sollen" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Export" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "Exportiere vollständige XLS-Datei für" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "Exportiere IVBB LDIF für" #: addons/ldapmanager/contentexportxls.tpl:42 msgid "Choose the department you want to export" msgstr "Wählen Sie die Abteilung, die exportiert werden soll" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "Export erfolgreich" #: addons/ldapmanager/contentexportxls.tpl:64 msgid "Click here to save the complete LDAP database to a XLS file" msgstr "" "Hier klicken, um die gesamte LDAP-Datenbank in eine Datei zu exportieren." #: addons/ldapmanager/contentexportxls.tpl:64 msgid "Click here to save the LDAP export to a XLS file" msgstr "Hier klicken, um die exportierten Daten in eine xls-Datei zu speichern" #: addons/ldapmanager/class_ldif.inc:6 msgid "LDAP tools" msgstr "LDAP-Tools" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "Exportiert LDIF oder Excel Schnapshüsse des LDAP Baumes" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "LDAP-Manager" #: addons/ldapmanager/class_ldif.inc:43 msgid "import" msgstr "Import" #: addons/ldapmanager/class_ldif.inc:43 msgid "export" msgstr "Export" #: addons/ldapmanager/contentexport.tpl:2 msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "Dieses Modul ermöglicht Ihnen den Download der kompletten momentan " "verwendeten LDAP-Datenbank. Die übertragenen Dateien können beispielsweise " "zur Datensicherung oder zur Einrichtung eines neuen Servers benutzt werden." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "Exportiere vollständige LDIF-Datei für" #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "XLS-Import" #: addons/ldapmanager/class_exportxls.inc:111 msgid "Cannot export selected entries!" msgstr "Kann die gewählten Einträge nicht exportieren!" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, php-format msgid "You have no permission to export %s!" msgstr "Sie haben keine Berechtigung, um '%s' zu exportieren!" #: addons/ldapmanager/contentcsv.tpl:4 msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "Das CSV Import Plugin stellt Methoden bereit, um Benutzerkonten aus einer " "CSV Datei zu generieren. Der Administrator kann die Zuordnung zwischen " "Spalte und Benutzerattribut frei wählen. Es müssen jedoch mindestens die " "Attribute UID, GIVENNAME und SURNAME gesetzt sein." #: addons/ldapmanager/contentcsv.tpl:9 msgid "CSV export" msgstr "CSV-Export" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "Auswahl der zu importierenden CSV Datei" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "Auswahl der Vorlage" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "Alle Einträge wurden erfolgreich in die LDAP-Datenbank geschrieben." #: addons/ldapmanager/contentcsv.tpl:38 msgid "There was an error during the import of your data." msgstr "Es gab einen Fehler während des Importvorgangs Ihrer Daten." #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "Statusreport des Imports:" #: addons/ldapmanager/contentcsv.tpl:46 msgid "Status report" msgstr "Status-Bericht" #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "Gewählte Vorlage" #: addons/ldapmanager/contentcsv.tpl:85 msgid "Template selection" msgstr "Vorlagen-Auswahl" #: addons/ldapmanager/class_csvimport.inc:109 msgid "You've no permission to import CSV files!" msgstr "Sie haben keine Berechtigung, um CSV Dateien zu importieren." #: addons/ldapmanager/class_csvimport.inc:169 #, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "Benötige mindestens '%s', '%s' und '%s' um Benutzer anzulegen!" #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "Fehlgeschlagen" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "Ok" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "Status" #: addons/ldapmanager/class_csvimport.inc:291 #, php-format msgid "Cannot add entry %s!" msgstr "Kann Eintrag %s nicht hinzufügen!" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Information" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "Nichts zu importieren!" #: addons/ldapmanager/class_csvimport.inc:502 msgid "Cannot find CSV data in the selected file!" msgstr "Kann keine CSV-Daten in der gewählten Datei finden!" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "CSV-Import" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "Kein solches Objekt: %s!" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" gosa-plugin-ldapmanager-2.7.4/locale/fr/0000755000175000017500000000000011752422556017075 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/fr/LC_MESSAGES/0000755000175000017500000000000011752422556020662 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/fr/LC_MESSAGES/messages.po0000644000175000017500000004067111475426262023041 0ustar cajuscajus# translation of messages.po to french # Benoit Mortier , 2005, 2006, 2007, 2008. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2008-12-21 12:02+0100\n" "Last-Translator: Benoit Mortier \n" "Language-Team: french \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: html/getxls.php:88 msgid "Birthday" msgstr "Anniversaire" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Sexe" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Nom de famille" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Prénom" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Langue" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Utilisateurs" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Liste des utilisateurs de %s dans %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "ID de l'utilisateur" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Membres" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Groupes" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Groupe de %s dans %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Serveurs" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Ordinateurs" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Nom commun" #: html/getxls.php:187 msgid "Server name" msgstr "Nom du serveur" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Serveur de %s dans %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Nom d'affichage" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Nom" #: html/getxls.php:225 msgid "Home phone" msgstr "Téléphone privé" #: html/getxls.php:226 msgid "Home postal address" msgstr "Adresse postale personnelle" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Initiales" #: html/getxls.php:226 msgid "Location" msgstr "Lieu" #: html/getxls.php:227 msgid "Mail address" msgstr "Adresse de messagerie" #: html/getxls.php:227 msgid "Mobile phone" msgstr "Téléphone portable" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Ville" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "Adresse postale" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Bip" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Numéro de téléphone" #: html/getxls.php:229 msgid "Address" msgstr "Adresse" #: html/getxls.php:229 msgid "Postal code" msgstr "Code postal" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Département" #: html/getxls.php:230 msgid "Function" msgstr "Fonction" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Carnet d'adresses" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Carnet d'adresses de %s dans %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Nom commun" #: html/getxls.php:283 msgid "Day of birth" msgstr "Date de naissance" #: html/getxls.php:289 msgid "UID" msgstr "" #: html/getxls.php:301 msgid "Email address" msgstr "Adresse de messagerie" #: html/getxls.php:301 msgid "Mobile" msgstr "GSM" #: html/getxls.php:301 msgid "Organization" msgstr "Entreprise" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Unité organisationelle" #: html/getxls.php:302 msgid "Postal Code" msgstr "Code postal" #: html/getxls.php:303 msgid "Title" msgstr "Titre" #: html/getxls.php:306 msgid "Full" msgstr "Complet" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Ordinateurs de %s dans %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 msgid "Permission error" msgstr "Erreur de permission" #: html/getxls.php:480 msgid "You have no permission to do LDAP exports!" msgstr "Vous n'avez pas l'autorisation d'exporter l'annuaire !" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "Exportation LDIF" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Ceci fait quelque chose" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" "Vous avez besoin d'un accès complet à tout les objets, pour exécuter la " "commande d'importation !" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "Erreur" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, php-format msgid "Cannot read uploaded file: %s" msgstr "Impossible de lire le fichier importé : '%s'" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 msgid "file is empty" msgstr "le fichier est vide." #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 msgid "file not found" msgstr "le fichier n'a pas été trouvé" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "le fichier n'est pas lisible" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 msgid "LDAP error" msgstr "Erreur LDAP" #: addons/ldapmanager/class_import.inc:125 msgid "Internal error" msgstr "Erreur interne" #: addons/ldapmanager/class_import.inc:125 #, fuzzy, php-format msgid "Undefined flag %s!" msgstr "Marqueur indéfini '%s' !" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "L'extension d'importation au format LDIF permet d'importer une série " "d'entrées au format ldif dans l'annuaire. Vous pouvez utiliser cette " "fonctionnalité pour ajouter de nouvelles entrées ou modifier des entrées " "existantes. Rappelez vous que GOsa ne vérifiera pas vos ldifs par rapport au " "schéma utilisés par GOsa." #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "Importation d'un fichier LDIF" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Parcourir" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "Modifier les objets existants, laisse les attributs non modifiés" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" "Récrire les objets existants, tout les attributs non listés seront enlevés" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "Enlève d'abord les entrées existantes" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "Importation réussie" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Importer" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "L'extension d'exportation au format XLS permet d'exporter une copie complète " "de l'annuaire LDAP au format XLS. Ces fichiers peuvent être utilisés à des " "fins de documentation." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Exporter une seule entrée" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Choisissez les données que vous voulez exporter" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Exporter" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "Exporter un fichier XLS complet pour " #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "Exporter un LDIF IVBB pour" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Choisissez le département que vous voulez exporter" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "Exportation réussie" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Cliquez ici pour sauvegarder l'annuaire LDAP dans un fichier" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "" "Cliquez ici pour sauver l'exportation de l'annaire LDAP comme un fichier xls" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "Erreur LDAP" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "Gérer l'annuaire" #: addons/ldapmanager/class_ldif.inc:43 msgid "import" msgstr "importer" #: addons/ldapmanager/class_ldif.inc:43 msgid "export" msgstr "exporter" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "L'extension d'exportation au format LDIF permet de télécharger une copie " "complète de l'annuaire LDAP au format ldif. Ces fichiers peuvent être " "utilisés à des fins de sauvegarde ou lors de la mise en place d'un nouveau " "serveur." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "Exporter un fichier LDIF complet pour " #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "Importer un fichier XLS" #: addons/ldapmanager/class_exportxls.inc:111 msgid "Cannot export selected entries!" msgstr "Impossible d'exporter les entrées séléctionnées !" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "Vous n'avez pas l'autorisation d'exporter '%s' !" #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "L'extension CSV permet de générer des comptes utilisateurs depuis un fichier " "contenant des valeurs séparées par des virgules. L'administrateur peut " "choisir quelle colonne doivent être transférées vers quel attribut. Notez " "que vous devez au moins avoir le UID, GIVENNAME et SURENAME fournis." #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "Importation CSV" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "Sélectionnez le fichier CSV à importer" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "Sélectionnez le modèle" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "Toutes les entrées on été écrites correctement dans l'arbre LDAP." #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "Oups. Il à eu une erreur lors de l'importation de vos données." #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "Voici le rapport de votre importation de données :" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Statut: " #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "Modèle sélectionné" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Préférences des groupes" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "" "Vous n'avez pas les droits nécessaires pour effectuer des importations CSV." #: addons/ldapmanager/class_csvimport.inc:169 #, fuzzy, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "" "J'ai besoin d'un 'sn','givenName' et 'uid' pour créer des utilisateurs." #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "échec" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "statut" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "Impossible d'enlever l'entrée %s !" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Information" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "Rien à importer !" #: addons/ldapmanager/class_csvimport.inc:502 msgid "Cannot find CSV data in the selected file!" msgstr "Impossible de trouver des données CSV dans le fichier selectionné !" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "Importation CSV" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "Carnet d'adresses" #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "" #~ "Cliquez ici pour sauvegarder l'annuaire LDAP au complet dans un fichier " #~ "xls" #~ msgid "ok" #~ msgstr "ok" #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "" #~ "Vous n'avez pas les droits nécessaires pour créer des sauvegarde de " #~ "l'annuaire !" #~ msgid "Error in ivbb parameter!" #~ msgstr "Erreur dans le paramètre ivbb !" #~ msgid "Ldap manager" #~ msgstr "Gérer l'annuaire LDAP" #~ msgid "Click here to save the LDAP Export " #~ msgstr "Cliquez ici pour exporter l'annuaire LDAP " #~ msgid "Cannot insert entry '%s'!" #~ msgstr "Impossible d'insèrer l'entrée '%s' !" gosa-plugin-ldapmanager-2.7.4/locale/en/0000755000175000017500000000000011752422556017070 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/en/LC_MESSAGES/0000755000175000017500000000000011752422556020655 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/messages.po0000644000175000017500000003015511475426262020641 0ustar cajuscajus# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: html/getxls.php:88 msgid "Birthday" msgstr "" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "" #: html/getxls.php:187 msgid "Server name" msgstr "" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "" #: html/getxls.php:225 msgid "Home phone" msgstr "" #: html/getxls.php:226 msgid "Home postal address" msgstr "" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "" #: html/getxls.php:226 msgid "Location" msgstr "" #: html/getxls.php:227 msgid "Mail address" msgstr "" #: html/getxls.php:227 msgid "Mobile phone" msgstr "" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "" #: html/getxls.php:229 msgid "Address" msgstr "" #: html/getxls.php:229 msgid "Postal code" msgstr "" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "" #: html/getxls.php:230 msgid "Function" msgstr "" #: html/getxls.php:233 html/getxls.php:314 msgid "Address book" msgstr "" #: html/getxls.php:240 html/getxls.php:416 #, php-format msgid "Address book of %s on %s" msgstr "" #: html/getxls.php:246 msgid "Common Name" msgstr "" #: html/getxls.php:283 msgid "Day of birth" msgstr "" #: html/getxls.php:289 msgid "UID" msgstr "" #: html/getxls.php:301 msgid "Email address" msgstr "" #: html/getxls.php:301 msgid "Mobile" msgstr "" #: html/getxls.php:301 msgid "Organization" msgstr "" #: html/getxls.php:301 msgid "Organizational unit" msgstr "" #: html/getxls.php:302 msgid "Postal Code" msgstr "" #: html/getxls.php:303 msgid "Title" msgstr "" #: html/getxls.php:306 msgid "Full" msgstr "" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 msgid "Permission error" msgstr "" #: html/getxls.php:480 msgid "You have no permission to do LDAP exports!" msgstr "" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, php-format msgid "Cannot read uploaded file: %s" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 msgid "file is empty" msgstr "" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 msgid "file not found" msgstr "" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 msgid "LDAP error" msgstr "" #: addons/ldapmanager/class_import.inc:125 msgid "Internal error" msgstr "" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "" #: addons/ldapmanager/contentimport.tpl:10 msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "" #: addons/ldapmanager/contentimport.tpl:31 msgid "Modify existing objects, keep untouched attributes" msgstr "" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 msgid "Remove existing entries first" msgstr "" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:3 msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:14 msgid "Choose the data you want to export" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:42 msgid "Choose the department you want to export" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:64 msgid "Click here to save the complete LDAP database to a XLS file" msgstr "" #: addons/ldapmanager/contentexportxls.tpl:64 msgid "Click here to save the LDAP export to a XLS file" msgstr "" #: addons/ldapmanager/class_ldif.inc:6 msgid "LDAP tools" msgstr "" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "" #: addons/ldapmanager/class_ldif.inc:43 msgid "import" msgstr "" #: addons/ldapmanager/class_ldif.inc:43 msgid "export" msgstr "" #: addons/ldapmanager/contentexport.tpl:2 msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "" #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "" #: addons/ldapmanager/class_exportxls.inc:111 msgid "Cannot export selected entries!" msgstr "" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, php-format msgid "You have no permission to export %s!" msgstr "" #: addons/ldapmanager/contentcsv.tpl:4 msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" #: addons/ldapmanager/contentcsv.tpl:9 msgid "CSV export" msgstr "" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "" #: addons/ldapmanager/contentcsv.tpl:38 msgid "There was an error during the import of your data." msgstr "" #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "" #: addons/ldapmanager/contentcsv.tpl:46 msgid "Status report" msgstr "" #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "" #: addons/ldapmanager/contentcsv.tpl:85 msgid "Template selection" msgstr "" #: addons/ldapmanager/class_csvimport.inc:109 msgid "You've no permission to import CSV files!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:169 #, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "" #: addons/ldapmanager/class_csvimport.inc:291 #, php-format msgid "Cannot add entry %s!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "" #: addons/ldapmanager/class_csvimport.inc:502 msgid "Cannot find CSV data in the selected file!" msgstr "" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" gosa-plugin-ldapmanager-2.7.4/locale/zh/0000755000175000017500000000000011752422556017107 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/zh/LC_MESSAGES/0000755000175000017500000000000011752422556020674 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/zh/LC_MESSAGES/messages.po0000644000175000017500000003660211475426262023052 0ustar cajuscajus# translation of messages.po to Chinese Simplified # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # # Jiang Xin , 2007. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2007-06-03 12:27+0800\n" "Last-Translator: Jiang Xin \n" "Language-Team: Chinese Simplified \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: html/getxls.php:88 msgid "Birthday" msgstr "生日" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "性别" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "姓" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "名" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "语言" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "用户" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "%s 用户列表于 %s" #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "用户 ID" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "成员" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "用户组" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "%s 的用户组于 %s 上" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "服务器" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "描述" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "计算机" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "常用名" #: html/getxls.php:187 msgid "Server name" msgstr "服务器名称" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "%s服务器于%s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "显示名称" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "传真" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "名称" #: html/getxls.php:225 msgid "Home phone" msgstr "住宅电话" #: html/getxls.php:226 msgid "Home postal address" msgstr "住宅地址" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "中间名" #: html/getxls.php:226 msgid "Location" msgstr "位置" #: html/getxls.php:227 msgid "Mail address" msgstr "邮件地址" #: html/getxls.php:227 msgid "Mobile phone" msgstr "移动电话" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "城市" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "地址" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "呼机" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "电话号码" #: html/getxls.php:229 msgid "Address" msgstr "住址" #: html/getxls.php:229 msgid "Postal code" msgstr "邮编" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "州/省" #: html/getxls.php:230 msgid "Function" msgstr "功能" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "地址簿" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "%s 的地址簿,于 %s" #: html/getxls.php:246 msgid "Common Name" msgstr "常用名" #: html/getxls.php:283 msgid "Day of birth" msgstr "生日" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "邮件地址" #: html/getxls.php:301 msgid "Mobile" msgstr "手机" #: html/getxls.php:301 msgid "Organization" msgstr "组织/公司" #: html/getxls.php:301 msgid "Organizational unit" msgstr "组织/公司部门" #: html/getxls.php:302 msgid "Postal Code" msgstr "邮编" #: html/getxls.php:303 msgid "Title" msgstr "称谓" #: html/getxls.php:306 msgid "Full" msgstr "全部" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "%s计算机于%s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "允许" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "您无权查看和编辑 ACL。" #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "LDIF 导出" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 #, fuzzy msgid "This does something" msgstr "******" #: addons/ldapmanager/class_import.inc:57 #, fuzzy msgid "You need full write access to the LDAP tree to import data!" msgstr "您无权执行这个方法!" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "错误" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "无法创建文件 '%s'。" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "选择的文件为空。" #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "文件" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "LDAP 错误:" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "终端服务器" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "该 LDIF 导入插件提供上传一个 ldif 格式的数据集到正在运行的 LDAP 目录中的方" "法。您可以用这个功能添加或更改记录。注意 GOsa 将不会检查您的 ldif 文档格式。" #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "导入 LDIF 文件" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "浏览" #: addons/ldapmanager/contentimport.tpl:31 #, fuzzy msgid "Modify existing objects, keep untouched attributes" msgstr "修改已经存在的属性" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 #, fuzzy msgid "Remove existing entries first" msgstr "删除 DNS 记录失败" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "导入成功" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "导入" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "该 XLS 导出插件提供将运行中的 LDAP 目录整体导出为 xls 的功能。您可以保存这些" "文件用于文档。" #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "导出单条记录" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "选择您要导出的数据" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "导出" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "导出整个 XLS" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "导出 IVBB LDIF" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "选择要导出的部门" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "导出成功" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "点击这里保存整个 LDAP 数据库到一个文件" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "点击这里保存 LDAP 导出为一个 xls 文件" #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "LDAP 错误:" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "LDAP 管理" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "导入" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "导出" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "该 LDIF 导出插件提供将运行中的 LDAP 目录整体导出为 ldif 的功能。您可以保存这" "些文件用于备份或者初始化一个新服务器。" #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "导出整个 LDIF " #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "导入 XLS" #: addons/ldapmanager/class_exportxls.inc:111 #, fuzzy msgid "Cannot export selected entries!" msgstr "选择要添加的对象" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "您无权进行 LDAP 导出。" #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "该 CVS 导入插件提供一个从逗号分隔格式文件创建用户账号的功能。管理员可以决定哪" "一个列被导入到哪一个属性。注意必须包含 UID, GIVENNAME 和 SURENAME 字段" #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "CSV 导入" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "选择要导入的 CSV 文件" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "选择模板" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "所有记录成功写入 LDAP 数据库。" #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "哎哟! 导入过程中遇到一个错误。" #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "这里是导入过程的状态报告:" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "状态" #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "所选模板" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "组设置" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "您无权执行 CSV 导入。" #: addons/ldapmanager/class_csvimport.inc:169 #, fuzzy, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "需要 'sn', 'givenName' 和 'uid' 来创建用户。" #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "失败" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "状态" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "未知 FAIstate %s" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "提示信息" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "没有数据导入!" #: addons/ldapmanager/class_csvimport.inc:502 #, fuzzy msgid "Cannot find CSV data in the selected file!" msgstr "无法创建文件 '%s'。" #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "CSV 导入" #: addons/ldapmanager/class_export.inc:74 #, fuzzy, php-format msgid "No such object %s!" msgstr "成员对象" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "地址簿" #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "点击这里保存整个 LDAP 数据库为一个 xls 文件" #~ msgid "ok" #~ msgstr "ok" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "您无权删除这个部门。" #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "检查参数" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "LDAP 管理" #~ msgid "Click here to save the LDAP Export " #~ msgstr "点击这里保存 LDAP 导出" #, fuzzy #~ msgid "Cannot insert entry '%s'!" #~ msgstr "未知 FAIstate %s" #, fuzzy #~ msgid "Ldap manger" #~ msgstr "LDAP 管理" #~ msgid "Surename" #~ msgstr "姓" #~ msgid "Back" #~ msgstr "返回" #, fuzzy #~ msgid "Ldap manager addon" #~ msgstr "LDAP 管理" gosa-plugin-ldapmanager-2.7.4/locale/nl/0000755000175000017500000000000011752422556017077 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/nl/LC_MESSAGES/0000755000175000017500000000000011752422556020664 5ustar cajuscajusgosa-plugin-ldapmanager-2.7.4/locale/nl/LC_MESSAGES/messages.po0000644000175000017500000004035711475426262023044 0ustar cajuscajus# translation of messages.po to Dutch # GOsa2 Translations # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # Alfred Schroeder , 2004. # Cajus Pollmeier , 2004. # # Translator: # Niels Klomp (CareWorks ICT Services) , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:23+0100\n" "PO-Revision-Date: 2006-06-02 16:58+0100\n" "Last-Translator: Niels Klomp (CareWorks ICT Services) \n" "Language-Team: CareWorks ICT Services \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: html/getxls.php:88 msgid "Birthday" msgstr "Geboortedatum" #: html/getxls.php:88 html/getxls.php:283 msgid "Sex" msgstr "Geslacht" #: html/getxls.php:88 html/getxls.php:229 html/getxls.php:283 #: html/getxls.php:299 html/getxls.php:303 msgid "Surname" msgstr "Achternaam" #: html/getxls.php:88 html/getxls.php:225 html/getxls.php:283 #: html/getxls.php:299 msgid "Given name" msgstr "Naam" #: html/getxls.php:88 html/getxls.php:283 msgid "Language" msgstr "Taal" #: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310 msgid "Users" msgstr "Gebruikers" #: html/getxls.php:96 html/getxls.php:343 #, php-format msgid "User list of %s on %s" msgstr "Gebruikerslijst van %s in %s " #: html/getxls.php:102 html/getxls.php:137 html/getxls.php:160 #: html/getxls.php:349 html/getxls.php:366 msgid "User ID" msgstr "Gebruikers ID" #: html/getxls.php:123 html/getxls.php:286 msgid "Members" msgstr "Groepsleden" #: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311 msgid "Groups" msgstr "Groepen" #: html/getxls.php:133 html/getxls.php:362 #, php-format msgid "Groups of %s on %s" msgstr "Groepen van %s in %s" #: html/getxls.php:157 html/getxls.php:190 html/getxls.php:192 #: html/getxls.php:199 html/getxls.php:235 html/getxls.php:312 #: html/getxls.php:383 msgid "Servers" msgstr "Servers" #: html/getxls.php:160 html/getxls.php:289 msgid "Description" msgstr "Omschrijving" #: html/getxls.php:161 html/getxls.php:313 msgid "Computers" msgstr "Computers" #: html/getxls.php:171 html/getxls.php:224 html/getxls.php:403 #: html/getxls.php:423 msgid "Common name" msgstr "Algemene naam" #: html/getxls.php:187 msgid "Server name" msgstr "Servernaam" #: html/getxls.php:197 html/getxls.php:381 #, php-format msgid "Servers of %s on %s" msgstr "Servers van %s in %s" #: html/getxls.php:224 html/getxls.php:299 msgid "Display name" msgstr "Getoonde naam" #: html/getxls.php:224 html/getxls.php:299 msgid "Fax" msgstr "Fax" #: html/getxls.php:225 html/getxls.php:292 msgid "Name" msgstr "Naam" #: html/getxls.php:225 msgid "Home phone" msgstr "Telefoon Privé" #: html/getxls.php:226 msgid "Home postal address" msgstr "Adres thuis" #: html/getxls.php:226 html/getxls.php:300 msgid "Initials" msgstr "Initialen" #: html/getxls.php:226 msgid "Location" msgstr "Plaats" #: html/getxls.php:227 msgid "Mail address" msgstr "E-mail adres" #: html/getxls.php:227 msgid "Mobile phone" msgstr "GSM nummer" #: html/getxls.php:227 html/getxls.php:300 msgid "City" msgstr "Plaats" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Postal address" msgstr "Adres thuis" #: html/getxls.php:228 html/getxls.php:302 msgid "Pager" msgstr "Pieper" #: html/getxls.php:228 html/getxls.php:300 html/getxls.php:302 msgid "Phone number" msgstr "Telefoonnummer" #: html/getxls.php:229 msgid "Address" msgstr "Adres" #: html/getxls.php:229 msgid "Postal code" msgstr "Postcode" #: html/getxls.php:230 html/getxls.php:303 msgid "State" msgstr "Provincie" #: html/getxls.php:230 msgid "Function" msgstr "Functie" #: html/getxls.php:233 html/getxls.php:314 #, fuzzy msgid "Address book" msgstr "Adresboek" #: html/getxls.php:240 html/getxls.php:416 #, fuzzy, php-format msgid "Address book of %s on %s" msgstr "Adresboek van %s in %s" #: html/getxls.php:246 msgid "Common Name" msgstr "Algemene naam" #: html/getxls.php:283 msgid "Day of birth" msgstr "Geboortedatum" #: html/getxls.php:289 msgid "UID" msgstr "UID" #: html/getxls.php:301 msgid "Email address" msgstr "E-mail adres" #: html/getxls.php:301 msgid "Mobile" msgstr "GSM" #: html/getxls.php:301 msgid "Organization" msgstr "Organisatie" #: html/getxls.php:301 msgid "Organizational unit" msgstr "Afdeling" #: html/getxls.php:302 msgid "Postal Code" msgstr "Postcode" #: html/getxls.php:303 msgid "Title" msgstr "Titel" #: html/getxls.php:306 msgid "Full" msgstr "Volledig" #: html/getxls.php:397 #, php-format msgid "Computers of %s on %s" msgstr "Computers van %s in %s" #: html/getxls.php:480 addons/ldapmanager/class_import.inc:57 #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_csvimport.inc:109 #: addons/ldapmanager/class_export.inc:90 #: addons/ldapmanager/class_export.inc:97 #, fuzzy msgid "Permission error" msgstr "Rechten" #: html/getxls.php:480 #, fuzzy msgid "You have no permission to do LDAP exports!" msgstr "" "U heeft geen toestemming om een gebruiker aan te maken onder deze 'Basis'." #: addons/ldapmanager/class_import.inc:6 #: addons/ldapmanager/class_csvimport.inc:6 msgid "LDIF export" msgstr "LDIF export" #: addons/ldapmanager/class_import.inc:7 #: addons/ldapmanager/class_exportxls.inc:7 #: addons/ldapmanager/class_csvimport.inc:7 #: addons/ldapmanager/class_export.inc:7 msgid "This does something" msgstr "Dit doet iets" #: addons/ldapmanager/class_import.inc:57 msgid "You need full write access to the LDAP tree to import data!" msgstr "" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_exportxls.inc:56 #: addons/ldapmanager/class_exportxls.inc:111 #: addons/ldapmanager/class_csvimport.inc:169 #: addons/ldapmanager/class_csvimport.inc:291 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #: addons/ldapmanager/class_csvimport.inc:502 #: addons/ldapmanager/class_export.inc:46 #: addons/ldapmanager/class_export.inc:103 msgid "Error" msgstr "Fout" #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:348 #: addons/ldapmanager/class_csvimport.inc:354 #: addons/ldapmanager/class_csvimport.inc:359 #, fuzzy, php-format msgid "Cannot read uploaded file: %s" msgstr "Kan bestand '%s' niet aanmaken." #: addons/ldapmanager/class_import.inc:68 #: addons/ldapmanager/class_csvimport.inc:348 #, fuzzy msgid "file is empty" msgstr "Het opgegeven bestand is leeg." #: addons/ldapmanager/class_import.inc:75 #: addons/ldapmanager/class_csvimport.inc:343 #: addons/ldapmanager/class_csvimport.inc:354 #, fuzzy msgid "file not found" msgstr "Bestandsnaam" #: addons/ldapmanager/class_import.inc:83 #: addons/ldapmanager/class_csvimport.inc:359 msgid "file not readable" msgstr "" #: addons/ldapmanager/class_import.inc:117 #: addons/ldapmanager/class_import.inc:121 #: addons/ldapmanager/class_export.inc:73 #, fuzzy msgid "LDAP error" msgstr "LDAP fout:" #: addons/ldapmanager/class_import.inc:125 #, fuzzy msgid "Internal error" msgstr "Terminal server" #: addons/ldapmanager/class_import.inc:125 #, php-format msgid "Undefined flag %s!" msgstr "" #: addons/ldapmanager/contentimport.tpl:10 #, fuzzy msgid "" "The LDIF import plug-in provides methods to upload a set of entries to your " "running LDAP directory as LDIF. You may use this to add new or modify " "existing entries. Remember that GOsa will not check your LDIF for GOsa " "conformance." msgstr "" "De LDIF import module biedt mogelijkheden om gegevens binnen uw draaiende " "LDAP database te importeren als een LDIF bestand. U kunt deze " "functionaliteit gebruiken om gegevens toe te voegen of veranderen. Let op, " "GOsa zal uw LDIF bestanden niet controleren op GOsa conformiteit!" #: addons/ldapmanager/contentimport.tpl:17 msgid "Import LDIF File" msgstr "Importeer LDIF bestand" #: addons/ldapmanager/contentimport.tpl:22 #: addons/ldapmanager/contentcsv.tpl:16 msgid "Browse" msgstr "Doorzoek" #: addons/ldapmanager/contentimport.tpl:31 #, fuzzy msgid "Modify existing objects, keep untouched attributes" msgstr "Verander bestaand atribuut" #: addons/ldapmanager/contentimport.tpl:32 msgid "Overwrite existing objects, all not listed attributes will be removed" msgstr "" #: addons/ldapmanager/contentimport.tpl:41 #, fuzzy msgid "Remove existing entries first" msgstr "Het verwijderen van DNS regels is mislukt" #: addons/ldapmanager/contentimport.tpl:48 msgid "Import successful" msgstr "Import was succesvol" #: addons/ldapmanager/contentimport.tpl:60 #: addons/ldapmanager/contentcsv.tpl:113 addons/ldapmanager/contentcsv.tpl:117 msgid "Import" msgstr "Importeren" #: addons/ldapmanager/contentexportxls.tpl:3 #, fuzzy msgid "" "The XLS export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as XLS. You may save these files for " "documentation." msgstr "" "De XLS export module biedt mogelijkheden om de complete inhoud van uw LDAP " "database te downloaden als een xls (Excel) bestand. U kunt deze bestanden " "voor documentatie doeleinden opslaan." #: addons/ldapmanager/contentexportxls.tpl:10 #: addons/ldapmanager/contentexport.tpl:9 msgid "Export single entry" msgstr "Exporteer een enkel record" #: addons/ldapmanager/contentexportxls.tpl:14 #, fuzzy msgid "Choose the data you want to export" msgstr "Selecteer de data die u wilt exporteren" #: addons/ldapmanager/contentexportxls.tpl:19 #: addons/ldapmanager/contentexportxls.tpl:31 #: addons/ldapmanager/contentexportxls.tpl:47 #: addons/ldapmanager/contentexport.tpl:15 #: addons/ldapmanager/contentexport.tpl:27 msgid "Export" msgstr "Exporteer" #: addons/ldapmanager/contentexportxls.tpl:25 msgid "Export complete XLS for" msgstr "Exporteer een compleet XLS voor" #: addons/ldapmanager/contentexportxls.tpl:39 msgid "Export IVBB LDIF for" msgstr "Exporteer IVBB LDIF voor" #: addons/ldapmanager/contentexportxls.tpl:42 #, fuzzy msgid "Choose the department you want to export" msgstr "Selecteer de afdeling die u wilt exporteren" #: addons/ldapmanager/contentexportxls.tpl:59 msgid "Export successful" msgstr "Export was succesvol" #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the complete LDAP database to a XLS file" msgstr "Klik hier om de complete LDAP database op te slaan in een bestand." #: addons/ldapmanager/contentexportxls.tpl:64 #, fuzzy msgid "Click here to save the LDAP export to a XLS file" msgstr "Klik hier om de LDAP export op te slaan in een xls-bestand." #: addons/ldapmanager/class_ldif.inc:6 #, fuzzy msgid "LDAP tools" msgstr "LDAP fout:" #: addons/ldapmanager/class_ldif.inc:7 msgid "Export LDIF or Excel snapshots of the LDAP tree" msgstr "" #: addons/ldapmanager/class_ldif.inc:42 addons/ldapmanager/class_ldif.inc:43 #: addons/ldapmanager/class_ldif.inc:48 msgid "LDAP manager" msgstr "LDAP beheer" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "import" msgstr "Importeren" #: addons/ldapmanager/class_ldif.inc:43 #, fuzzy msgid "export" msgstr "Exporteer" #: addons/ldapmanager/contentexport.tpl:2 #, fuzzy msgid "" "The LDIF export plug-in provides methods to download a complete snapshot of " "the running LDAP directory as LDIF. You may save these files for backup " "purpose or when initializing a new server." msgstr "" "De LDIF export module biedt mogelijkheden om de complete inhoud van uw LDAP " "database te downloaden als een LDIF bestand. U kunt deze bestanden voor " "backup doeleinden opslaan of gebruiken voor het initialiseren van een nieuwe " "server." #: addons/ldapmanager/contentexport.tpl:21 msgid "Export complete LDIF for" msgstr "Exporteer een complete LDIF voor" #: addons/ldapmanager/class_exportxls.inc:6 msgid "XLS import" msgstr "XLS import" #: addons/ldapmanager/class_exportxls.inc:111 #, fuzzy msgid "Cannot export selected entries!" msgstr "Nieuw FAI object aanmaken" #: addons/ldapmanager/class_exportxls.inc:124 #: addons/ldapmanager/class_export.inc:91 #: addons/ldapmanager/class_export.inc:98 #, fuzzy, php-format msgid "You have no permission to export %s!" msgstr "U heeft geen toestemming om LDAP gegevens te exporteren." #: addons/ldapmanager/contentcsv.tpl:4 #, fuzzy msgid "" "The CSV import plug-in provides methods to generate user accounts from a " "file containing Comma Separated Values. The administrator can decide which " "columns should be transfered to which attribute. Note that you must have at " "least the UID, GIVENNAME and SURNAME set." msgstr "" "De CSV import module bevat mothodes om gebruikers accounts aan te maken " "vanuit een bestand met komma gescheiden waardes. De beheerder kan bepalen " "welke kolommen vertaald moeten worden naar welke atributen. Merk op dat u " "tenminste het UID, GIVENNAME en SURNAME atribuut dient in te stellen." #: addons/ldapmanager/contentcsv.tpl:9 #, fuzzy msgid "CSV export" msgstr "CSV import" #: addons/ldapmanager/contentcsv.tpl:12 msgid "Select CSV file to import" msgstr "Selecteer het te importeren CSV bestand" #: addons/ldapmanager/contentcsv.tpl:21 msgid "Select template" msgstr "Selecteer sjabloon" #: addons/ldapmanager/contentcsv.tpl:36 msgid "All entries have been written to the LDAP database successfully." msgstr "Alle gegevens zijn succesvol naar de LDAP database weggeschreven." #: addons/ldapmanager/contentcsv.tpl:38 #, fuzzy msgid "There was an error during the import of your data." msgstr "Oeps. Er is een fout opgetreden bij het importeren van uw data." #: addons/ldapmanager/contentcsv.tpl:41 msgid "Here is the status report for the import:" msgstr "Hier is het statusraport voor de import:" #: addons/ldapmanager/contentcsv.tpl:46 #, fuzzy msgid "Status report" msgstr "Status" #: addons/ldapmanager/contentcsv.tpl:82 msgid "Selected Template" msgstr "Geselecteerd Sjabloon" #: addons/ldapmanager/contentcsv.tpl:85 #, fuzzy msgid "Template selection" msgstr "Groep instellingen" #: addons/ldapmanager/class_csvimport.inc:109 #, fuzzy msgid "You've no permission to import CSV files!" msgstr "U heeft geen toestemming om CSV gegevens te importeren." #: addons/ldapmanager/class_csvimport.inc:169 #, fuzzy, php-format msgid "Need at least %s, %s and %s to create users!" msgstr "'sn', 'givenName' en 'uid' zijn nodig om een gebruiker aan te maken" #: addons/ldapmanager/class_csvimport.inc:217 msgid "failed" msgstr "mislukt" #: addons/ldapmanager/class_csvimport.inc:221 msgid "OK" msgstr "" #: addons/ldapmanager/class_csvimport.inc:287 msgid "status" msgstr "status" #: addons/ldapmanager/class_csvimport.inc:291 #, fuzzy, php-format msgid "Cannot add entry %s!" msgstr "Onbekende FAI status %s" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Information" msgstr "Informatie" #: addons/ldapmanager/class_csvimport.inc:329 msgid "Nothing to import!" msgstr "Er is niets te importeren!" #: addons/ldapmanager/class_csvimport.inc:502 #, fuzzy msgid "Cannot find CSV data in the selected file!" msgstr "Kan bestand '%s' niet aanmaken." #: addons/ldapmanager/class_export.inc:6 msgid "CSV import" msgstr "CSV import" #: addons/ldapmanager/class_export.inc:74 #, php-format msgid "No such object %s!" msgstr "" #: addons/ldapmanager/class_export.inc:104 #, php-format msgid "Failed to generate ldap export, error was '%s'!" msgstr "" #~ msgid "Adressbook" #~ msgstr "Adresboek" #~ msgid "Click here to save the complete LDAP database to a xls file" #~ msgstr "" #~ "Klik hier om de complete LDAP database op te slaan in een xls-bestand." #~ msgid "ok" #~ msgstr "okee" #, fuzzy #~ msgid "You have no permission to create LDAP dumps!" #~ msgstr "U heeft geen toestemming om deze afdeling te verwijderen." #, fuzzy #~ msgid "Error in ivbb parameter!" #~ msgstr "Controleer parameter" #, fuzzy #~ msgid "Ldap manager" #~ msgstr "LDAP beheer" #~ msgid "Click here to save the LDAP Export " #~ msgstr "Klik hier om de LDAP export op te slaan in een bestand." #, fuzzy #~ msgid "Cannot insert entry '%s'!" #~ msgstr "Onbekende FAI status %s" #, fuzzy #~ msgid "Ldap manger" #~ msgstr "LDAP beheer" #~ msgid "Surename" #~ msgstr "Achternaam" #~ msgid "Back" #~ msgstr "Terug" #, fuzzy #~ msgid "Ldap manager addon" #~ msgstr "LDAP beheer"