diff --git a/VERSION b/VERSION index d3da947..ab8bba9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -$Name: RELEASE-1_1_0_4 $ +$Name: RELEASE-1_1_0_5 $ diff --git a/config/config.php.example b/config/config.php.example index 0872fd4..faa0be0 100644 --- a/config/config.php.example +++ b/config/config.php.example @@ -46,7 +46,7 @@ /* phpLDAPadmin can encrypt the content of sensitive cookies if you set this to a big random string. */ -$config->custom->session['blowfish'] = ''; +// $config->custom->session['blowfish'] = null; /* The language setting. If you set this to 'auto', phpLDAPadmin will attempt to determine your language automatically. Otherwise, available lanaguages @@ -66,6 +66,12 @@ $config->custom->session['blowfish'] = ''; environments. */ # $config->custom->password['no_random_crypt_salt'] = true; +/* PHP script timeout control. If php runs longer than this many seconds then + PHP will stop with an Maximum Execution time error. Increase this value from + the default if queries to your LDAP server are slow. The default is either + 30 seconds or the setting of max_exection_time if this is null. */ +// $config->custom->session['timelimit'] = 30; + /*********************************************/ /* Commands */ /*********************************************/ @@ -131,6 +137,13 @@ $config->custom->commands['all'] = array( /* Configure what objects are shown in left hand tree */ // $config->custom->appearance['tree_filter'] = '(objectclass=*)'; +/* The height and width of the tree. If these values are not set, then + no tree scroll bars are provided. +// $config->custom->appearance['tree_height'] = null; +# $config->custom->appearance['tree_height'] = 600; +// $config->custom->appearance['tree_width'] = null; +# $config->custom->appearance['tree_width'] = 250; + /*********************************************/ /* Define your LDAP servers in this section */ /*********************************************/ diff --git a/htdocs/add_oclass_form.php b/htdocs/add_oclass_form.php index d5b3d9e..eafd013 100644 --- a/htdocs/add_oclass_form.php +++ b/htdocs/add_oclass_form.php @@ -1,5 +1,5 @@ 0) { printf('',rawurlencode($entry['dn']['string'])); printf('',$ldapserver->server_id); - echo ''; + echo '
'; printf('',_('New Required Attributes')); foreach ($ldap['attrs']['need'] as $count => $attr) { - printf('',htmlspecialchars($attr->getName())); - printf('',htmlspecialchars($attr->getName())); + printf('',htmlspecialchars($attr->getName())); + printf('',htmlspecialchars($attr->getName())); } echo '
%s
%s
%s
'; diff --git a/htdocs/add_value_form.php b/htdocs/add_value_form.php index 682127e..ec12e65 100644 --- a/htdocs/add_value_form.php +++ b/htdocs/add_value_form.php @@ -1,5 +1,5 @@ getEntry($entry['dn']['string']); } -// define the template of the entry if possible +# Define the template of the entry if possible eval('$reader = new '.$_SESSION[APPCONFIG]->GetValue('appearance','entry_reader').'($ldapserver);'); $reader->visit('Start', $entry['ldap']); @@ -62,7 +62,7 @@ eval('$writer = new '.$_SESSION[APPCONFIG]->GetValue('appearance','entry_writer' $ldap['attr'] = $entry['ldap']->getAttribute($entry['attr']['string']); if (!$ldap['attr']) { - // define a new attribute for the entry + # Define a new attribute for the entry $attributefactoryclass = $_SESSION[APPCONFIG]->GetValue('appearance','attribute_factory'); eval('$attribute_factory = new '.$attributefactoryclass.'();'); $ldap['attr'] = $attribute_factory->newAttribute($entry['attr']['string'], array()); @@ -77,11 +77,6 @@ if (! $_SESSION[APPCONFIG]->isCommandAvailable('attribute_add_value')) if (($ldap['attr']->getValueCount() == 0) && ! $_SESSION[APPCONFIG]->isCommandAvailable('attribute_add')) pla_error(sprintf('%s%s %s',_('This operation is not permitted by the configuration'),_(':'),_('add attribute'))); -/* -$ldap['attrs'] = $ldapserver->getDNAttr($entry['dn']['string'],$entry['attr']['string']); -$ldap['count'] = count($ldap['attrs']); -*/ - $entry['attr']['oclass'] = (strcasecmp($entry['attr']['string'],'objectClass') == 0) ? true : false; if ($entry['attr']['oclass']) { @@ -99,88 +94,50 @@ printf('

%s %s %s %s

', printf('

%s %s     %s: %s

', _('Server'),$ldapserver->name,_('Distinguished Name'),$entry['dn']['html']); -if ($ldap['count']) { - printf('%s %s %s %s%s', - _('Current list of'),$ldap['count'],_('values for attribute'),$ldap['attr']->getFriendlyName(),_(':')); -} else { - printf('%s %s.', - _('No current value for attribute'),$ldap['attr']->getFriendlyName()); -} - if ($entry['attr']['oclass']) { echo '
'; echo ''; } else { echo ''; echo ''; - - //printf('',$entry['attr']['encode']); - } printf('',$ldapserver->server_id); printf('',$entry['dn']['encode']); +echo '
'; +echo ''; +echo ''; if ($ldap['count']) { - // display current attribute values - echo '
', + _('Current list of'),$ldap['count'],_('values for attribute'),$ldap['attr']->getFriendlyName(),_(':')); +} else { + printf('', + _('No current value for attribute'),$ldap['attr']->getFriendlyName()); +} + +echo ''; +echo ''; -echo _('Enter the value you would like to add:'); -echo '

'; +echo ''; +printf('',_('Enter the value you would like to add:')); +echo ' - - '; + continue; } - /* - * Is this a boolean attribute? - */ + # Is this a boolean attribute? if ($ldapserver->isAttrBoolean($attr)) { $val = $vals[0]; - if ($side = 'dst') {?> + if ($side = 'dst') { + printf('',htmlspecialchars($attr),htmlspecialchars($val)); - + printf(''; + } - - - - - - - '; + continue; } - /* - * End of special case attributes (non plain text). - */ - + # End of special case attributes (non plain text). foreach ($vals as $i => $val) { if ($side == 'dst') { - $input_name = "new_values[" . htmlspecialchars($attr) . "][$i]"; - // We smack an id="..." tag in here that doesn't have [][] in it to allow the - // draw_chooser_link() to identify it after the user clicks. - $input_id = "new_values_" . htmlspecialchars($attr) . "_" . $i; ?> + $input_name = sprintf('new_values[%s][%s]',htmlspecialchars($attr),$i); - - - + echo ''; + printf('',htmlspecialchars($attr),$i,htmlspecialchars($val)); + } - + # Is this value is a structural objectClass, make it read-only + if (0 == strcasecmp($attr,'objectClass')) { - getSchemaObjectClass($val); + printf('', + _('View the schema description for this objectClass'),$ldapserver->server_id,htmlspecialchars($val)); - if ($schema_object->getType() == 'structural') { - echo "$val (" . _('structural') . ")
"; + $schema_object = $ldapserver->getSchemaObjectClass($val); - if ($side == 'dst') {?> + if ($schema_object->getType() == 'structural') { + printf('%s (%s)
', + $val,_('This is a structural ObjectClass and cannot be removed.'),_('structural')); - + if ($side == 'dst') + printf('',$input_name,$input_id,htmlspecialchars($val)); - isDNAttr($attr)) { ?> + if (is_dn_string($val) || $ldapserver->isDNAttr($attr)) + printf('', + sprintf(_('Go to %s'),htmlspecialchars($val)),$ldapserver->server_id,rawurlencode($val)); - + elseif (is_mail_string($val)) + printf('',htmlspecialchars($val)); - - - - - - - - - ',htmlspecialchars($val)); if ($ldapserver->isMultiLineAttr($attr,$val)) { - - if ($side == 'dst') {?> - - - - - - - isDNAttr($attr)) - draw_chooser_link("edit_form.$input_id",false); ?> - -
- - - - - - - - - isReadOnly()) { - - // First check if the required objectClass is in this DN - $isOK = 0; - $src_oclass = array(); - $attr_object = $ldapserver_dst->getSchemaAttribute($attr,$dn_dst); - foreach ($attr_object->used_in_object_classes as $oclass) { - if (in_array(strtolower($oclass),arrayLower($attrs_dst['objectClass']))) { - $isOK = 1; - break; - } else { - // Find oclass that the source has that provides this attribute. - if (in_array($oclass,$attrs_src['objectClass'])) - $src_oclass[] = $oclass; - } - } - - print "'; + } /* end foreach value */ + + echo ''; + + # Draw the "add value" link under the list of values for this attributes + if (! $ldapserver_dst->isReadOnly()) { + + # First check if the required objectClass is in this DN + $isOK = 0; + $src_oclass = array(); + $attr_object = $ldapserver_dst->getSchemaAttribute($attr,$dn_dst); + foreach ($attr_object->used_in_object_classes as $oclass) { + if (in_array(strtolower($oclass),arrayLower($attrs_dst['objectClass']))) { + $isOK = 1; + break; + + } else { + # Find oclass that the source has that provides this attribute. + if (in_array($oclass,$attrs_src['objectClass'])) + $src_oclass[] = $oclass; } } - print ""; ?> + echo ' + if (count($src_oclass) == 1) + $add_href = sprintf('cmd.php?cmd=add_oclass_form&server_id=%s&dn=%s&new_oclass=%s', + $ldapserver_dst->server_id,$encoded_dn_dst,$src_oclass[0]); + else + $add_href = sprintf('cmd.php?cmd=add_value_form&server_id=%s&dn=%s&attr=objectClass', + $ldapserver_dst->server_id,$encoded_dn_dst); - + if ($attr == 'objectClass') + printf('
(%s)
',$add_href,_('Add ObjectClass and Attributes'),_('add value')); + else + printf('
(%s)
', + $add_href,sprintf(_('You need one of the following ObjectClass(es) to add this attribute %s.'),implode(" ",$src_oclass)), + _('Add new ObjectClass')); - $vals) */ + } else { + if (! $schema_attr_dst->getIsSingleValue() || (! isset($vals))) { -if (! $ldapserver_dst->isReadOnly()) { ?> + $add_href = sprintf('cmd.php?cmd=add_value_form&erver_id=%s&dn=%s&attr=%s', + $ldapserver_dst->server_id,$encoded_dn_dst,rawurlencode($attr)); - + printf('
(%s)
', + $add_href,sprintf(_('Add an additional value to attribute \'%s\''),$attr),_('add value')); + } + } + } - + echo ''; -
'; + printf('%s %s %s %s%s%s %s.'; +if ($ldap['count']) { + # Display current attribute values + echo '
'; for ($i = 0; $i < $ldap['count']; $i++) { $writer->draw('OldValue', $ldap['attr'], $i); $writer->draw('ReadOnlyValue', $ldap['attr'], $i); } echo '
'; - /* - if ($ldapserver->isJpegPhoto($entry['attr']['string'])) { - printf('
%s
', - draw_jpeg_photos($ldapserver,$entry['dn']['string'],$entry['attr']['string'],false)); - # - printf('

%s

', - _('Note: You will get an "inappropriate matching" error if you have not setup an EQUALITY rule on your LDAP server for this attribute.')); - # - - } elseif ($ldapserver->isAttrBinary($entry['attr']['string'])) { - echo '
    '; - for ($i=1; $i<=count($vals); $i++) { - $href = sprintf('download_binary_attr.php?server_id=%s&dn=%s&attr=%s&value_num=%s', - $ldapserver->server_id,$entry['dn']['encode'],$entry['attr']['string'],$i-1); - - printf('
  • Save%s (%s)
  • ', - $href,_('download value'),$i); - } - echo '
'; - - # - printf('

%s

', - _('Note: You will get an "inappropriate matching" error if you have not setup an EQUALITY rule on your LDAP server for this attribute.')); - # - - } else { - echo '
    '; - if (strcasecmp($entry['attr']['string'],'userPassword') == 0) { - foreach ($ldap['attrs'] as $key => $value) { - if (obfuscate_password_display(get_enc_type($value))) - echo '
  • '.preg_replace('/./','*',$value).'
  • '; - else - echo '
  • '.htmlspecialchars($value).'
  • '; - } - - } else { - foreach ($ldap['attrs'] as $val) - printf('
  • %s
  • ',htmlspecialchars($val)); - } - echo '
'; - } - */ } else { echo '

'; } +echo '
%s'; if ($entry['attr']['oclass']) { - // draw objectClass selection - echo ''; + echo ''; if ($_SESSION[APPCONFIG]->GetValue('appearance','show_hints')) - printf('
Hint%s
', + printf('', _('Note: You may be required to enter new attributes that these objectClass(es) require')); + echo '
'; + # Draw objectClass selection + echo '
'; echo '',_('Add new ObjectClass')); echo '
'; - echo '
'; + echo '

Hint%s
'; + echo ''; echo ''; } else { - // draw a blank field - echo ''; + echo '
'; + # Draw a blank field + echo '
'; $writer->draw('BlankValue', $ldap['attr'], $ldap['count']); echo '
'; - /* - if ($ldapserver->isAttrBinary($entry['attr']['string'])) { - echo ''; - echo ''; - - } else { - if ($ldapserver->isMultiLineAttr($entry['attr']['string'])) { - echo ''; - } else { - printf('', - ($ldap['attr']->getMaxLength() ? sprintf(' maxlength="%s"',$ldap['attr']->getMaxLength()) : '')); - - # Draw the "browse" button next to this input box if this attr houses DNs: - if ($ldapserver->isDNAttr($entry['attr']['string'])) - draw_chooser_link("new_value_form.new_value", false); - } - } - */ if ($ldap['schema']->getDescription()) printf('%s: %s
',_('Description'),$ldap['schema']->getDescription()); @@ -240,9 +182,12 @@ if ($entry['attr']['oclass']) { printf('',_('Add New Value')); echo '
'; + echo '
'; + echo ''; echo ''; - // javascript + # Javascript echo ' + + printf('%s',_('Check password')); -
  "; - if (! $isOK) { - - if (count($src_oclass) == 1) { - $add_href = sprintf('cmd.php?cmd=add_oclass_form&server_id=%s&dn=%s&new_oclass=%s', - $ldapserver_dst->server_id,$encoded_dn_dst,$src_oclass[0]); - } else { - $add_href = sprintf('cmd.php?cmd=add_value_form&server_id=%s&dn=%s&attr=objectClass', - $ldapserver_dst->server_id,$encoded_dn_dst); - } - - if ($attr == 'objectClass') - printf('
(%s)
',$add_href,_('Add ObjectClass and Attributes'),_('add value')); + if ($side == 'dst') + printf('',$input_name,$input_id,htmlspecialchars($val)); else - printf('
(%s)
',$add_href,sprintf(_('You need one of the following ObjectClass(es) to add this attribute %s.'),implode(" ",$src_oclass)),_('Add new ObjectClass')); + echo htmlspecialchars($val); } else { - if (! $schema_attr_dst->getIsSingleValue() || (! isset($vals))) { + if ($side == 'dst') + printf('',$input_name,$input_id,htmlspecialchars($val)); + else + echo htmlspecialchars($val); + } - $add_href = sprintf('cmd.php?cmd=add_value_form&server_id=%s&dn=%s&attr=%s', - $ldapserver_dst->server_id,$encoded_dn_dst,rawurlencode($attr)); + # draw a link for popping up the entry browser if this is the type of attribute that houses DNs. + if ($ldapserver->isDNAttr($attr)) + draw_chooser_link("edit_form.$input_id",false); - printf('
(%s)
', - $add_href,sprintf(_('Add an additional value to attribute \'%s\''),$attr),_('add value')); - } + echo '
'; + } + + echo '
  '; + if (! $isOK) { -
 
+ # Get the values and see if they are the same. + if (isset($attrs_src[$attr]) && isset($attrs_dst[$attr]) && $attrs_src[$attr] === $attrs_dst[$attr]) + echo ''; + else + echo ' '; - +} /* End foreach ($attrs as $attr => $vals) */ -'; +echo ''; if( $ldapserver->isAnonBindAllowed() ) { ?> '; @@ -1430,7 +1417,7 @@ class EntryWriter1 extends EntryWriter { }'; echo 'var comp = getAttributeComponents("new", "'.$attribute->getName().'"); for (var i = 0; i < comp.length; i++) { - comp[i].style.backgroundColor = '.$var_valid.' ? "white" : \'#ffffba\'; + comp[i].style.backgroundColor = '.$var_valid.' ? "white" : \'#F0F0FF\'; }'; } } @@ -1468,14 +1455,14 @@ class EntryWriter1 extends EntryWriter { } protected function drawAttributeInformations($attribute) { - if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) echo ''; + if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) echo ''; else echo ''; - echo ''; + echo ''; $this->draw('Name', $attribute); echo ''; - echo ''; + echo ''; # Setup the $attr_note, which will be displayed to the right of the attr name (if any) if ($_SESSION[APPCONFIG]->GetValue('appearance', 'show_attribute_notes')) { @@ -1509,7 +1496,7 @@ class EntryWriter1 extends EntryWriter { if ($attr_note) printf('%s', $attr_note); - if ($attribute->isReadOnly() && $this->ldapserver->isAttrReadOnly($attribute->getName())) { + if ($attribute->isReadOnly() && $this->getLDAPServer()->isAttrReadOnly($attribute->getName())) { printf('(%s)', _('This attribute has been flagged as read only by the phpLDAPadmin administrator'), _('read only')); @@ -1592,11 +1579,11 @@ class EntryWriter1 extends EntryWriter { protected function drawAttributeStartValueLine($attribute) { if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) { - echo ''; + echo ''; } else { echo ''; } - echo ''; + echo ''; } protected function drawAttributeEndValueLine($attribute) { @@ -1604,7 +1591,7 @@ class EntryWriter1 extends EntryWriter { echo ''; if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) { - echo ''; + echo ''; } } @@ -1671,7 +1658,7 @@ class EntryWriter1 extends EntryWriter { if (!is_string($val)) $val = ''; if ($i < 0) $i = 0; - printf('', + printf('', htmlspecialchars($attribute->getName()), $i, htmlspecialchars($attribute->getName()), $i, htmlspecialchars($val)); } @@ -1699,7 +1686,7 @@ class EntryWriter1 extends EntryWriter { * draw_chooser_link() to identify it after the user clicks. */ $id = sprintf('new_values_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf('', htmlspecialchars($attribute->getName()), $i, $id, htmlspecialchars($val), $attribute->getName(), $attribute->getName(), @@ -1739,9 +1726,10 @@ class EntryWriter1 extends EntryWriter { } } + $ldapserver = $this->getLDAPServer(); $arr1 = array(); foreach ($vals as $id_parval => $parval) { - $arr2 = Templates::EvaluateDefault($this->ldapserver, $parval, $dn, null, null); + $arr2 = Templates::EvaluateDefault($ldapserver, $parval, $dn, null, null); if (is_array($arr2)) $arr1 = array_merge($arr1,$arr2); else $arr1[$id_parval] = $arr2; } @@ -1749,7 +1737,7 @@ class EntryWriter1 extends EntryWriter { $arr1 = array(); foreach ($opts as $id_parval => $parval) { - $arr2 = Templates::EvaluateDefault($this->ldapserver, $parval, $dn, null, null); + $arr2 = Templates::EvaluateDefault($ldapserver, $parval, $dn, null, null); if (is_array($arr2)) $arr1 = array_merge($arr1,$arr2); else $arr1[$id_parval] = $arr2; } @@ -1811,7 +1799,7 @@ class EntryWriter1 extends EntryWriter { if ($attribute->getEntry()) $encoded_dn = rawurlencode($attribute->getEntry()->getDn()); if (!$encoded_dn) return; // creating entry - $url_base = sprintf('cmd.php?server_id=%s&dn=%s', $this->ldapserver->server_id, $encoded_dn); + $url_base = sprintf('cmd.php?server_id=%s&dn=%s', $this->index, $encoded_dn); $href = sprintf('%s&cmd=rename_form', $url_base); return sprintf('(%s)', htmlspecialchars($href), _('rename')); @@ -1829,7 +1817,7 @@ class EntryWriter1 extends EntryWriter { if (!$encoded_dn) return; // creating entry $href = sprintf('cmd.php?cmd=add_value_form&server_id=%s&dn=%s%s&attr=%s', - $this->ldapserver->server_id, $encoded_dn, $template ? "&template=$template" : '', rawurlencode($attribute->getName())); + $this->index, $encoded_dn, $template ? "&template=$template" : '', rawurlencode($attribute->getName())); return sprintf('(%s)', htmlspecialchars($href), sprintf(_('Add an additional value to attribute \'%s\''), @@ -1842,14 +1830,14 @@ class EntryWriter1 extends EntryWriter { if (!$encoded_dn) return; // creating entry $href = sprintf('cmd.php?cmd=modify_member_form&server_id=%s&dn=%s&attr=%s', - $this->ldapserver->server_id, $encoded_dn, rawurlencode($attribute->getName())); + $this->index, $encoded_dn, rawurlencode($attribute->getName())); return sprintf('(%s)', htmlspecialchars($href), sprintf(_('Modify members for \'%s\''), $dn), _('modify group members')); } protected function drawAttributeIcon($attribute, $val) { - if (is_dn_string($val) || $this->ldapserver->isDNAttr($attribute->getName())) { + if (is_dn_string($val) || $this->getLDAPServer()->isDNAttr($attribute->getName())) { $this->draw('DnValueIcon', $attribute, $val); } elseif (is_mail_string($val)) { $this->draw('MailValueIcon', $attribute, $val); @@ -1863,27 +1851,27 @@ class EntryWriter1 extends EntryWriter { protected function drawAttributeDnValueIcon($attribute, $val) { if (strlen($val) <= 0) { - echo 'Go '; + printf('Go ',IMGDIR); - } elseif ($this->ldapserver->dnExists($val)) { - $href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s',$this->ldapserver->server_id,$val); - printf('Go ',_('Go to'), - htmlspecialchars($val), htmlspecialchars($href)); + } elseif ($this->getLDAPServer()->dnExists($val)) { + $href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s',$this->index,$val); + printf('Go ',_('Go to'), + htmlspecialchars($val), htmlspecialchars($href),IMGDIR); } else { - printf('Go ',_('DN not available'),htmlspecialchars($val)); + printf('Go ',_('DN not available'),htmlspecialchars($val),IMGDIR); } } protected function drawAttributeMailValueIcon($attribute, $val) { - $img = ''._('Mail').''; + $img = sprintf('%s',IMGDIR,_('Mail')); if (strlen($val) <= 0) echo $img; else printf(''.$img.'', htmlspecialchars($val)); echo ' '; } protected function drawAttributeUrlValueIcon($attribute, $val) { - $img = ''._('URL').''; + $img = sprintf('%s',IMGDIR,_('URL')); if (strlen($val) <= 0) echo $img; else printf(''.$img.'', htmlspecialchars($val)); echo ' '; @@ -1897,7 +1885,7 @@ class EntryWriter1 extends EntryWriter { if ($attribute->getEntry() && $attribute->getEntry()->getDn() // if not creating attribute && $config->isCommandAvailable('schema') ) { $href = sprintf('cmd.php?cmd=schema&server_id=%s&view=attributes&viewvalue=%s', - $this->ldapserver->server_id, real_attr_name($attribute->getName())); + $this->index, real_attr_name($attribute->getName())); printf('%s', $attribute->getName(), htmlspecialchars($href), $attr_display); } else { @@ -1921,7 +1909,7 @@ class EntryWriter1 extends EntryWriter { $required_by = ''; if ($attribute->getEntry()) { - $schema_attr = $this->ldapserver->getSchemaAttribute($attribute->getName(),$attribute->getEntry()->getDn()); + $schema_attr = $this->getLDAPServer()->getSchemaAttribute($attribute->getName(),$attribute->getEntry()->getDn()); if ($schema_attr) { $entry_attributes = $attribute->getEntry()->getAttributes(); $objectclass_attribute = null; @@ -1989,24 +1977,24 @@ class EntryWriter1 extends EntryWriter { if ($valcount > 0) { if ($attribute->getEntry() && $attribute->getEntry()->getDn()) { $href = sprintf('download_binary_attr.php?server_id=%s&dn=%s&attr=%s', - $this->ldapserver->server_id, rawurlencode($attribute->getEntry()->getDn()), + $this->index, rawurlencode($attribute->getEntry()->getDn()), $attribute->getName()); if ($valcount > 1) { for ($i=1; $i<=$valcount; $i++) { - printf('Save %s(%s)
', - htmlspecialchars($href), $i, _('download value'), $i); + printf('Save %s(%s)
', + htmlspecialchars($href), $i,IMGDIR,_('download value'), $i); } } else { - printf('Save %s
', - htmlspecialchars($href),_('download value')); + printf('Save %s
', + htmlspecialchars($href),IMGDIR,_('download value')); } } if (! $attribute->isReadOnly() && $_SESSION[APPCONFIG]->isCommandAvailable('attribute_delete')) { printf(''. - 'Trash %s', - $attribute->getName(), $attribute->getFriendlyName(), _('delete attribute')); + 'Trash %s', + $attribute->getName(), $attribute->getFriendlyName(),IMGDIR,_('delete attribute')); } } elseif ($attribute->isReadOnly() || ! $_SESSION[APPCONFIG]->isCommandAvailable('attribute_add_value')) { printf('
', @@ -2015,7 +2003,7 @@ class EntryWriter1 extends EntryWriter { $i = 0; $val = ''; $id = sprintf('new_values_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf('
', htmlspecialchars($attribute->getName()), $i, $id, htmlspecialchars($val), $attribute->getName(), $attribute->getName(), @@ -2054,7 +2042,7 @@ class EntryWriter1 extends EntryWriter { echo '
- +
'; @@ -2082,7 +2070,7 @@ class EntryWriter1 extends EntryWriter { $val = $attribute->getValue($i); if (!is_string($val)) $val = ''; - printf(' ', $attribute->getName(), $i, htmlspecialchars($attribute->getName()), $i, htmlspecialchars($val), $attribute->getName(), $attribute->getName(), @@ -2102,11 +2090,9 @@ class EntryWriter1 extends EntryWriter { if (isset($entry['date'][$attribute->getName()])) $entry['format'] = $entry['date'][$attribute->getName()]; - //included in class page to avoid multiple inclusions - //printf('','../htdocs/'.JSDIR); - printf('','../htdocs/'.JSDIR); - printf('','../htdocs/'.JSDIR); - printf('','../htdocs/'.JSDIR); + printf('',JSDIR); + printf('',JSDIR); + printf('',JSDIR); for ($i = 0; $i <= $attribute->getValueCount(); $i++) { printf('',$attribute->getName(),$i,$entry['format']); @@ -2132,7 +2118,7 @@ class EntryWriter1 extends EntryWriter { $input_name = sprintf('new_values[%s][%s]', htmlspecialchars($attribute->getName()), $i); $input_id = sprintf('new_values_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf(' ', $input_name, $input_id, htmlspecialchars($val), $attribute->getName(), $attribute->getName(), @@ -2169,10 +2155,10 @@ class EntryWriter1 extends EntryWriter { if ($attribute->getEntry()) $dn = $attribute->getEntry()->getDn(); # If this is a gidNumber on a non-PosixGroup entry, lookup its name and description for convenience - if (! in_array_ignore_case('posixGroup', $this->ldapserver->getDNAttr($dn, 'objectClass'))) { + if (! in_array_ignore_case('posixGroup', $this->getLDAPServer()->getDNAttr($dn, 'objectClass'))) { $gid_number = $val; $search_group_filter = "(&(objectClass=posixGroup)(gidNumber=$val))"; - $group = $this->ldapserver->search(null, null, $search_group_filter,array('dn','description')); + $group = $this->getLDAPServer()->search(null, null, $search_group_filter,array('dn','description')); if (count($group) > 0) { echo '
'; @@ -2182,7 +2168,7 @@ class EntryWriter1 extends EntryWriter { $group_name = explode('=',get_rdn($group_dn)); $group_name = $group_name[1]; $href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s', - $this->ldapserver->server_id, rawurlencode($group_dn)); + $this->index, rawurlencode($group_dn)); echo ''; printf('%s', htmlspecialchars($href), htmlspecialchars($group_name)); @@ -2214,7 +2200,7 @@ class EntryWriter1 extends EntryWriter { /* Don't draw the delete buttons if there is more than one jpegPhoto * (phpLDAPadmin can't handle this case yet) */ if ($attribute->getEntry() && $attribute->getEntry()->getDn()) { - draw_jpeg_photos($this->ldapserver, $attribute->getEntry()->getDn(), + draw_jpeg_photos($this->getLDAPServer(), $attribute->getEntry()->getDn(), $attribute->getName(), ! $attribute->isReadOnly() && $_SESSION[APPCONFIG]->isCommandAvailable('attribute_delete')); } @@ -2224,7 +2210,7 @@ class EntryWriter1 extends EntryWriter { $i = 0; $val = ''; $id = sprintf('new_values_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf('
', htmlspecialchars($attribute->getName()), $i, $id, htmlspecialchars($val), $attribute->getName(), $attribute->getName(), @@ -2261,7 +2247,7 @@ class EntryWriter1 extends EntryWriter { if (!is_string($val)) $val = ''; if ($i < 0) $i = 0; - printf('', ($attribute->getRows() > 0) ? 'rows="'.$attribute->getRows().'"' : '', ($attribute->getCols() > 0) ? 'cols="'.$attribute->getCols().'"' : '', @@ -2280,7 +2266,7 @@ class EntryWriter1 extends EntryWriter { if (!is_string($val)) $val = ''; if ($i < 0) $i = 0; - $schema_object = ($val) ? $this->ldapserver->getSchemaObjectClass($val) : false; + $schema_object = ($val) ? $this->getLDAPServer()->getSchemaObjectClass($val) : false; $structural = (is_object($schema_object) && $schema_object->getType() == 'structural'); if (!$attribute->isVisible()) { @@ -2303,9 +2289,9 @@ class EntryWriter1 extends EntryWriter { protected function drawObjectClassAttributeIcon($attribute, $val) { if (strlen($val) > 0) { $href = sprintf('cmd.php?cmd=schema&server_id=%s&view=objectClasses&viewvalue=%s', - $this->ldapserver->server_id, $val); - printf('Info ', - _('View the schema description for this objectClass'), htmlspecialchars($href)); + $this->index, $val); + printf('Info ', + _('View the schema description for this objectClass'), htmlspecialchars($href),IMGDIR); } } @@ -2331,7 +2317,7 @@ class EntryWriter1 extends EntryWriter { if ($i < 0) $i = 0; $enc_type = get_enc_type($val); - if ($val == '') $enc_type = get_default_hash($this->ldapserver->server_id); + if ($val == '') $enc_type = get_default_hash($this->index); $obfuscate_password = obfuscate_password_display($enc_type); printf('
', @@ -2350,25 +2336,14 @@ class EntryWriter1 extends EntryWriter { # Set the default hashing type if the password is blank (must be newly created) if ($val == '') { - $enc_type = get_default_hash($this->ldapserver->server_id); + $enc_type = get_default_hash($this->index); } - //printf('', $attribute->getName(), $i, htmlspecialchars($val)); - - //if (strlen($val) > 0) { - // if (obfuscate_password_display($enc_type)) { - // echo htmlspecialchars(preg_replace('/./','*', $val)); - // } else { - // echo htmlspecialchars($val); - // } - // echo '
'; - //} - echo ''; + echo ''; } else { echo ''; } @@ -157,7 +157,7 @@ class EntryWriter2 extends EntryWriter1 { if ($attribute->isVisible()) { echo ''; if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) { - //echo ''; + //echo ''; } if ($attribute->hasProperty('spacer') && $attribute->getProperty('spacer')) { echo ''; @@ -205,7 +205,7 @@ class EntryWriter2 extends EntryWriter1 { if ($attr_note) printf('%s', $attr_note); - if ($attribute->isReadOnly() && $this->ldapserver->isAttrReadOnly($attribute->getName())) { + if ($attribute->isReadOnly() && $this->getLDAPServer()->isAttrReadOnly($attribute->getName())) { printf('(%s)', _('This attribute has been flagged as read only by the phpLDAPadmin administrator'), _('read only')); diff --git a/lib/HTMLTree.php b/lib/HTMLTree.php index b565a2f..a872cea 100644 --- a/lib/HTMLTree.php +++ b/lib/HTMLTree.php @@ -1,5 +1,5 @@ ',$this->getDepth()+3); if ($ldapserver->isReadOnly()) - printf('',$this->getDepth()+3-1,_('read only')); + printf('',$this->getDepth()+3-1,_('read only')); else printf('',$this->getDepth()+3); + printf(''; } else { // end if( $ldapserver->connect(false) ) # @todo: need this message to display the LDAP server name, so we know which one is the problematic one. @@ -271,7 +276,7 @@ class HTMLTree extends Tree { $ldapserver = $this->getLdapServer(); $logged_in_dn = $ldapserver->getLoggedInDN(); - printf(''; + echo ''; } /** @@ -336,7 +341,7 @@ class HTMLTree extends Tree { $img_src = sprintf('images/%s',$dnEntry->getIcon($ldapserver)); $rdn = get_rdn($dn); - echo ''; + echo ''; $colspan = $this->getDepth()+3+$level+1; for ($i=0;$i<=$level;$i++) { @@ -373,7 +378,7 @@ class HTMLTree extends Tree { printf('',$href['edit'],$ldapserver->server_id,$encoded_dn,$img_src); $colspan--; - printf(''; echo ''; printf('',$href,_('new')); - printf('', + printf('', $this->getDepth()+3-$level-1-3,$href,_('Create a new entry in'),$rdn,_('Create new entry here')); echo ''; } @@ -467,9 +472,9 @@ class HTMLTree extends Tree { $href = htmlspecialchars( sprintf('cmd.php?cmd=%s&server_id=%s',get_custom_file($ldapserver->server_id,'login_form',''),$ldapserver->server_id)); - echo ''; + echo ''; printf('',$href,_('login')); - printf('',$this->getDepth()+3-2,$href,_('Login').'...'); + printf('',$this->getDepth()+3-2,$href,_('Login').'...'); echo ''; printf('',$this->getDepth()+3); diff --git a/lib/Tree.php b/lib/Tree.php index d89e607..08a1237 100644 --- a/lib/Tree.php +++ b/lib/Tree.php @@ -1,5 +1,5 @@ entries[$dnlower] = $entry_factory->newEditingEntry($dn); - $this->entries[$dnlower]->setTree($this); + $this->entries[$dnlower]->setTree($ldapserver->server_id); if ($ldapserver->isReadOnly()) $this->entries[$dnlower]->setReadOnly(); diff --git a/lib/common.php b/lib/common.php index 5b771b2..9eb21e5 100644 --- a/lib/common.php +++ b/lib/common.php @@ -1,5 +1,5 @@ CheckCustom(); } +# Set our timezone, if it is specified in config.php +if ($_SESSION[APPCONFIG]->GetValue('appearance','timezone')) + date_default_timezone_set($_SESSION[APPCONFIG]->GetValue('appearance','timezone')); + # If we are here, $_SESSION is set - so enabled DEBUGing if it has been configured. if (($_SESSION[APPCONFIG]->GetValue('debug','syslog') || $_SESSION[APPCONFIG]->GetValue('debug','file')) && $_SESSION[APPCONFIG]->GetValue('debug','level')) diff --git a/lib/config_default.php b/lib/config_default.php index f6096f5..00bef1a 100644 --- a/lib/config_default.php +++ b/lib/config_default.php @@ -1,5 +1,5 @@ 'Hide the features that may provide sensitive debugging information to the browser', 'default'=>true); + $this->default->appearance['timezone'] = array( + 'desc'=>'Define our timezone, if not defined in php.ini', + 'default'=>null); + /** Language * The language setting. If you set this to 'auto', phpLDAPadmin will * attempt to determine your language automatically. Otherwise, available @@ -189,9 +193,13 @@ class Config { 'desc'=>'LDAP attribute to show in the tree', 'default'=>'%rdn'); + $this->default->appearance['tree_height'] = array( + 'desc'=>'Pixel height of the tree browser', + 'default'=>null); + $this->default->appearance['tree_width'] = array( - 'desc'=>'Pixel width of the left frame view (tree browser)', - 'default'=>320); + 'desc'=>'Pixel width of the tree browser', + 'default'=>null); /** * Tree display filter @@ -316,7 +324,7 @@ class Config { 'default'=>null); $this->default->debug['addr'] = array( - 'desc'=>'IP address of PLA client to provide debugging info.', + 'desc'=>'IP address of client to provide debugging info.', 'default'=>null); $this->default->debug['append'] = array( @@ -500,10 +508,10 @@ class Config { if (! isset($config[$key])) error(sprintf('A call was made in [%s] to GetValue requesting [%s] that isnt predefined.', - basename($_SERVER['PHP_SELF']),$key)); + basename($_SERVER['PHP_SELF']),$key),'error',true); if (! isset($config[$key][$index])) - error("Requesting a index [$index] that isnt predefined."); + error(sprintf('Requesting an index [%s] in key [%s] that isnt predefined.',$index,$key),'error',true); return isset($config[$key][$index]['value']) ? $config[$key][$index]['value'] : $config[$key][$index]['default']; } @@ -518,23 +526,23 @@ class Config { if (isset($this->default->$masterkey)) { if (! is_array($masterdetails)) - error("Error in configuration file, [$masterdetails] should be an ARRAY."); + error(sprintf('Error in configuration file, [%s] should be an ARRAY.',$masterdetails),'error',true); foreach ($masterdetails as $key => $value) { # Test that the key is correct. if (! in_array($key,array_keys($this->default->$masterkey))) - error("Error in configuration file, [$key] has not been defined as a PLA configurable variable."); + error(sprintf('Error in configuration file, [%s] has not been defined as a configurable variable.',$key),'error',true); # Test if its should be an array or not. if (is_array($this->default->{$masterkey}[$key]['default']) && ! is_array($value)) - error("Error in configuration file, {$masterkey}['$key'] SHOULD be an array of values."); + error(sprintf('Error in configuration file, %s[\'%s\'] SHOULD be an array of values.',$masterkey,$key),'error',true); if (! is_array($this->default->{$masterkey}[$key]['default']) && is_array($value)) - error("Error in configuration file, {$masterkey}['$key'] should NOT be an array of values."); + error(sprintf('Error in configuration file, %s[\'%s\'] should NOT be an array of values.',$masterkey,$key),'error',true); } } else { - error("Error in configuration file, [$masterkey] has not been defined as a PLA MASTER configurable variable."); + error(sprintf('Error in configuration file, [%s] has not been defined as a MASTER configurable variable.',$masterkey),'error',true); } } } diff --git a/lib/functions.php b/lib/functions.php index 549336c..c14badd 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -1,5 +1,5 @@ (You are using %s)', - REQUIRED_PHP_VERSION,phpversion())); + system_message(array( + 'title'=>_('Incorrect version of PHP'), + 'body'=>sprintf('phpLDAPadmin requires PHP version %s or greater.
(You are using %s)', + REQUIRED_PHP_VERSION,phpversion()), + 'type'=>'error')); # Make sure this PHP install has all our required extensions if (! extension_loaded('ldap')) system_message(array( 'title'=>_('Missing required extension'), - 'body'=> 'Your install of PHP appears to be missing LDAP support.

Please install LDAP support before using phpLDAPadmin.
(Dont forget to restart your web server afterwards)', + 'body'=>'Your install of PHP appears to be missing LDAP support.

Please install LDAP support before using phpLDAPadmin.
(Dont forget to restart your web server afterwards)', 'type'=>'error')); # Make sure that we have php-xml loaded. if (! function_exists('xml_parser_create')) system_message(array( 'title'=>_('Missing required extension'), - 'body'=> 'Your install of PHP appears to be missing XML support.

Please install XML support before using phpLDAPadmin.
(Dont forget to restart your web server afterwards)', + 'body'=>'Your install of PHP appears to be missing XML support.

Please install XML support before using phpLDAPadmin.
(Dont forget to restart your web server afterwards)', 'type'=>'error')); # Make sure their session save path is writable, if they are using a file system session module, that is. if (! strcasecmp('Files',session_module_name() && ! is_writable(realpath(session_save_path())))) system_message(array( - 'title'=>_('Missing required extension'), - 'body'=> 'Your PHP session configuration is incorrect. Please check the value of session.save_path in your php.ini to ensure that the directory specified there exists and is writable. The current setting of "'.session_save_path().'" is un-writable by the web server.', + 'title'=>_('PHP session configuration incorrect'), + 'body'=>sprintf('Your PHP session configuration is incorrect. Please check the value of session.save_path in your php.ini to ensure that the directory specified there exists and is writable. The current setting of "%s" is un-writable by the web server.',session_save_path()), 'type'=>'error')); $config = new Config; - /* Check for syntax errors in config.php - As of php 4.3.5, this NO longer catches fatal errors :( */ - ob_start(); require $config_file; $str = ''; @@ -272,48 +272,41 @@ function check_config($config_file) { $file = file($config_file); - echo ''."\n"; - echo ''."\n"; - echo "\n"; + $body = '

Config file ERROR

'; + $body .= sprintf('

%s (%s) on line %s

',$error_type,$error,$line_num); - echo ''; - echo ''; - echo 'phpLDAPadmin Config File Error'; - echo ''; - echo ''; + $body .= '
'; + $body .= sprintf('Looks like your config file has an ERROR on line %s.
',$line_num); + $body .= 'Here is a snippet around that line
'; + $body .= '
'."\n"; - echo ''; - echo '

Config File ERROR

'; - printf('

%s (%s) on line %s

',$error_type,$error,$line_num); - - echo '
'; - printf('Looks like your config file has an ERROR on line %s.
',$line_num); - echo 'Here is a snippet around that line
'; - echo '
'."\n"; - - echo '
'; + $body .= '
'; for ($i = $line_num-9; $i<$line_num+5; $i++) { if ($i+1 == $line_num) - echo '
'; + $body .= '
'; if ($i < 0) continue; - printf('%s: %s
',$i+1,htmlspecialchars($file[$i])); + $body .= sprintf('%s: %s
',$i+1,htmlspecialchars($file[$i])); + if ($i+1 == $line_num) - echo '
'; + $body .= '
'; } - echo '
'; - echo '
'; - echo 'Hint: Sometimes these errors are caused by lines preceding the line reported.'; - echo '
'; - echo ''; - echo ''; + $body .= ''; + $body .= '
'; + $body .= 'Hint: Sometimes these errors are caused by lines preceding the line reported.'; + $body .= '
'; - return false; + $block = new block(); + $block->SetBody($body); + $www['page'] = new page(); + $www['page']->block_add('body',$block); + $www['page']->display(); + + die(); } } @@ -515,7 +508,7 @@ function error($msg,$type='note',$fatal=false,$backtrace=false) { # if the error is fatal, we'll need to stop here. if (! isset($www['page'])) - $www['page'] = new page(null); + $www['page'] = new page(); $www['page']->setsysmsg(array('title'=>_('Error'),'body'=>$msg,'type'=>$type)); @@ -530,7 +523,7 @@ function error($msg,$type='note',$fatal=false,$backtrace=false) { $backtraceblock = new block(); $backtraceblock->SetTitle('PHP Debug Backtrace'); - $body = '
'; $obfuscate_password = obfuscate_password_display($enc_type); $id = sprintf('new_values_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf('', ($obfuscate_password ? 'password' : 'text'), htmlspecialchars($attribute->getName()), $i, $id, @@ -2380,12 +2355,14 @@ class EntryWriter1 extends EntryWriter { echo ''; if ($attribute->hasProperty('helper')) { $this->draw('Helper', $attribute, $i); + } else { + echo enc_type_select_list($enc_type,'enc',$attribute,$i); } echo '
'; if ($attribute->hasProperty('verify') && $attribute->getProperty('verify') && $obfuscate_password) { $id_v = sprintf('new_values_verify_%s_%s', htmlspecialchars($attribute->getName()), $i); - printf('', + printf('', htmlspecialchars($attribute->getName()), $i, $id_v, ($attribute->getSize() > 0) ? 'size="'.$attribute->getSize().'"' : '', ($attribute->getMaxLength() > 0) ? 'maxlength="'.$attribute->getMaxLength().'"' : ''); @@ -2405,7 +2382,7 @@ class EntryWriter1 extends EntryWriter { # Set the default hashing type if the password is blank (must be newly created) if ($val == '') { - $enc_type = get_default_hash($this->ldapserver->server_id); + $enc_type = get_default_hash($this->index); } return $enc_type; @@ -2474,7 +2451,7 @@ class EntryWriter1 extends EntryWriter { if (!is_string($val)) $val = ''; if ($i < 0) $i = 0; - printf('', + printf('', htmlspecialchars($attribute->getName()), $i, htmlspecialchars($attribute->getName()), $i, htmlspecialchars($val)); @@ -2608,7 +2585,7 @@ class EntryWriter1 extends EntryWriter { if (!is_string($val)) $val = ''; if ($i < 0) $i = 0; - printf('', + printf('', htmlspecialchars($attribute->getName()), $i, htmlspecialchars($attribute->getName()), $i, htmlspecialchars($val)); diff --git a/lib/EntryWriter2.php b/lib/EntryWriter2.php index 0ed6e98..d647f3a 100644 --- a/lib/EntryWriter2.php +++ b/lib/EntryWriter2.php @@ -1,5 +1,5 @@ isVisible()) { if (($this->context == ENTRY_WRITER_EDITING_CONTEXT) && $attribute->hasBeenModified()) { - echo '
 
 
(%s)
 
 
', + $_SESSION['plaConfig']->GetValue('appearance','tree_width') ? sprintf('width: %spx; ',$_SESSION['plaConfig']->GetValue('appearance','tree_width')) : '', + $_SESSION['plaConfig']->GetValue('appearance','tree_height') ? sprintf('height: %spx; ',$_SESSION['plaConfig']->GetValue('appearance','tree_height')) : ''); + foreach ($ldapserver->getBaseDN() as $base_dn) { # Did we get a base_dn for this server somehow? if ($base_dn) { @@ -83,6 +87,7 @@ class HTMLTree extends Tree { continue; } } + echo '
%s%s ',$this->getDepth()+3-1,_('Logged in as'),_(':')); if ($ldapserver->getDNBase($logged_in_dn) == $logged_in_dn) { $logged_in_branch = ''; @@ -294,7 +299,7 @@ class HTMLTree extends Tree { if (strcasecmp('anonymous',$logged_in_dn)) { foreach ($logged_in_dn_array as $rdn_piece) { $href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s',$ldapserver->server_id,rawurlencode($rdn)); - printf('%s',htmlspecialchars($href),pretty_print_dn($rdn_piece)); + printf('%s',htmlspecialchars($href),pretty_print_dn($rdn_piece)); if ($rdn_piece != end($logged_in_dn_array)) echo ','; @@ -306,7 +311,7 @@ class HTMLTree extends Tree { echo 'Anonymous'; } - echo '
img',$colspan); + printf('',$colspan); printf('%s',$href['edit'],$this->get_formatted_dn($dnEntry,$level)); if ($child_count) @@ -454,7 +459,7 @@ class HTMLTree extends Tree { echo '%s%s
%s%s%s
 
'; + $body = '
'; $body .= "\n"; foreach (debug_backtrace() as $error => $line) { $body .= sprintf('', @@ -1755,8 +1748,8 @@ function support_oid_to_text($oid_id) { */ function pla_error($msg,$ldap_err_msg=null,$ldap_err_no=-1,$fatal=true) { if (defined('DEBUG_ENABLED') && (DEBUG_ENABLED)) - debug_log('Entered with (%s,%s,%s,%s,%s)',1,__FILE__,__LINE__,__METHOD__, - $msg,$ldap_err_msg,$ldap_err_no,$fatal,$backtrace); + debug_log('Entered with (%s,%s,%s,%s)',1,__FILE__,__LINE__,__METHOD__, + $msg,$ldap_err_msg,$ldap_err_no,$fatal); $title = ''; @@ -2928,13 +2921,15 @@ function server_info_list($visible=false) { return $server_info_list; } -function enc_type_select_list($enc_type) { +function enc_type_select_list($enc_type,$id,$attribute,$i) { if (DEBUG_ENABLED) - debug_log('Entered with (%s)',1,__FILE__,__LINE__,__METHOD__,$enc_type); + debug_log('Entered with (%s,%s,%s,%s)',1,__FILE__,__LINE__,__METHOD__,$enc_type,$id,$attribute,$i); + + $html = sprintf(''; $html .= ''; - foreach (array('crypt','ext_des','md5crypt','blowfish','md5','smd5','sha','ssha') as $option) $html .= sprintf('%s',($enc_type == $option ? ' selected="true"' : ''),$option); diff --git a/lib/page.php b/lib/page.php index 59ed212..ee89cf6 100644 --- a/lib/page.php +++ b/lib/page.php @@ -1,5 +1,5 @@ ',$this->_app['urlcss']); - printf('','../htdocs/'); + printf('',IMGDIR); if (defined('JSDIR')) { printf('',JSDIR); - printf('','../htdocs/'.JSDIR); + printf('',JSDIR); echo "\n"; printf('',JSDIR); printf('',JSDIR); printf('',JSDIR); - printf('','../htdocs/'.JSDIR); - printf('','../htdocs/'.JSDIR); + printf('',JSDIR); + printf('',JSDIR); echo "\n"; } diff --git a/lib/search_form_advanced.php b/lib/search_form_advanced.php index f79b34b..7c0b69a 100644 --- a/lib/search_form_advanced.php +++ b/lib/search_form_advanced.php @@ -1,5 +1,5 @@ - +

+
+ -
%s%s (%s)
- +isCommandAvailable('search', 'simple_search'); @@ -57,26 +58,26 @@ function focus_filter() { - + - + ',_('This is not a valid DN.')); if (isset($entry['base_dn']['exist']) && $entry['base_dn']['exist']) - printf('%s',_('This entry does not exist.')); + printf('',_('This entry does not exist.')); ?> - + - + - + + diff --git a/lib/search_form_predefined.php b/lib/search_form_predefined.php index bcbb17a..fe413e2 100644 --- a/lib/search_form_predefined.php +++ b/lib/search_form_predefined.php @@ -1,25 +1,26 @@ '; +printf('

%s

',_('Predefined Searches')); +echo '
'; +echo ''; echo ''; echo ''; echo ''; printf('',$entry['format']); printf('',$ldapserver->server_id); -echo '
 
%s',_('This is not a valid DN.')); + printf('
 %s
 %s
- +
- + ">
'; +echo ''; if ($entry['predefined']) $selected_q_number = intval($entry['predefined']); else $selected_q_number = null; -printf('',_('Predefined Searches')); $ss = $_SESSION[APPCONFIG]->isCommandAvailable('search', 'simple_search'); $as = $_SESSION[APPCONFIG]->isCommandAvailable('search', 'advanced_search'); @@ -42,7 +43,7 @@ if (! isset($_SESSION[APPCONFIG]->queries) || ! is_array($_SESSION[APPCONFIG]->q } else { echo ''; - printf('',_('Select a predefined search')); + printf('',_('Select a predefined search')); echo '
%s
%s: %s:'; echo ' - - +isCommandAvailable('search', 'advanced_search'); diff --git a/lib/search_results_list.php b/lib/search_results_list.php index 351b399..902db37 100644 --- a/lib/search_results_list.php +++ b/lib/search_results_list.php @@ -1,5 +1,5 @@ $dndetails) { if ($i >= $end_entry) break; - echo '
'; + echo '
'; - echo ''; + echo ''; printf('',get_icon($ldapserver,$dn)); $formatted_dn = get_rdn($dn); @@ -33,7 +33,7 @@ foreach ($results as $dn => $dndetails) { echo ''; if ($_SESSION[APPCONFIG]->isCommandAvailable('schema')) { - printf('',htmlspecialchars(dn_unescape($dn))); + printf('',htmlspecialchars(dn_unescape($dn))); } # Iterate over each attribute for this entry @@ -45,11 +45,11 @@ foreach ($results as $dn => $dndetails) { if ($ldapserver->isAttrBinary($attr)) $values = array('(binary)'); - echo ''; + echo ''; echo ''; - printf('',$_SESSION[APPCONFIG]->getFriendlyHTML($attr)); + printf('',$_SESSION[APPCONFIG]->getFriendlyHTML($attr)); - echo '
icon
 dn%s
 dn%s
 %s%s'; + echo ''; if ($ldapserver->isJpegPhoto($attr)) draw_jpeg_photos($ldapserver,$dn,$attr,false,false,'align="left"'); diff --git a/lib/search_results_table.php b/lib/search_results_table.php index 9302de4..c92d4a9 100644 --- a/lib/search_results_table.php +++ b/lib/search_results_table.php @@ -1,5 +1,5 @@ '; # Begin drawing table echo '
'; echo '
'; -echo ''; +echo '
'; for ($i=0;$i'; - else - echo ''; + printf('',$i%2 ? 'even' : 'odd'); foreach ($all_attrs as $attr) { echo '
'; diff --git a/lib/server_functions.php b/lib/server_functions.php index c2e361b..9d81050 100644 --- a/lib/server_functions.php +++ b/lib/server_functions.php @@ -1,5 +1,5 @@ auth_type))); + error(sprintf(_('Error: You have an error in your config file. The only three allowed values for auth_type in the $servers section are \'session\', \'cookie\', and \'config\'. You entered \'%s\', which is not allowed.'),htmlspecialchars($this->auth_type)),'error',true); } if (DEBUG_ENABLED) @@ -130,6 +130,8 @@ class LDAPserver { debug_log('Creating new connection [%s] for Server ID [%s]',16,__FILE__,__LINE__,__METHOD__, $connect_id,$this->server_id); + $this->connection[$connect_id]['resource'] = null; + # Grab the AUTH INFO based on the auth_type for this server if ($connect_id == 'anonymous') { if (DEBUG_ENABLED) @@ -259,8 +261,8 @@ class LDAPserver { # Try to fire up TLS is specified in the config if ($this->isTLSEnabled()) { - function_exists('ldap_start_tls') or pla_error(_('Your PHP install does not support TLS.')); - @ldap_start_tls($resource) or pla_error(_('Could not start TLS. Please check your LDAP server configuration.'),ldap_error($resource)); + function_exists('ldap_start_tls') or error(_('Your PHP install does not support TLS.'),'error'); + @ldap_start_tls($resource) or error(_('Could not start TLS. Please check your LDAP server configuration.'),'error',true); } $bind_result = false; @@ -274,7 +276,7 @@ class LDAPserver { # No support for ldap_sasl_bind? if (! function_exists('ldap_sasl_bind')) - pla_error(_('Your PHP installation does not support ldap_sasl_bind() function. This function is present in PHP 5.x when compiled with --with-ldap-sasl.')); + error(_('Your PHP installation does not support ldap_sasl_bind() function. This function is present in PHP 5.x when compiled with --with-ldap-sasl.'),'error'); # Fill variables $props = $this->connection[$connect_id]['sasl_props']; @@ -336,16 +338,16 @@ class LDAPserver { if ($process_error) { switch (ldap_errno($resource)) { case 0x31: - error(_('Bad username or password. Please try again.'),'error',true); + error(_('Bad username or password. Please try again.'),'error'); break; case 0x32: - error(_('Insufficient access rights.'),'error',true); + error(_('Insufficient access rights.'),'error'); break; case -1: - error(sprintf(_('Could not connect to "%s" on port "%s"'),$host,$port),'error',true); + error(sprintf(_('Could not connect to "%s" on port "%s"'),$host,$port),'error'); break; default: - error(_('Could not bind to the LDAP server (%s).',ldap_err2str($resource),$resource),'error',true); + error(_('Could not bind to the LDAP server (%s).',ldap_err2str($resource),$resource),'error'); } } else { diff --git a/lib/session_functions.php b/lib/session_functions.php index 7bc9d59..9fe0512 100644 --- a/lib/session_functions.php +++ b/lib/session_functions.php @@ -1,5 +1,5 @@ diff --git a/lib/timeout_functions.php b/lib/timeout_functions.php index f7edc82..080a56f 100644 --- a/lib/timeout_functions.php +++ b/lib/timeout_functions.php @@ -1,5 +1,5 @@ server_id); $_SESSION['activity']['server'][$ldapserver->server_id] = time(); - $_SESSION['activity']['rightframe_server_id'] = $ldapserver->server_id; return true; } @@ -63,7 +61,7 @@ function session_timed_out($ldapserver) { else $session_timeout = $ldapserver->session_timeout; - # Get the $last_activity and $rightframe_server_id value + # Get the $last_activity value $last_activity = $_SESSION['activity']['server'][$ldapserver->server_id]; # If diff between current time and last activity greater than $session_timeout, log out user diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo index ae192e5..88d19ac 100644 Binary files a/locale/it_IT/LC_MESSAGES/messages.mo and b/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po index 391fcc4..4b38f01 100644 --- a/locale/it_IT/LC_MESSAGES/messages.po +++ b/locale/it_IT/LC_MESSAGES/messages.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpldapadmin messages\n" "Report-Msgid-Bugs-To: phpldapadmin-devel@lists.sf.net\n" -"POT-Creation-Date: 2007-12-03 11:45+0200\n" -"PO-Revision-Date: 2007-12-04 18:22+0100\n" -"Last-Translator: Fabio Pedretti \n" +"POT-Creation-Date: 2004-01-14 17:45+0200\n" +"PO-Revision-Date: 2008-01-22 15:04+0100\n" +"Last-Translator: Fabio Pedretti \n" "Language-Team: phpLDAPadmin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -16,42 +16,42 @@ msgstr "" msgid "%s of %s entries failed to be deleted." msgstr "Impossibile eliminare %s di %s voci." -#: ../../lib/EntryWriter1.php:946 +#: ../../lib/EntryWriter1.php:960 msgid "(" msgstr "(" -#: ../../lib/HTMLTree.php:477 +#: ../../lib/HTMLTree.php:481 msgid "(Session timed out. Automatically logged out.)" msgstr "(Sessione scaduta. Disconnesso automaticamente.)" -#: ../../lib/EntryWriter1.php:948 +#: ../../lib/EntryWriter1.php:962 msgid ")" msgstr ")" -#: ../../lib/EntryWriter1.php:247 ../../lib/EntryWriter1.php:254 -#: ../../lib/EntryWriter1.php:261 ../../lib/EntryWriter1.php:507 -#: ../../lib/EntryWriter1.php:512 ../../lib/EntryWriter1.php:1019 -#: ../../lib/EntryWriter1.php:1022 ../../lib/EntryWriter1.php:1244 -#: ../../lib/EntryWriter1.php:1413 ../../lib/EntryWriter1.php:2425 +#: ../../htdocs/add_attr.php:25 ../../htdocs/add_value.php:24 +#: ../../htdocs/add_value_form.php:76 ../../htdocs/add_value_form.php:78 +#: ../../htdocs/add_value_form.php:104 ../../htdocs/copy.php:20 +#: ../../htdocs/copy.php:76 ../../htdocs/create.php:25 +#: ../../htdocs/create.php:114 ../../htdocs/delete.php:21 +#: ../../htdocs/delete_attr.php:21 ../../htdocs/export.php:18 +#: ../../htdocs/ldif_import.php:19 ../../htdocs/mass_delete.php:26 +#: ../../htdocs/purge_cache.php:13 ../../htdocs/rdelete.php:21 +#: ../../htdocs/refresh.php:17 ../../htdocs/rename.php:24 +#: ../../htdocs/schema.php:20 ../../htdocs/search.php:120 +#: ../../htdocs/search.php:124 ../../htdocs/search.php:128 +#: ../../htdocs/search.php:265 ../../htdocs/search.php:276 +#: ../../htdocs/search.php:295 ../../htdocs/search.php:299 +#: ../../htdocs/server_info.php:16 ../../htdocs/update.php:61 +#: ../../htdocs/update.php:67 ../../htdocs/update.php:80 +#: ../../htdocs/update_confirm.php:316 ../../htdocs/update_confirm.php:321 +#: ../../htdocs/view_jpeg_photo.php:25 ../../lib/EntryWriter1.php:247 +#: ../../lib/EntryWriter1.php:254 ../../lib/EntryWriter1.php:261 +#: ../../lib/EntryWriter1.php:507 ../../lib/EntryWriter1.php:513 +#: ../../lib/EntryWriter1.php:520 ../../lib/EntryWriter1.php:1033 +#: ../../lib/EntryWriter1.php:1036 ../../lib/EntryWriter1.php:1260 +#: ../../lib/EntryWriter1.php:1429 ../../lib/EntryWriter1.php:2452 #: ../../lib/EntryWriter2.php:21 ../../lib/EntryWriter2.php:175 -#: ../../lib/HTMLTree.php:274 ../../lib/page.php:184 -#: ../../htdocs/delete.php:21 ../../htdocs/add_value.php:24 -#: ../../htdocs/rename.php:24 ../../htdocs/refresh.php:17 -#: ../../htdocs/update.php:61 ../../htdocs/update.php:67 -#: ../../htdocs/update.php:80 ../../htdocs/server_info.php:16 -#: ../../htdocs/ldif_import.php:19 ../../htdocs/create.php:25 -#: ../../htdocs/create.php:114 ../../htdocs/delete_attr.php:21 -#: ../../htdocs/purge_cache.php:13 ../../htdocs/add_attr.php:25 -#: ../../htdocs/copy.php:20 ../../htdocs/copy.php:76 -#: ../../htdocs/view_jpeg_photo.php:25 ../../htdocs/schema.php:20 -#: ../../htdocs/mass_delete.php:26 ../../htdocs/add_value_form.php:76 -#: ../../htdocs/add_value_form.php:78 ../../htdocs/add_value_form.php:104 -#: ../../htdocs/search.php:120 ../../htdocs/search.php:124 -#: ../../htdocs/search.php:128 ../../htdocs/search.php:265 -#: ../../htdocs/search.php:276 ../../htdocs/search.php:295 -#: ../../htdocs/search.php:299 ../../htdocs/rdelete.php:21 -#: ../../htdocs/export.php:18 ../../htdocs/update_confirm.php:322 -#: ../../htdocs/update_confirm.php:327 +#: ../../lib/HTMLTree.php:274 ../../lib/page.php:200 msgid ":" msgstr ":" @@ -60,7 +60,7 @@ msgid "A list of attributes to display in the results (comma-separated)" msgstr "" "Una lista di attributi da visualizzare nei risultati (separati da virgole)" -#: ../../lib/EntryWriter1.php:2425 ../../lib/template_functions.php:944 +#: ../../lib/EntryWriter1.php:2452 ../../lib/template_functions.php:962 msgid "A random password was generated for you" msgstr "E' stata generata una password casuale" @@ -76,8 +76,8 @@ msgstr "E' richiesta una corretta riga dn." msgid "A valid newrdn attribute should be specified" msgstr "Deve essere specificato un corretto attributo newrdn" -#: ../../lib/EntryWriter1.php:775 ../../htdocs/add_attr_form.php:103 -#: ../../htdocs/add_attr_form.php:147 +#: ../../htdocs/add_attr_form.php:103 ../../htdocs/add_attr_form.php:147 +#: ../../lib/EntryWriter1.php:789 msgid "Add" msgstr "Aggiungi" @@ -85,7 +85,7 @@ msgstr "Aggiungi" msgid "Add New Value" msgstr "Aggiungi Nuovo Valore" -#: ../../htdocs/compare.php:528 ../../htdocs/add_oclass_form.php:104 +#: ../../htdocs/add_oclass_form.php:104 ../../htdocs/compare.php:526 msgid "Add ObjectClass and Attributes" msgstr "Aggiungi ObjectClass e Attributi" @@ -93,7 +93,7 @@ msgstr "Aggiungi ObjectClass e Attributi" msgid "Add all" msgstr "Aggiungi tutto" -#: ../../lib/EntryWriter1.php:1808 ../../htdocs/compare.php:539 +#: ../../htdocs/compare.php:537 ../../lib/EntryWriter1.php:1835 #, php-format msgid "Add an additional value to attribute '%s'" msgstr "Aggiungi un'altro valore all'attributo '%s'" @@ -102,12 +102,12 @@ msgstr "Aggiungi un'altro valore all'attributo '%s'" msgid "Add new" msgstr "Aggiungi nuovo" -#: ../../htdocs/compare.php:530 ../../htdocs/add_value_form.php:196 +#: ../../htdocs/add_value_form.php:196 ../../htdocs/compare.php:528 msgid "Add new ObjectClass" msgstr "Aggiungi nuovo ObjectClass" -#: ../../lib/EntryWriter1.php:775 ../../htdocs/add_attr_form.php:23 -#: ../../htdocs/add_attr_form.php:71 +#: ../../htdocs/add_attr_form.php:23 ../../htdocs/add_attr_form.php:71 +#: ../../lib/EntryWriter1.php:789 msgid "Add new attribute" msgstr "Aggiungi un nuovo attributo" @@ -123,11 +123,15 @@ msgstr "Aggiungi selezionato/i" msgid "Adding..." msgstr "In aggiunta..." -#: ../../lib/search_form_simple.php:34 ../../lib/search_form_predefined.php:33 #: ../../lib/search_form_advanced.php:32 +#: ../../lib/search_form_predefined.php:33 ../../lib/search_form_simple.php:34 msgid "Advanced Search Form" msgstr "Modulo di Ricerca Avanzato" +#: ../../lib/config_default.php:634 +msgid "Alias for" +msgstr "Alias per" + #: ../../htdocs/schema.php:108 msgid "Aliases" msgstr "Alias" @@ -136,7 +140,7 @@ msgstr "Alias" msgid "All entries deleted successfully." msgstr "Tutte le voci sono state correttamente eliminate." -#: ../../lib/EntryWriter1.php:811 +#: ../../lib/EntryWriter1.php:825 #, php-format msgid "An attribute (%s) was modified and is highlighted below." msgstr "Un attributo (%s) è stato modificato ed è evidenziato sotto." @@ -145,11 +149,11 @@ msgstr "Un attributo (%s) è stato modificato ed è evidenziato sotto." msgid "An entry should have one structural objectClass." msgstr "Una voce dovrebbe avere un objectClass strutturale." -#: ../../htdocs/login_form.php:59 +#: ../../htdocs/login_form.php:60 msgid "Anonymous" msgstr "Anonimo" -#: ../../htdocs/login.php:162 +#: ../../htdocs/login.php:164 msgid "Anonymous Bind" msgstr "Bind Anonimo" @@ -157,7 +161,7 @@ msgstr "Bind Anonimo" msgid "Are you sure you want to permanently delete this object?" msgstr "Sei sicuro di voler permanentemente eliminare questo oggetto?" -#: ../../htdocs/compare.php:55 ../../htdocs/update_confirm.php:202 +#: ../../htdocs/compare.php:53 ../../htdocs/update_confirm.php:202 msgid "Attribute" msgstr "Attributo" @@ -169,15 +173,15 @@ msgstr "L'attributo non è valido" msgid "Attribute not well formed" msgstr "Attributo malformato" -#: ../../htdocs/login_form.php:62 +#: ../../htdocs/login_form.php:63 msgid "Authenticate" msgstr "Autentica" -#: ../../lib/HTMLTree.php:90 ../../lib/server_functions.php:2434 -#: ../../htdocs/login_form.php:19 ../../htdocs/login.php:27 -#: ../../htdocs/login.php:92 ../../htdocs/login.php:114 -#: ../../htdocs/login.php:134 ../../htdocs/login.php:141 -#: ../../htdocs/login.php:161 +#: ../../htdocs/login.php:26 ../../htdocs/login.php:91 +#: ../../htdocs/login.php:116 ../../htdocs/login.php:136 +#: ../../htdocs/login.php:143 ../../htdocs/login.php:163 +#: ../../htdocs/login_form.php:19 ../../lib/HTMLTree.php:90 +#: ../../lib/server_functions.php:2426 msgid "Authenticate to server" msgstr "Autentica sul server" @@ -189,25 +193,21 @@ msgstr "Membri disponibili" msgid "Back Up..." msgstr "Back Up..." -#: ../../lib/functions.php:1140 -msgid "Backtrace" -msgstr "Backtrace" - -#: ../../lib/server_functions.php:357 ../../lib/server_functions.php:2435 -#: ../../htdocs/login.php:93 ../../htdocs/login.php:142 +#: ../../htdocs/login.php:92 ../../htdocs/login.php:144 +#: ../../lib/server_functions.php:339 ../../lib/server_functions.php:2427 msgid "Bad username or password. Please try again." msgstr "Nome utente o password errati. Riprova." -#: ../../lib/search_form_advanced.php:89 ../../htdocs/export_form.php:31 +#: ../../htdocs/export_form.php:31 ../../lib/search_form_advanced.php:89 msgid "Base (base dn only)" msgstr "Base (solo base dn)" -#: ../../lib/search_form_advanced.php:63 ../../htdocs/export_form.php:52 -#: ../../htdocs/search.php:295 +#: ../../htdocs/export_form.php:52 ../../htdocs/search.php:295 +#: ../../lib/search_form_advanced.php:63 msgid "Base DN" msgstr "DN Base" -#: ../../lib/EntryWriter1.php:1952 ../../htdocs/compare.php:276 +#: ../../htdocs/compare.php:274 ../../lib/EntryWriter1.php:1979 msgid "Binary value" msgstr "Valore binario" @@ -219,41 +219,45 @@ msgstr "Istantanea dell'albero da copiare in costruzione... " msgid "CSV (Spreadsheet)" msgstr "CSV (Foglio di calcolo)" -#: ../../htdocs/update_confirm.php:313 ../../htdocs/delete_form.php:77 -#: ../../htdocs/delete_form.php:127 +#: ../../lib/functions.php:65 +msgid "Called to load a class that cant be found" +msgstr "Richiesta l'esecuzione di una classe che non può essere trovata" + +#: ../../htdocs/delete_form.php:77 ../../htdocs/delete_form.php:127 +#: ../../htdocs/update_confirm.php:307 msgid "Cancel" msgstr "Annulla" -#: ../../htdocs/compare.php:383 +#: ../../htdocs/compare.php:381 msgid "Check password" msgstr "Verifica password" -#: ../../lib/EntryWriter1.php:2389 +#: ../../lib/EntryWriter1.php:2416 msgid "Check password..." msgstr "Verifica password..." -#: ../../lib/EntryReader.php:352 +#: ../../lib/EntryReader.php:359 ../../lib/EntryReader.php:381 msgid "Checking passwords" msgstr "Verifica password" -#: ../../lib/EntryWriter1.php:782 +#: ../../lib/EntryWriter1.php:796 msgid "Children" msgstr "Figli" -#: ../../lib/functions.php:3047 +#: ../../lib/functions.php:3208 msgid "Click to popup a dialog to select a date graphically" msgstr "" "Clicca per aprire una finestra di dialogo per la selezione grafica di una " "data" -#: ../../lib/functions.php:1754 +#: ../../lib/functions.php:2226 msgid "Click to popup a dialog to select an entry (DN) graphically" msgstr "" "Clicca per aprire una finestra di dialogo per la selezione grafica di una " "voce (DN)" -#: ../../lib/EntryWriter1.php:1874 ../../htdocs/compare.php:162 -#: ../../htdocs/server_info.php:83 +#: ../../htdocs/compare.php:160 ../../htdocs/server_info.php:83 +#: ../../lib/EntryWriter1.php:1901 #, php-format msgid "Click to view the schema definition for attribute type '%s'" msgstr "" @@ -264,12 +268,12 @@ msgstr "" msgid "Collective" msgstr "Collettivo" -#: ../../htdocs/update_confirm.php:310 +#: ../../htdocs/update_confirm.php:304 msgid "Commit" msgstr "Invia" -#: ../../lib/EntryWriter1.php:761 ../../htdocs/compare_form.php:29 -#: ../../htdocs/compare_form.php:64 ../../htdocs/password_checker.php:33 +#: ../../htdocs/compare_form.php:29 ../../htdocs/compare_form.php:64 +#: ../../htdocs/password_checker.php:33 ../../lib/EntryWriter1.php:775 msgid "Compare" msgstr "Confronta" @@ -281,11 +285,11 @@ msgstr "Confronta un altro DN con" msgid "Compare this DN with another" msgstr "Confronta questo DN con un altro" -#: ../../lib/EntryWriter1.php:762 +#: ../../lib/EntryWriter1.php:776 msgid "Compare with another entry" msgstr "Confronta con un'altra voce" -#: ../../htdocs/compare.php:50 +#: ../../htdocs/compare.php:48 msgid "Comparing the following DNs" msgstr "Confronta i seguenti DN" @@ -293,7 +297,7 @@ msgstr "Confronta i seguenti DN" msgid "Compress" msgstr "Comprimi" -#: ../../lib/common.php:123 +#: ../../lib/session_functions.php:138 msgid "Configuration cache stale." msgstr "Cache di configurazione vecchia." @@ -326,7 +330,7 @@ msgstr "Copia " msgid "Copy Entry" msgstr "Copia Voce" -#: ../../lib/EntryWriter1.php:727 +#: ../../lib/EntryWriter1.php:741 msgid "Copy or move this entry" msgstr "Copia o sposta questa voce" @@ -334,7 +338,7 @@ msgstr "Copia o sposta questa voce" msgid "Copy successful!" msgstr "Copia eseguita!" -#: ../../lib/EntryWriter1.php:726 +#: ../../lib/EntryWriter1.php:740 msgid "Copy this object to another location,a new DN, or another server" msgstr "" "Copia questo oggetto in un'altra posizione, un nuovo DN od un altro server" @@ -351,15 +355,16 @@ msgstr "Impossibile aggiungere l'oggetto:" msgid "Could not add the object to the LDAP server." msgstr "Impossibile aggiungere l'oggetto al server LDAP." -#: ../../htdocs/login.php:135 +#: ../../htdocs/login.php:137 msgid "Could not bind anonymously to server." msgstr "Impossibile collegarsi anonimamente al server LDAP." -#: ../../lib/server_functions.php:366 -msgid "Could not bind to the LDAP server." -msgstr "Impossibile collegarsi al server LDAP." +#: ../../lib/server_functions.php:348 +#, php-format +msgid "Could not bind to the LDAP server (%s)." +msgstr "Impossibile collegarsi al server LDAP (%s)." -#: ../../lib/server_functions.php:363 +#: ../../lib/server_functions.php:345 #, php-format msgid "Could not connect to \"%s\" on port \"%s\"" msgstr "Impossibile collegarsi a \"%s\" sulla porta \"%s\"" @@ -386,12 +391,12 @@ msgstr "Impossibile determinare la DN di base." msgid "Could not determine the root of your LDAP tree." msgstr "Impossibile determinare la radice del tuo albero LDAP." -#: ../../lib/functions.php:1326 +#: ../../lib/functions.php:1836 #, php-format msgid "Could not fetch jpeg data from LDAP server for attribute %s." msgstr "Impossibile recuperare dati jpeg dal server LDAP per l'attributo %s." -#: ../../lib/timeout_functions.php:74 ../../htdocs/logout.php:24 +#: ../../htdocs/logout.php:24 ../../lib/timeout_functions.php:74 msgid "Could not logout." msgstr "Impossibile uscire." @@ -399,11 +404,11 @@ msgstr "Impossibile uscire." msgid "Could not modify object:" msgstr "Impossibile modificare l'oggetto:" -#: ../../htdocs/add_value.php:72 ../../htdocs/add_oclass.php:54 +#: ../../htdocs/add_oclass.php:54 ../../htdocs/add_value.php:72 msgid "Could not perform ldap_mod_add operation." msgstr "Impossibile eseguire l'operazione ldap_mod_add." -#: ../../htdocs/update.php:178 ../../htdocs/delete_attr.php:50 +#: ../../htdocs/delete_attr.php:50 ../../htdocs/update.php:178 msgid "Could not perform ldap_modify operation." msgstr "Impossibile eseguire l'operazione ldap_modify." @@ -411,7 +416,7 @@ msgstr "Impossibile eseguire l'operazione ldap_modify." msgid "Could not rename object:" msgstr "Impossibile rinominare l'oggetto:" -#: ../../lib/server_functions.php:1530 ../../htdocs/rename.php:61 +#: ../../htdocs/rename.php:61 ../../lib/server_functions.php:1522 msgid "Could not rename the entry" msgstr "Impossibile rinominare la voce" @@ -419,16 +424,16 @@ msgstr "Impossibile rinominare la voce" msgid "Could not retrieve schema from" msgstr "Impossibile recuperare lo schema per" -#: ../../htdocs/login.php:150 +#: ../../htdocs/login.php:152 msgid "Could not set cookie." msgstr "Impossibile impostare un cookie." -#: ../../lib/server_functions.php:281 +#: ../../lib/server_functions.php:263 msgid "Could not start TLS. Please check your LDAP server configuration." msgstr "" "Impossibile utilizzare TLS. Controlla la configurazione del server LDAP." -#: ../../lib/functions.php:1341 +#: ../../lib/functions.php:1851 #, php-format msgid "" "Could not write to the $jpeg_temp_dir directory %s. Please verify that your " @@ -437,7 +442,7 @@ msgstr "" "Impossibile scrivere sulla directory $jpeg_temp_dir %s. Controlla che il " "server web possa scrivere file qui." -#: ../../lib/EntryWriter1.php:769 +#: ../../lib/EntryWriter1.php:783 msgid "Create" msgstr "Crea" @@ -450,11 +455,11 @@ msgstr "Crea la Voce" msgid "Create Object" msgstr "Crea l'Oggetto" -#: ../../lib/EntryWriter1.php:769 +#: ../../lib/EntryWriter1.php:783 msgid "Create a child entry" msgstr "Crea una voce figlia" -#: ../../lib/HTMLTree.php:454 +#: ../../lib/HTMLTree.php:458 msgid "Create a new entry in" msgstr "Crea una nuova voce in" @@ -468,8 +473,8 @@ msgstr "Crearla?" #: ../../lib/AJAXTree.php:343 ../../lib/AJAXTree.php:344 #: ../../lib/AJAXTree.php:367 ../../lib/AJAXTree.php:368 -#: ../../lib/PLMTree.php:142 ../../lib/PLMTree.php:162 -#: ../../lib/HTMLTree.php:454 +#: ../../lib/HTMLTree.php:458 ../../lib/PLMTree.php:142 +#: ../../lib/PLMTree.php:162 msgid "Create new entry here" msgstr "Crea qui una nuova voce" @@ -477,7 +482,7 @@ msgstr "Crea qui una nuova voce" msgid "Creation successful!" msgstr "Creazione eseguita!" -#: ../../htdocs/welcome.php:27 +#: ../../htdocs/welcome.php:25 msgid "Credits" msgstr "Riconoscimenti" @@ -485,7 +490,7 @@ msgstr "Riconoscimenti" msgid "Current list of" msgstr "Lista corrente di" -#: ../../lib/EntryWriter1.php:725 +#: ../../lib/EntryWriter1.php:739 msgid "Cut" msgstr "Taglia" @@ -493,7 +498,7 @@ msgstr "Taglia" msgid "DN" msgstr "DN" -#: ../../lib/EntryWriter1.php:1847 +#: ../../lib/EntryWriter1.php:1874 msgid "DN not available" msgstr "DN non disponibile" @@ -502,7 +507,7 @@ msgstr "DN non disponibile" msgid "DSLM Export for: %s" msgstr "Esportazione DSLM per: %s" -#: ../../lib/EntryWriter1.php:1084 ../../lib/EntryWriter1.php:1294 +#: ../../lib/EntryWriter1.php:1098 ../../lib/EntryWriter1.php:1310 msgid "Default" msgstr "Predefinito" @@ -523,7 +528,7 @@ msgstr "Elimina le Voci Selezionate" msgid "Delete DN" msgstr "Elimina DN" -#: ../../lib/functions.php:1348 +#: ../../lib/functions.php:1858 msgid "Delete Photo" msgstr "Elimina Foto" @@ -536,11 +541,11 @@ msgstr "Elimina dopo la copia (sposta):" msgid "Delete all %s objects" msgstr "Elimina tutti gli oggetti %s" -#: ../../lib/functions.php:1383 +#: ../../lib/functions.php:1893 msgid "Delete photo" msgstr "Elimina foto" -#: ../../lib/EntryWriter1.php:749 +#: ../../lib/EntryWriter1.php:763 msgid "Delete this entry" msgstr "Elimina questa voce" @@ -562,19 +567,19 @@ msgstr "Eliminazione..." msgid "Deletion progress on server \"%s\"" msgstr "Eliminazione in corso sul server \"%s\"" -#: ../../lib/functions.php:1128 ../../lib/functions.php:1131 -#: ../../htdocs/ldif_import.php:110 ../../htdocs/ldif_import.php:120 -#: ../../htdocs/ldif_import.php:190 ../../htdocs/schema.php:69 -#: ../../htdocs/schema.php:96 ../../htdocs/schema.php:403 -#: ../../htdocs/add_value_form.php:230 +#: ../../htdocs/add_value_form.php:230 ../../htdocs/ldif_import.php:110 +#: ../../htdocs/ldif_import.php:120 ../../htdocs/ldif_import.php:190 +#: ../../htdocs/schema.php:69 ../../htdocs/schema.php:96 +#: ../../htdocs/schema.php:403 ../../lib/functions.php:1777 +#: ../../lib/functions.php:1780 msgid "Description" msgstr "Descrizione" -#: ../../htdocs/copy_form.php:64 ../../htdocs/compare_form.php:53 +#: ../../htdocs/compare_form.php:53 ../../htdocs/copy_form.php:64 msgid "Destination DN" msgstr "DN di destinazione" -#: ../../htdocs/copy_form.php:70 ../../htdocs/compare_form.php:61 +#: ../../htdocs/compare_form.php:61 ../../htdocs/copy_form.php:70 msgid "Destination Server" msgstr "Server di destinazione" @@ -586,12 +591,12 @@ msgstr "Il server di destinazione è al momento in SOLA-LETTURA" msgid "Display the new created entry" msgstr "Visualizza le nuove voci create" -#: ../../lib/EntryWriter1.php:511 ../../htdocs/compare.php:58 -#: ../../htdocs/compare.php:61 ../../htdocs/rename_form.php:29 -#: ../../htdocs/copy_form.php:47 ../../htdocs/compare_form.php:24 -#: ../../htdocs/add_value_form.php:100 ../../htdocs/add_attr_form.php:25 -#: ../../htdocs/modify_member_form.php:72 ../../htdocs/delete_form.php:29 -#: ../../htdocs/delete_form.php:107 +#: ../../htdocs/add_attr_form.php:25 ../../htdocs/add_value_form.php:100 +#: ../../htdocs/compare.php:56 ../../htdocs/compare.php:59 +#: ../../htdocs/compare_form.php:24 ../../htdocs/copy_form.php:47 +#: ../../htdocs/delete_form.php:29 ../../htdocs/delete_form.php:107 +#: ../../htdocs/modify_member_form.php:72 ../../htdocs/rename_form.php:29 +#: ../../lib/EntryWriter1.php:512 msgid "Distinguished Name" msgstr "Distinguished Name" @@ -604,7 +609,7 @@ msgstr "Si vuole veramente eliminare %s %s %s" msgid "Do you want to make these changes?" msgstr "Si vogliono effettuare le seguenti modifiche?" -#: ../../htdocs/welcome.php:32 +#: ../../htdocs/welcome.php:30 msgid "Documentation" msgstr "Documentazione" @@ -612,11 +617,11 @@ msgstr "Documentazione" msgid "Don't stop on errors" msgstr "Non interrompere in caso di errori" -#: ../../lib/page.php:146 ../../htdocs/welcome.php:37 +#: ../../htdocs/welcome.php:35 ../../lib/functions.php:371 msgid "Donate" msgstr "Dona" -#: ../../lib/export_functions.php:252 ../../htdocs/search.php:250 +#: ../../htdocs/search.php:250 ../../lib/export_functions.php:252 msgid "Encountered an error while performing search." msgstr "Si è verificato un errore nell'esecuzione della ricerca." @@ -649,8 +654,7 @@ msgstr "Voce creata" msgid "Equality" msgstr "Uguaglianza" -#: ../../lib/functions.php:1072 ../../lib/functions.php:1107 -#: ../../lib/functions.php:1241 +#: ../../lib/functions.php:132 ../../lib/functions.php:520 msgid "Error" msgstr "Errore" @@ -663,12 +667,12 @@ msgstr "" msgid "Error code" msgstr "Codice d'errore" -#: ../../lib/functions.php:1127 ../../lib/functions.php:1130 -#: ../../lib/functions.php:1137 +#: ../../lib/functions.php:1776 ../../lib/functions.php:1779 +#: ../../lib/functions.php:1785 msgid "Error number" msgstr "Numero d'errore" -#: ../../lib/server_functions.php:113 +#: ../../lib/server_functions.php:95 #, php-format msgid "" "Error: You have an error in your config file. The only three allowed values " @@ -679,8 +683,8 @@ msgstr "" "per il parametro auth_type nella sezione $servers sono 'session', 'cookie' e " "'config'. Il valore inserito '%s' non è permesso." -#: ../../lib/EntryWriter1.php:719 ../../htdocs/export_form.php:36 -#: ../../htdocs/export_form.php:46 +#: ../../htdocs/export_form.php:36 ../../htdocs/export_form.php:46 +#: ../../lib/EntryWriter1.php:733 msgid "Export" msgstr "Esporta" @@ -692,7 +696,7 @@ msgstr "Esporta le voci" msgid "Export format" msgstr "Formato d'esportazione" -#: ../../lib/EntryWriter1.php:790 +#: ../../lib/EntryWriter1.php:804 msgid "Export subtree" msgstr "Esporta sottoalbero" @@ -715,8 +719,8 @@ msgstr "Impossibile copiare: " msgid "Failed to delete entry %s" msgstr "Impossibile eliminare la voce %s" -#: ../../lib/functions.php:1158 ../../lib/functions.php:1243 -#: ../../htdocs/ldif_import.php:54 +#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:134 +#: ../../lib/functions.php:537 msgid "File" msgstr "File" @@ -732,7 +736,7 @@ msgstr "Filtro eseguito" msgid "Format" msgstr "Formato" -#: ../../lib/functions.php:1159 +#: ../../lib/functions.php:540 msgid "Function" msgstr "Funzione" @@ -743,7 +747,7 @@ msgid "" msgstr "" "Generato da phpLDAPadmin ( http://phpldapadmin.sourceforge.net/ ) su %s" -#: ../../lib/functions.php:3107 +#: ../../lib/functions.php:63 ../../lib/functions.php:594 msgid "Generic Error" msgstr "Errore Generico" @@ -752,15 +756,15 @@ msgstr "Errore Generico" msgid "Go" msgstr "Vai" -#: ../../htdocs/update_confirm.php:350 +#: ../../htdocs/update_confirm.php:339 msgid "Go back" msgstr "Torna indietro" -#: ../../lib/EntryWriter1.php:1843 +#: ../../lib/EntryWriter1.php:1870 msgid "Go to" msgstr "Vai a" -#: ../../htdocs/compare.php:451 +#: ../../htdocs/compare.php:449 #, php-format msgid "Go to %s" msgstr "Vai a %s" @@ -769,15 +773,15 @@ msgstr "Vai a %s" msgid "Group members" msgstr "Membri del gruppo" -#: ../../lib/page.php:158 +#: ../../lib/functions.php:375 msgid "Help" msgstr "Aiuto" -#: ../../lib/EntryWriter1.php:734 +#: ../../lib/EntryWriter1.php:748 msgid "Hide" msgstr "Nascondi" -#: ../../lib/EntryWriter1.php:735 +#: ../../lib/EntryWriter1.php:749 msgid "Hide internal attributes" msgstr "Nascondi gli attributi interni" @@ -793,12 +797,12 @@ msgstr "" "Consiglio: la copia tra server differenti funziona solo se non ci sono " "violazioni di schema" -#: ../../lib/EntryWriter1.php:795 +#: ../../lib/EntryWriter1.php:809 msgid "Hint: To delete an attribute, empty the text field and click save." msgstr "" "Consiglio: per cancellare un attributo, svuota il campo testo e clicca salva." -#: ../../lib/EntryWriter1.php:801 +#: ../../lib/EntryWriter1.php:815 msgid "Hint: To view the schema for an attribute, click the attribute name." msgstr "" "Consiglio: per visualizzare lo schema per un attributo, clicca il nome " @@ -812,7 +816,7 @@ msgstr "" "E' necessario scegliere esattamente un objectClass stutturale (mostrato " "sopra in grassetto)" -#: ../../lib/page.php:122 +#: ../../lib/functions.php:363 msgid "Home" msgstr "Inizio" @@ -862,7 +866,7 @@ msgstr "Eredita da" msgid "Instructions" msgstr "Istruzioni" -#: ../../lib/server_functions.php:360 +#: ../../lib/server_functions.php:342 msgid "Insufficient access rights." msgstr "Permessi di accesso insufficienti." @@ -885,7 +889,7 @@ msgstr "" "Sembra che il server LDAP sia stato configurato per non rivelare la sua " "radice." -#: ../../lib/server_functions.php:328 +#: ../../lib/server_functions.php:310 #, php-format msgid "" "It seems that sasl_authz_id_regex \"%s\".\" contains invalid PCRE regular " @@ -910,7 +914,7 @@ msgstr "Vai alla objectClass" msgid "Jump to this objectClass definition" msgstr "Vai a questa definizione di objectClass" -#: ../../lib/functions.php:1120 ../../htdocs/ldif_import.php:144 +#: ../../htdocs/ldif_import.php:144 ../../lib/functions.php:1767 msgid "LDAP said" msgstr "LDAP dice" @@ -947,19 +951,15 @@ msgstr "Lista di voci da eliminare:" msgid "Logged in as" msgstr "Autenticato come" -#: ../../lib/HTMLTree.php:468 ../../htdocs/update.php:158 +#: ../../htdocs/update.php:158 ../../lib/HTMLTree.php:472 msgid "Login" msgstr "Autenticati" -#: ../../htdocs/login_form.php:45 +#: ../../htdocs/login_form.php:46 msgid "Login DN" msgstr "DN d'accesso" -#: ../../htdocs/login_form.php:45 -msgid "Login Name" -msgstr "Nome d'accesso" - -#: ../../htdocs/timeout.php:35 +#: ../../htdocs/timeout.php:37 msgid "Login..." msgstr "Accesso..." @@ -975,7 +975,7 @@ msgstr "Esci da questo Server" msgid "Looking in" msgstr "Ricerca in" -#: ../../lib/EntryWriter1.php:1852 +#: ../../lib/EntryWriter1.php:1879 msgid "Mail" msgstr "Posta" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Matching Rule OID" msgstr "Regola Corrispondente OID" -#: ../../htdocs/schema.php:107 ../../htdocs/add_value_form.php:237 +#: ../../htdocs/add_value_form.php:237 ../../htdocs/schema.php:107 msgid "Maximum Length" msgstr "Massima Lunghezza" @@ -1011,11 +1011,11 @@ msgstr "Massima Lunghezza" msgid "Maximum file size" msgstr "Massima dimensione del file" -#: ../../lib/functions.php:3278 +#: ../../lib/functions.php:345 msgid "Memory Limit low." msgstr "Limite di Memoria basso." -#: ../../lib/template_functions.php:411 +#: ../../lib/template_functions.php:419 #, php-format msgid "Missing %s in the XML file." msgstr "%s mancante nel file XML." @@ -1028,8 +1028,12 @@ msgstr "Attributi o attributo changetype mancante per la voce" msgid "Missing attributes for the entry" msgstr "Attributo mancante per la voce" -#: ../../lib/functions.php:3168 ../../lib/functions.php:3175 -#: ../../lib/functions.php:3182 ../../lib/functions.php:3259 +#: ../../lib/functions.php:327 +msgid "Missing required configuration" +msgstr "Configurazione richiesta mancante" + +#: ../../lib/functions.php:232 ../../lib/functions.php:239 +#: ../../lib/functions.php:246 msgid "Missing required extension" msgstr "Estensione richiesta mancante" @@ -1045,7 +1049,7 @@ msgstr "Modifica eseguita!" msgid "Modify group" msgstr "Modifica gruppo" -#: ../../lib/EntryWriter1.php:1821 +#: ../../lib/EntryWriter1.php:1848 #, php-format msgid "Modify members for '%s'" msgstr "Modifica i membri per '%s'" @@ -1079,7 +1083,11 @@ msgstr "DN non specificato" msgid "No LDIF file specified. Please try again." msgstr "File LDIF non specificato. Riprovare." -#: ../../htdocs/compare.php:206 ../../htdocs/compare.php:219 +#: ../../lib/Entry.php:271 +msgid "No Template" +msgstr "Nessun modello" + +#: ../../htdocs/compare.php:204 ../../htdocs/compare.php:217 msgid "No Value" msgstr "Valore assente" @@ -1099,7 +1107,7 @@ msgstr "Nessuna cache da svuotare." msgid "No current value for attribute" msgstr "Nessun valore corrente per l'attributo" -#: ../../lib/EntryWriter1.php:826 ../../lib/EntryWriter2.php:104 +#: ../../lib/EntryWriter1.php:840 ../../lib/EntryWriter2.php:104 msgid "No internal attributes" msgstr "Nessun attributo interno" @@ -1111,9 +1119,9 @@ msgstr "Nessuno è autenticato su quel server." msgid "No queries have been defined in config.php." msgstr "Nessuna interrogazione definita in config.php" -#: ../../htdocs/delete.php:29 ../../htdocs/compare.php:32 -#: ../../htdocs/compare.php:34 ../../htdocs/template_engine.php:25 -#: ../../htdocs/download_binary_attr.php:26 ../../htdocs/rdelete.php:28 +#: ../../htdocs/compare.php:32 ../../htdocs/compare.php:34 +#: ../../htdocs/delete.php:29 ../../htdocs/download_binary_attr.php:26 +#: ../../htdocs/rdelete.php:28 ../../htdocs/template_engine.php:25 #, php-format msgid "No such entry: %s" msgstr "Voce non trovata: %s" @@ -1132,19 +1140,18 @@ msgid "No version found. Assuming 1." msgstr "Nessuna versione trovata. Si ipotizza 1." #: ../../htdocs/compare.php:25 ../../htdocs/compare.php:29 -#: ../../htdocs/rename_form.php:22 ../../htdocs/copy.php:32 +#: ../../htdocs/copy.php:32 ../../htdocs/download_binary_attr.php:17 #: ../../htdocs/entry_chooser.php:41 ../../htdocs/modify_member_form.php:23 -#: ../../htdocs/download_binary_attr.php:17 +#: ../../htdocs/rename_form.php:22 msgid "" "Not enough information to login to server. Please check your configuration." msgstr "" "Informazioni insufficienti per autenticarsi al server. Si controlli la " "configurazione." -#: ../../lib/EntryWriter1.php:1886 ../../htdocs/compare.php:123 -#, php-format -msgid "Note: '%s' is an alias for '%s'" -msgstr "Nota: '%s' è un alias per '%s'" +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1913 +msgid "Note" +msgstr "Nota" #: ../../htdocs/add_value_form.php:202 msgid "" @@ -1183,7 +1190,7 @@ msgstr "" "Gli ObjectClass sono etichettati in sola lettura nella configurazione di " "phpLDAPadmin." -#: ../../lib/template_functions.php:265 +#: ../../lib/template_functions.php:273 msgid "ObjectClasses in XML dont exist in LDAP server." msgstr "Gli ObjectClass in XML non esistono nel server LDAP." @@ -1195,12 +1202,12 @@ msgstr "Obsoleto" msgid "Old Value" msgstr "Vecchio Valore" -#: ../../lib/search_form_advanced.php:86 ../../htdocs/export_form.php:32 +#: ../../htdocs/export_form.php:32 ../../lib/search_form_advanced.php:86 msgid "One (one level beneath base)" msgstr "Uno (un livello sotto la base)" -#: ../../lib/EntryWriter1.php:407 ../../lib/EntryWriter1.php:417 -#: ../../htdocs/schema.php:445 +#: ../../htdocs/schema.php:445 ../../lib/EntryWriter1.php:407 +#: ../../lib/EntryWriter1.php:417 msgid "Optional Attributes" msgstr "Attributi Opzionali" @@ -1225,7 +1232,7 @@ msgstr "Pagina %d" msgid "Parent to" msgstr "Padre di" -#: ../../htdocs/login_form.php:52 +#: ../../htdocs/login_form.php:53 msgid "Password" msgstr "Password" @@ -1249,11 +1256,11 @@ msgstr "Incolla il file LDIF qui" msgid "Permanently delete all children also?" msgstr "Eliminare permanentemente anche tutti i figli?" -#: ../../lib/functions.php:1250 +#: ../../lib/functions.php:142 msgid "Please check and see if this bug has been reported" msgstr "Controlla e verifica se questo baco è stato segnalato" -#: ../../lib/functions.php:1332 +#: ../../lib/functions.php:1842 msgid "" "Please set $jpeg_temp_dir to a writable directory in the phpLDAPadmin config." "php" @@ -1265,8 +1272,8 @@ msgstr "" msgid "Please specify it in config.php" msgstr "Specificarlo nel config.php" -#: ../../lib/search_form_simple.php:42 ../../lib/search_form_predefined.php:22 #: ../../lib/search_form_advanced.php:51 +#: ../../lib/search_form_predefined.php:22 ../../lib/search_form_simple.php:42 msgid "Predefined Searches" msgstr "Ricerche Predefinite" @@ -1279,7 +1286,7 @@ msgstr "Continuare >>" msgid "Proceed >>" msgstr "Continuare >>" -#: ../../lib/page.php:128 +#: ../../lib/functions.php:365 msgid "Purge all cached data in phpLDAPadmin, including server schemas." msgstr "" "Svuota tutti i dati nella cache di phpLDAPadmin, inclusi gli schemi del " @@ -1289,7 +1296,7 @@ msgstr "" msgid "Purge cache" msgstr "Svuota la cache" -#: ../../lib/page.php:128 +#: ../../lib/functions.php:365 msgid "Purge caches" msgstr "Svuota le cache" @@ -1298,7 +1305,7 @@ msgstr "Svuota le cache" msgid "Purged %s bytes of cache." msgstr "Svuotati %s byte dalla cache." -#: ../../lib/EntryWriter1.php:2039 ../../htdocs/compare.php:566 +#: ../../htdocs/compare.php:564 ../../lib/EntryWriter1.php:2066 msgid "Really delete attribute" msgstr "Cancella definitivamente il valore" @@ -1318,7 +1325,7 @@ msgstr "Eliminazione ricorsiva in corso" msgid "Recursively copy all children of this object as well." msgstr "Copia ricorsivamente anche tutti i figli di questo oggetto." -#: ../../lib/EntryWriter1.php:711 ../../lib/EntryWriter1.php:712 +#: ../../lib/EntryWriter1.php:725 ../../lib/EntryWriter1.php:726 msgid "Refresh" msgstr "Aggiorna" @@ -1326,7 +1333,7 @@ msgstr "Aggiorna" msgid "Refresh all expanded containers for" msgstr "Aggiorna tutti i contenitori aperti per" -#: ../../lib/EntryWriter1.php:712 +#: ../../lib/EntryWriter1.php:726 msgid "Refresh this entry" msgstr "Aggiorna questa voce" @@ -1334,11 +1341,11 @@ msgstr "Aggiorna questa voce" msgid "Remove selected" msgstr "Rimuovi selezionati" -#: ../../lib/EntryWriter1.php:755 ../../htdocs/rename_form.php:35 +#: ../../htdocs/rename_form.php:35 ../../lib/EntryWriter1.php:769 msgid "Rename" msgstr "Rinomina" -#: ../../htdocs/rename_form.php:27 ../../htdocs/rename.php:71 +#: ../../htdocs/rename.php:71 ../../htdocs/rename_form.php:27 msgid "Rename Entry" msgstr "Rinomina la Voce" @@ -1350,20 +1357,20 @@ msgstr "Rinominazione eseguita!" msgid "Renaming..." msgstr "Rinominazione..." -#: ../../lib/page.php:140 +#: ../../lib/functions.php:369 msgid "Report a bug" msgstr "Riporta un baco" -#: ../../lib/page.php:134 +#: ../../lib/functions.php:367 msgid "Request feature" msgstr "Richiedi una nuova funzionalità" -#: ../../lib/EntryWriter1.php:397 ../../lib/EntryWriter1.php:404 -#: ../../htdocs/schema.php:445 +#: ../../htdocs/schema.php:445 ../../lib/EntryWriter1.php:397 +#: ../../lib/EntryWriter1.php:404 msgid "Required Attributes" msgstr "Attributi Richiesti" -#: ../../lib/EntryWriter1.php:1922 ../../htdocs/compare.php:171 +#: ../../htdocs/compare.php:169 ../../lib/EntryWriter1.php:1949 #, php-format msgid "Required attribute for objectClass(es) %s" msgstr "Attributi richiesti per l'objectClass %s" @@ -1372,20 +1379,20 @@ msgstr "Attributi richiesti per l'objectClass %s" msgid "Retrieving DN" msgstr "Recupero DN" -#: ../../lib/EntryWriter1.php:718 ../../lib/EntryWriter1.php:789 +#: ../../lib/EntryWriter1.php:732 ../../lib/EntryWriter1.php:803 msgid "Save" msgstr "Salva" -#: ../../lib/EntryWriter1.php:847 ../../lib/EntryWriter2.php:117 -#: ../../htdocs/compare.php:554 +#: ../../htdocs/compare.php:552 ../../lib/EntryWriter1.php:861 +#: ../../lib/EntryWriter2.php:117 msgid "Save Changes" msgstr "Salva i Cambiamenti" -#: ../../lib/EntryWriter1.php:719 +#: ../../lib/EntryWriter1.php:733 msgid "Save a dump of this object" msgstr "Salva un'immagine di questo oggetto" -#: ../../lib/EntryWriter1.php:790 +#: ../../lib/EntryWriter1.php:804 msgid "Save a dump of this object and all of its children" msgstr "Salva un'immagine di questo oggetto e tutti i suoi figli" @@ -1401,18 +1408,18 @@ msgstr "Salva i cambiamenti" msgid "Schema for server" msgstr "Schema per il server" -#: ../../lib/search_form_simple.php:74 ../../lib/search_form_predefined.php:63 -#: ../../lib/search_form_advanced.php:115 ../../htdocs/search.php:148 +#: ../../htdocs/search.php:148 ../../lib/search_form_advanced.php:115 +#: ../../lib/search_form_predefined.php:63 ../../lib/search_form_simple.php:74 msgid "Search" msgstr "Cerca" -#: ../../lib/export_functions.php:198 ../../lib/search_form_advanced.php:97 -#: ../../htdocs/export_form.php:72 +#: ../../htdocs/export_form.php:72 ../../lib/export_functions.php:198 +#: ../../lib/search_form_advanced.php:97 msgid "Search Filter" msgstr "Filtro di Ricerca" -#: ../../lib/export_functions.php:197 ../../lib/search_form_advanced.php:79 -#: ../../htdocs/export_form.php:59 +#: ../../htdocs/export_form.php:59 ../../lib/export_functions.php:197 +#: ../../lib/search_form_advanced.php:79 msgid "Search Scope" msgstr "Campo di Ricerca" @@ -1437,11 +1444,11 @@ msgstr "Errore di sicurezza: if file da caricare potrebbe essere pericoloso." msgid "Select a predefined search" msgstr "Seleziona una ricerca predefinita" -#: ../../lib/EntryWriter1.php:1007 +#: ../../lib/EntryWriter1.php:1021 msgid "Select a template for the creation process" msgstr "Seleziona un modello per il processo di creazione" -#: ../../lib/EntryWriter1.php:1233 +#: ../../lib/EntryWriter1.php:1249 msgid "Select a template to edit the entry" msgstr "Seleziona un modello per modificare la voce" @@ -1449,21 +1456,21 @@ msgstr "Seleziona un modello per modificare la voce" msgid "Select an LDIF file" msgstr "Seleziona un file LDIF" -#: ../../lib/EntryWriter1.php:247 ../../lib/EntryWriter1.php:506 -#: ../../lib/EntryWriter1.php:1019 ../../lib/search_form_simple.php:50 -#: ../../lib/export_functions.php:196 ../../lib/search_form_advanced.php:60 -#: ../../lib/HTMLTree.php:151 ../../htdocs/compare.php:58 -#: ../../htdocs/compare.php:61 ../../htdocs/rename_form.php:29 -#: ../../htdocs/export_form.php:49 ../../htdocs/ldif_import.php:53 -#: ../../htdocs/copy_form.php:46 ../../htdocs/compare_form.php:22 -#: ../../htdocs/add_value_form.php:100 ../../htdocs/entry_chooser.php:32 -#: ../../htdocs/entry_chooser.php:98 ../../htdocs/add_attr_form.php:25 -#: ../../htdocs/modify_member_form.php:72 ../../htdocs/ldif_import_form.php:22 +#: ../../htdocs/add_attr_form.php:25 ../../htdocs/add_value_form.php:100 +#: ../../htdocs/compare.php:56 ../../htdocs/compare.php:59 +#: ../../htdocs/compare_form.php:22 ../../htdocs/copy_form.php:46 #: ../../htdocs/delete_form.php:29 ../../htdocs/delete_form.php:105 +#: ../../htdocs/entry_chooser.php:32 ../../htdocs/entry_chooser.php:98 +#: ../../htdocs/export_form.php:49 ../../htdocs/ldif_import.php:53 +#: ../../htdocs/ldif_import_form.php:22 ../../htdocs/modify_member_form.php:72 +#: ../../htdocs/rename_form.php:29 ../../lib/EntryWriter1.php:247 +#: ../../lib/EntryWriter1.php:506 ../../lib/EntryWriter1.php:1033 +#: ../../lib/HTMLTree.php:151 ../../lib/export_functions.php:196 +#: ../../lib/search_form_advanced.php:60 ../../lib/search_form_simple.php:50 msgid "Server" msgstr "Server" -#: ../../lib/page.php:184 +#: ../../lib/page.php:200 msgid "Server Select" msgstr "Selezione Server" @@ -1475,19 +1482,19 @@ msgstr "Informazioni sul server per: " msgid "Server reports the following information about itself" msgstr "Il server dichiara le seguenti informazioni su di sè" -#: ../../lib/EntryWriter1.php:740 +#: ../../lib/EntryWriter1.php:754 msgid "Show" msgstr "Mostra" -#: ../../lib/search_form_advanced.php:103 ../../htdocs/export_form.php:75 +#: ../../htdocs/export_form.php:75 ../../lib/search_form_advanced.php:103 msgid "Show Attributtes" msgstr "Mostra gli Attributi" -#: ../../lib/page.php:152 +#: ../../lib/functions.php:373 msgid "Show Cache" msgstr "Mostra la Cache" -#: ../../lib/EntryWriter1.php:741 +#: ../../lib/EntryWriter1.php:755 msgid "Show internal attributes" msgstr "Mostra gli attributi interni" @@ -1496,8 +1503,8 @@ msgstr "Mostra gli attributi interni" msgid "Showing results %s through %s." msgstr "Mostra i risultati da %s a %s" -#: ../../lib/search_form_simple.php:23 ../../lib/search_form_predefined.php:29 #: ../../lib/search_form_advanced.php:43 +#: ../../lib/search_form_predefined.php:29 ../../lib/search_form_simple.php:23 msgid "Simple Search Form" msgstr "Modulo di Ricerca Semplice" @@ -1516,12 +1523,12 @@ msgstr "Valore Singolo" msgid "Skip" msgstr "Salta" -#: ../../lib/EntryWriter1.php:812 +#: ../../lib/EntryWriter1.php:826 #, php-format msgid "Some attributes (%s) were modified and are highlighted below." msgstr "Alcuni attributi (%s) sono stati modificati e sono evidenziati sotto." -#: ../../htdocs/login.php:115 +#: ../../htdocs/login.php:117 msgid "Sorry, you are not allowed to use phpLDAPadmin with this LDAP server." msgstr "" "Mi spiace, non ti è permesso usare phpLDAPadmin con questo server LDAP." @@ -1544,7 +1551,7 @@ msgstr "" msgid "Step %s of %s" msgstr "Passo %s di %s" -#: ../../lib/search_form_advanced.php:83 ../../htdocs/export_form.php:33 +#: ../../htdocs/export_form.php:33 ../../lib/search_form_advanced.php:83 msgid "Sub (entire subtree)" msgstr "Sub (intero sottoalbero)" @@ -1552,8 +1559,8 @@ msgstr "Sub (intero sottoalbero)" msgid "Substring Rule" msgstr "Regola di Substring" -#: ../../htdocs/ldif_import.php:114 ../../htdocs/ldif_import.php:136 -#: ../../htdocs/copy.php:64 ../../htdocs/mass_delete.php:69 +#: ../../htdocs/copy.php:64 ../../htdocs/ldif_import.php:114 +#: ../../htdocs/ldif_import.php:136 ../../htdocs/mass_delete.php:69 #: ../../htdocs/rdelete.php:59 ../../htdocs/rdelete.php:76 msgid "Success" msgstr "Successo" @@ -1562,15 +1569,15 @@ msgstr "Successo" msgid "Successfully deleted DN " msgstr "Correttamente eliminata DN " -#: ../../htdocs/login.php:162 +#: ../../htdocs/login.php:164 msgid "Successfully logged into server." msgstr "Autenticazione al server eseguita." -#: ../../htdocs/compare.php:72 +#: ../../htdocs/compare.php:70 msgid "Switch Entry" msgstr "Scambia Voce" -#: ../../htdocs/schema.php:102 ../../htdocs/add_value_form.php:233 +#: ../../htdocs/add_value_form.php:233 ../../htdocs/schema.php:102 msgid "Syntax" msgstr "Sintassi" @@ -1578,7 +1585,11 @@ msgstr "Sintassi" msgid "Syntax OID" msgstr "Sintassi OID" -#: ../../lib/EntryWriter1.php:1022 ../../lib/EntryWriter1.php:1244 +#: ../../lib/EntryWriter1.php:519 +msgid "Template" +msgstr "Modello" + +#: ../../lib/EntryWriter1.php:1036 ../../lib/EntryWriter1.php:1260 msgid "Templates" msgstr "Modelli" @@ -1587,8 +1598,8 @@ msgstr "Modelli" msgid "The Rdn attribute (%s) does not exist." msgstr "L'attributo Rdn (%s) non esiste." -#: ../../htdocs/add_value.php:37 ../../htdocs/update.php:103 -#: ../../htdocs/delete_attr.php:34 +#: ../../htdocs/add_value.php:37 ../../htdocs/delete_attr.php:34 +#: ../../htdocs/update.php:103 #, php-format msgid "" "The attribute \"%s\" is flagged as read-only in the phpLDAPadmin " @@ -1634,7 +1645,7 @@ msgstr "Il contenitore specificato (%s) non esiste." msgid "The container you specified (%s) does not exist. Please try again." msgstr "Il contenitore specificato (%s) non esiste. Riprovare." -#: ../../htdocs/update_confirm.php:321 +#: ../../htdocs/update_confirm.php:315 msgid "The deletion of objectClass(es)" msgstr "L'eliminazione di objectClass" @@ -1713,7 +1724,7 @@ msgstr "Il valore dell'attributo url dovrebbe cominciare con file:///" msgid "There are" msgstr "Ci sono" -#: ../../lib/functions.php:535 +#: ../../lib/functions.php:1262 msgid "There is more than one dn for uidpool,please change filter parameter" msgstr "C'è più di un dn per uidpool, si cambino i parametri del filtro" @@ -1721,8 +1732,8 @@ msgstr "C'è più di un dn per uidpool, si cambino i parametri del filtro" msgid "This action requires you to add" msgstr "Questa azione richiede che tu aggiunga" -#: ../../lib/EntryWriter1.php:1499 ../../lib/EntryWriter2.php:210 -#: ../../htdocs/compare.php:181 +#: ../../htdocs/compare.php:179 ../../lib/EntryWriter1.php:1514 +#: ../../lib/EntryWriter2.php:210 msgid "" "This attribute has been flagged as read only by the phpLDAPadmin " "administrator" @@ -1730,11 +1741,11 @@ msgstr "" "Questo attributo è stato etichettato in sola lettura dall'amministratore di " "phpLDAPadmin." -#: ../../lib/EntryWriter1.php:1413 +#: ../../lib/EntryWriter1.php:1429 msgid "This attribute is required" msgstr "Questo attributo è richiesto" -#: ../../lib/EntryWriter1.php:1931 +#: ../../lib/EntryWriter1.php:1958 msgid "This attribute is required for the RDN." msgstr "Questo attributo è richiesto per l'RDN." @@ -1750,7 +1761,7 @@ msgstr "Questo potrebbe accadere per vari motivi, i cui più probabili sono:" msgid "This entry does not exist." msgstr "Questa voce non esiste." -#: ../../htdocs/compare.php:79 +#: ../../htdocs/compare.php:77 msgid "This entry has no attributes" msgstr "Questa voce non ha attributi." @@ -1759,7 +1770,7 @@ msgstr "Questa voce non ha attributi." msgid "This entry is the root of a sub-tree containing %s entries." msgstr "Questa voce è la radice di un sotto albero contenente %s voci." -#: ../../lib/EntryWriter1.php:2269 ../../htdocs/compare.php:438 +#: ../../htdocs/compare.php:436 ../../lib/EntryWriter1.php:2296 #, php-format msgid "This is a structural ObjectClass and cannot be removed." msgstr "Questo è un ObjectClass strutturale e non può essere rimosso." @@ -1772,18 +1783,18 @@ msgstr "Questo non è un RDN valido." msgid "This objectClass is obsolete." msgstr "Questa objectClass è obsoleta." -#: ../../htdocs/delete.php:21 ../../htdocs/add_value.php:24 -#: ../../htdocs/rename.php:24 ../../htdocs/refresh.php:17 -#: ../../htdocs/update.php:61 ../../htdocs/update.php:67 -#: ../../htdocs/update.php:80 ../../htdocs/server_info.php:16 -#: ../../htdocs/ldif_import.php:19 ../../htdocs/create.php:25 -#: ../../htdocs/delete_attr.php:21 ../../htdocs/purge_cache.php:13 -#: ../../htdocs/add_attr.php:25 ../../htdocs/copy.php:20 -#: ../../htdocs/schema.php:20 ../../htdocs/mass_delete.php:26 +#: ../../htdocs/add_attr.php:25 ../../htdocs/add_value.php:24 #: ../../htdocs/add_value_form.php:76 ../../htdocs/add_value_form.php:78 +#: ../../htdocs/copy.php:20 ../../htdocs/create.php:25 +#: ../../htdocs/delete.php:21 ../../htdocs/delete_attr.php:21 +#: ../../htdocs/export.php:18 ../../htdocs/ldif_import.php:19 +#: ../../htdocs/mass_delete.php:26 ../../htdocs/purge_cache.php:13 +#: ../../htdocs/rdelete.php:21 ../../htdocs/refresh.php:17 +#: ../../htdocs/rename.php:24 ../../htdocs/schema.php:20 #: ../../htdocs/search.php:120 ../../htdocs/search.php:124 -#: ../../htdocs/search.php:128 ../../htdocs/rdelete.php:21 -#: ../../htdocs/export.php:18 +#: ../../htdocs/search.php:128 ../../htdocs/server_info.php:16 +#: ../../htdocs/update.php:61 ../../htdocs/update.php:67 +#: ../../htdocs/update.php:80 msgid "This operation is not permitted by the configuration" msgstr "Questa operazione non è consentita dalla configurazione" @@ -1791,7 +1802,7 @@ msgstr "Questa operazione non è consentita dalla configurazione" msgid "This server has nothing to report." msgstr "Questo server non ha niente da dichiarare." -#: ../../lib/EntryWriter1.php:1060 +#: ../../lib/EntryWriter1.php:1074 msgid "This template is not allowed in this container." msgstr "Questo modello non è permesso in questo contenitore." @@ -1803,7 +1814,7 @@ msgstr "Questa connessione web non è crittografata" msgid "To" msgstr "A" -#: ../../htdocs/timeout.php:34 +#: ../../htdocs/timeout.php:36 msgid "To log back in please click on the following link:" msgstr "Per riaccedere cliccare sul seguente link:" @@ -1811,7 +1822,7 @@ msgstr "Per riaccedere cliccare sul seguente link:" msgid "Total Entries" msgstr "Voci Totali" -#: ../../lib/EntryWriter1.php:748 +#: ../../lib/EntryWriter1.php:762 msgid "Trash" msgstr "Cestino" @@ -1819,15 +1830,15 @@ msgstr "Cestino" msgid "Type" msgstr "Tipo" -#: ../../lib/EntryWriter1.php:1859 +#: ../../lib/EntryWriter1.php:1886 msgid "URL" msgstr "URL" -#: ../../lib/functions.php:532 +#: ../../lib/functions.php:1259 msgid "Uidpool dn not found, please change filter parameter" msgstr "dn uidpool non trovato, si cambino i parametri del filtro" -#: ../../lib/functions.php:453 ../../lib/functions.php:517 +#: ../../lib/functions.php:1180 ../../lib/functions.php:1244 #, php-format msgid "" "Unable to bind to %s with your with auto_uid credentials. Please " @@ -1836,7 +1847,7 @@ msgstr "" "Impossibile fare il bind su %s con le credenziali auto_uid. Si " "controlli il file di configurazione." -#: ../../lib/server_functions.php:2766 +#: ../../lib/server_functions.php:2734 #, php-format msgid "" "Unable to bind to %s with your with unique_attrs credentials. Please " @@ -1857,9 +1868,9 @@ msgstr "Impossibile aprire il file" msgid "Unable to read file" msgstr "Impossibile apire il file" -#: ../../lib/server_functions.php:1981 ../../lib/server_functions.php:2053 -#: ../../lib/server_functions.php:2347 ../../lib/server_functions.php:2463 #: ../../htdocs/login_form.php:17 ../../htdocs/logout.php:30 +#: ../../lib/server_functions.php:1973 ../../lib/server_functions.php:2045 +#: ../../lib/server_functions.php:2339 ../../lib/server_functions.php:2450 #, php-format msgid "Unknown auth_type: %s" msgstr "auth_type sconosciuto: %s" @@ -1868,7 +1879,7 @@ msgstr "auth_type sconosciuto: %s" msgid "Unrecognized criteria option: " msgstr "Opzione del criterio non riconosciuta: " -#: ../../lib/functions.php:1234 +#: ../../lib/functions.php:124 msgid "Unrecognized error number" msgstr "Numero d'errore non riconosciuto" @@ -1889,7 +1900,7 @@ msgstr "Il file LDIF caricato è vuoto." msgid "Usage" msgstr "Utilizzo" -#: ../../htdocs/welcome.php:20 +#: ../../htdocs/welcome.php:18 msgid "Use the menu to the left to navigate" msgstr "Usa il menù sulla sinistra per spostarti" @@ -1905,12 +1916,12 @@ msgstr "Usato da objectClass" msgid "User Modification" msgstr "Modifica Utente" -#: ../../lib/EntryWriter1.php:783 +#: ../../lib/EntryWriter1.php:797 #, php-format msgid "View %s children" msgstr "Visualizza %s come figlio" -#: ../../lib/EntryWriter1.php:783 +#: ../../lib/EntryWriter1.php:797 msgid "View 1 child" msgstr "Visualizza 1 figlio" @@ -1922,15 +1933,25 @@ msgstr "Visualizza lo schema per" msgid "View server-supplied information" msgstr "Visualizza le informazioni fornite dal server" -#: ../../lib/EntryWriter1.php:2281 ../../htdocs/compare.php:433 +#: ../../htdocs/compare.php:431 ../../lib/EntryWriter1.php:2308 msgid "View the schema description for this objectClass" msgstr "Visualizza la descrizione dello schema per questa objectClass" -#: ../../lib/EntryWriter1.php:805 +#: ../../lib/EntryWriter1.php:819 msgid "Viewing entry in read-only mode." msgstr "Stai guardando la voce in modalità sola lettura." -#: ../../htdocs/login_form.php:28 +#: ../../lib/page.php:62 +msgid "" +"WARNING: You cannot have PHP compression and phpLDAPadmin compression " +"enabled at the same time. Please unset zlib.output_compression or set " +"$config->custom->appearance['compress']=false" +msgstr "" +"AVVISO: Non è possibile avere abilitata la compressione sia a livello di PHP " +"che a livello di phpLDAPadmin. Si disabiliti zlib.output_compression o si " +"abiliti $config->custom->appearance['compress']=false" + +#: ../../htdocs/login_form.php:28 ../../lib/page.php:62 msgid "Warning" msgstr "Attenzione" @@ -1959,16 +1980,16 @@ msgstr "" "Non si sta usando 'https'. Il browser web trasmetterà le informazioni in " "chiaro." -#: ../../htdocs/delete.php:18 ../../htdocs/rename_form.php:20 -#: ../../htdocs/add_value.php:21 ../../htdocs/rename.php:21 -#: ../../htdocs/update.php:39 ../../htdocs/create.php:22 -#: ../../htdocs/copy_form.php:18 ../../htdocs/delete_attr.php:18 -#: ../../htdocs/add_attr.php:22 ../../htdocs/template_engine.php:54 -#: ../../htdocs/add_value_form.php:16 ../../htdocs/add_oclass_form.php:27 -#: ../../htdocs/add_attr_form.php:18 ../../htdocs/modify_member_form.php:21 -#: ../../htdocs/download_binary_attr.php:15 ../../htdocs/rdelete.php:18 -#: ../../htdocs/update_confirm.php:19 ../../htdocs/ldif_import_form.php:19 -#: ../../htdocs/add_oclass.php:23 ../../htdocs/delete_form.php:19 +#: ../../htdocs/add_attr.php:22 ../../htdocs/add_attr_form.php:18 +#: ../../htdocs/add_oclass.php:23 ../../htdocs/add_oclass_form.php:27 +#: ../../htdocs/add_value.php:21 ../../htdocs/add_value_form.php:16 +#: ../../htdocs/copy_form.php:18 ../../htdocs/create.php:22 +#: ../../htdocs/delete.php:18 ../../htdocs/delete_attr.php:18 +#: ../../htdocs/delete_form.php:19 ../../htdocs/download_binary_attr.php:15 +#: ../../htdocs/ldif_import_form.php:19 ../../htdocs/modify_member_form.php:21 +#: ../../htdocs/rdelete.php:18 ../../htdocs/rename.php:21 +#: ../../htdocs/rename_form.php:20 ../../htdocs/template_engine.php:54 +#: ../../htdocs/update.php:39 ../../htdocs/update_confirm.php:19 msgid "You cannot perform updates while server is in read-only mode" msgstr "" "Non è possibile eseguire aggiornamenti quando il server è in modalità sola " @@ -2002,7 +2023,7 @@ msgstr "Non è stata selezionata nessuna voce da eliminare." msgid "You did not select any objectClasses for this object." msgstr "Non è stata selezionata nessuna objectClass per questo oggetto." -#: ../../lib/functions.php:1254 +#: ../../lib/functions.php:146 msgid "You found a non-fatal phpLDAPadmin bug!" msgstr "Hai trovato un baco non grave di phpLDAPadmin!" @@ -2014,7 +2035,7 @@ msgstr "" "Non ci si è ancora autenticati sul server selezionato, quindi non è " "possibile eseguirvi ricerche." -#: ../../lib/EntryReader.php:353 +#: ../../lib/EntryReader.php:360 ../../lib/EntryReader.php:382 msgid "You have specified two different passwords" msgstr "Sono state specificate due password diverse" @@ -2032,7 +2053,7 @@ msgstr "" msgid "You left the destination DN blank." msgstr "Il DN di destinazione è stato lasciato vuoto." -#: ../../htdocs/login.php:28 +#: ../../htdocs/login.php:27 msgid "You left the password blank." msgstr "La password è stata lasciata vuota." @@ -2041,7 +2062,7 @@ msgstr "La password è stata lasciata vuota." msgid "You left the value blank for required attribute (%s)." msgstr "Il valore è stato lasciato vuoto per l'attributo richiesto (%s)." -#: ../../htdocs/update_confirm.php:346 +#: ../../htdocs/update_confirm.php:335 msgid "You made no changes" msgstr "Non sono state fatte modifiche" @@ -2057,22 +2078,22 @@ msgstr "Si deve caricare un file o fornire un LDIF nel campo testuale." msgid "You must specify a DN" msgstr "Si deve specificare un DN" -#: ../../htdocs/compare.php:530 +#: ../../htdocs/compare.php:528 #, php-format msgid "You need one of the following ObjectClass(es) to add this attribute %s." msgstr "" "Serve una della/e seguente/i ObjectClass per aggiungere questo attributo: %s." -#: ../../htdocs/index.php:77 +#: ../../htdocs/index.php:88 #, php-format msgid "" -"You need to configure phpLDAPadmin. Edit the file \"%s\" to do so. An " -"example config file is provided in \"%s.example\"." +"You need to configure %s. Edit the file \"%s\" to do so. An example config " +"file is provided in \"%s.example\"." msgstr "" -"Bisogna configurare phpLDAPadmin. Si editi il file \"%s\" per farlo. Un file " -"di configurazione di esempio è fornito in \"%s.example\"." +"Bisogna configurare %s. Si editi il file \"%s\" per farlo. Un file di " +"configurazione di esempio è fornito in \"%s.example\"." -#: ../../lib/functions.php:565 +#: ../../lib/functions.php:1292 #, php-format msgid "" "You specified an invalid value for auto_uid_number_mechanism (\"%s\")\n" @@ -2084,7 +2105,7 @@ msgstr "" "\t\t\t\tnella configurazione. Solo \"uidpool\" e \"search\" sono ammessi.\n" "\t\t\t\tSi corregga questo problema." -#: ../../lib/functions.php:432 +#: ../../lib/functions.php:1159 #, php-format msgid "" "You specified the \"auto_uid_number_mechanism\" as \"search\" in your\n" @@ -2098,7 +2119,7 @@ msgstr "" "\t\t\t\t\t\t\"auto_uid_number_search_base\". Lo si specifichi prima di " "continuare." -#: ../../lib/EntryWriter1.php:749 +#: ../../lib/EntryWriter1.php:763 msgid "You will be prompted to confirm this decision" msgstr "Ti sarà richiesto di confermare questa decisione" @@ -2110,20 +2131,20 @@ msgstr "" "Nella configurazione di PHP è disabilitato il caricamento di file. Si " "controlli il file php.ini prima di continuare." -#: ../../lib/functions.php:1464 ../../lib/functions.php:1475 -#: ../../lib/functions.php:1486 ../../lib/functions.php:1533 -#: ../../lib/functions.php:1551 +#: ../../lib/functions.php:1975 ../../lib/functions.php:1986 +#: ../../lib/functions.php:1997 ../../lib/functions.php:2045 +#: ../../lib/functions.php:2063 msgid "" "Your PHP install does not have the mhash() function. Cannot do SHA hashes." msgstr "" "L'installazione di PHP non dispone della funzione mhash(). Non è possibile " "eseguire hash SHA." -#: ../../lib/server_functions.php:280 +#: ../../lib/server_functions.php:262 msgid "Your PHP install does not support TLS." msgstr "L'installazione di PHP non supporta TLS." -#: ../../lib/server_functions.php:295 +#: ../../lib/server_functions.php:277 msgid "" "Your PHP installation does not support ldap_sasl_bind() function. This " "function is present in PHP 5.x when compiled with --with-ldap-sasl." @@ -2139,7 +2160,7 @@ msgstr "" "Il file PHP.INI non ha file_uploads = ON. Si abiliti il caricamento dei file " "in PHP." -#: ../../htdocs/timeout.php:31 +#: ../../htdocs/timeout.php:33 msgid "Your Session timed out after" msgstr "La Sessione è scaduta dopo" @@ -2154,8 +2175,8 @@ msgstr "" "consentito. Quell'attributo/valore appartiene ad un'altra voce.

Si " "dovrebbe cercare per quella voce." -#: ../../htdocs/add_value.php:59 ../../htdocs/create.php:86 #: ../../htdocs/add_attr.php:51 ../../htdocs/add_oclass.php:45 +#: ../../htdocs/add_value.php:59 ../../htdocs/create.php:86 #, php-format msgid "" "Your attempt to add %s (%s) to
%s
is NOT " @@ -2166,20 +2187,11 @@ msgstr "" "consentito. Quell'attributo/valore appartiene ad un'altra voce.

Si " "dovrebbe cercare per quella voce." -#: ../../lib/functions.php:2195 -#, php-format -msgid "" -"Your config.php specifies an invalid value for $default_search_display: %s. " -"Please fix it" -msgstr "" -"Il file config.php specifica un valore non valido per " -"$default_search_display: %s. Si deve correggerlo" - -#: ../../lib/common.php:124 +#: ../../lib/session_functions.php:139 msgid "Your configuration has been automatically refreshed." msgstr "La configurazione è stata automaticamente aggiornata." -#: ../../lib/functions.php:441 +#: ../../lib/functions.php:1168 #, php-format msgid "" "Your phpLDAPadmin configuration specifies an invalid auto_uid_search_base " @@ -2188,19 +2200,19 @@ msgstr "" "La configurazione di phpLDAPadmin specifica un valore non valido di " "auto_uid_search_base per il server %s" -#: ../../lib/functions.php:1445 ../../lib/functions.php:1578 +#: ../../lib/functions.php:1956 ../../lib/functions.php:2090 msgid "Your system crypt library does not support blowfish encryption." msgstr "La tua libreria crypt di sistema non supporta la codifica blowfish." -#: ../../lib/functions.php:1431 ../../lib/functions.php:1608 +#: ../../lib/functions.php:1942 ../../lib/functions.php:2120 msgid "Your system crypt library does not support extended DES encryption." msgstr "La tua libreria crypt di sistema non supporta la codifica DES estesa." -#: ../../lib/functions.php:1438 ../../lib/functions.php:1593 +#: ../../lib/functions.php:1949 ../../lib/functions.php:2105 msgid "Your system crypt library does not support md5crypt encryption." msgstr "La tua libreria crypt di sistema non supporta la codifica md5crypt." -#: ../../lib/template_functions.php:966 +#: ../../lib/template_functions.php:984 #, php-format msgid "" "Your template calls php.Function for a default value, however (%s) is NOT " @@ -2211,12 +2223,12 @@ msgstr "" "disponibile nelle variabili POST FORM. Le seguenti variabili sono " "disponibili [%s]." -#: ../../lib/EntryReader.php:267 +#: ../../lib/EntryReader.php:274 #, php-format msgid "Your template has an unknown post function (%s)." msgstr "Il modello ha una funzione post sconosciuta (%s)." -#: ../../lib/EntryReader.php:203 +#: ../../lib/EntryReader.php:210 #, php-format msgid "Your template is missing variable (%s)" msgstr "Nel modello manca la variabile (%s)" @@ -2225,11 +2237,11 @@ msgstr "Nel modello manca la variabile (%s)" msgid "Your version of PHP does not correctly perform the query." msgstr "La versione di PHP non ha eseguito correttamente l'interrogazione." -#: ../../htdocs/update_confirm.php:260 ../../htdocs/update_confirm.php:264 +#: ../../htdocs/update_confirm.php:254 ../../htdocs/update_confirm.php:258 msgid "[attribute deleted]" msgstr "[attributo rimosso]" -#: ../../lib/EntryWriter1.php:1986 ../../lib/EntryWriter1.php:2195 +#: ../../lib/EntryWriter1.php:2013 ../../lib/EntryWriter1.php:2222 msgid "[no value]" msgstr "[nessun valore]" @@ -2241,8 +2253,8 @@ msgstr "aggiungi attributo" msgid "add attribute value" msgstr "aggiungi valore di attributo" -#: ../../lib/EntryWriter1.php:1809 ../../htdocs/compare.php:528 -#: ../../htdocs/compare.php:539 +#: ../../htdocs/compare.php:526 ../../htdocs/compare.php:537 +#: ../../lib/EntryWriter1.php:1836 msgid "add value" msgstr "aggiungi un valore" @@ -2250,19 +2262,23 @@ msgstr "aggiungi un valore" msgid "advanced search" msgstr "ricerca avanzata" -#: ../../lib/functions.php:1758 +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1913 +msgid "alias" +msgstr "alias" + +#: ../../lib/functions.php:2230 msgid "browse" msgstr "sfoglia" -#: ../../lib/page.php:140 +#: ../../lib/functions.php:369 msgid "bug" msgstr "baco" -#: ../../lib/functions.php:1378 ../../htdocs/ldif_import.php:54 +#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:1888 msgid "bytes" msgstr "byte" -#: ../../lib/functions.php:1243 +#: ../../lib/functions.php:134 msgid "caller" msgstr "chiamante" @@ -2270,11 +2286,11 @@ msgstr "chiamante" msgid "character" msgstr "carattere" -#: ../../htdocs/schema.php:245 ../../htdocs/add_value_form.php:237 +#: ../../htdocs/add_value_form.php:237 ../../htdocs/schema.php:245 msgid "characters" msgstr "caratteri" -#: ../../lib/EntryWriter1.php:2366 +#: ../../lib/EntryWriter1.php:2393 msgid "confirm" msgstr "conferma" @@ -2286,8 +2302,8 @@ msgstr "copia voce" msgid "create entry" msgstr "crea voce" -#: ../../lib/EntryWriter1.php:1982 ../../htdocs/compare.php:289 -#: ../../htdocs/update.php:61 ../../htdocs/delete_attr.php:21 +#: ../../htdocs/compare.php:287 ../../htdocs/delete_attr.php:21 +#: ../../htdocs/update.php:61 ../../lib/EntryWriter1.php:2009 msgid "delete attribute" msgstr "cancella attributo" @@ -2299,12 +2315,12 @@ msgstr "cancella voce" msgid "delete mass entries" msgstr "cancella voci in massa" -#: ../../lib/EntryWriter1.php:1971 ../../lib/EntryWriter1.php:1975 -#: ../../htdocs/compare.php:280 ../../htdocs/compare.php:283 +#: ../../htdocs/compare.php:278 ../../htdocs/compare.php:281 +#: ../../lib/EntryWriter1.php:1998 ../../lib/EntryWriter1.php:2002 msgid "download value" msgstr "valore del download" -#: ../../htdocs/compare.php:312 +#: ../../htdocs/compare.php:310 msgid "empty" msgstr "vuoto" @@ -2316,7 +2332,7 @@ msgstr "voci" msgid "entry" msgstr "voce" -#: ../../lib/HTMLTree.php:259 ../../htdocs/export.php:18 +#: ../../htdocs/export.php:18 ../../lib/HTMLTree.php:259 msgid "export" msgstr "esporta" @@ -2324,16 +2340,16 @@ msgstr "esporta" msgid "export results" msgstr "risultati dell'esportazione" -#: ../../lib/AttributeFactory.php:36 ../../htdocs/compare.php:402 +#: ../../htdocs/compare.php:400 ../../lib/AttributeFactory.php:39 msgid "false" msgstr "falso" -#: ../../htdocs/create.php:114 ../../htdocs/copy.php:76 -#: ../../htdocs/copy.php:106 +#: ../../htdocs/copy.php:76 ../../htdocs/copy.php:106 +#: ../../htdocs/create.php:114 msgid "has been created." msgstr "è stato creato." -#: ../../lib/HTMLTree.php:251 ../../htdocs/ldif_import.php:19 +#: ../../htdocs/ldif_import.php:19 ../../lib/HTMLTree.php:251 msgid "import" msgstr "importa" @@ -2341,23 +2357,27 @@ msgstr "importa" msgid "info" msgstr "info" -#: ../../lib/functions.php:1347 +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1913 +msgid "is an alias for" +msgstr "è un alias per" + +#: ../../lib/functions.php:1857 msgid "jpegPhoto contains errors
" msgstr "jpegPhoto contiene errori
" -#: ../../lib/page.php:134 +#: ../../lib/functions.php:367 msgid "light" msgstr "leggero" -#: ../../lib/functions.php:1243 +#: ../../lib/functions.php:134 msgid "line" msgstr "linea" -#: ../../lib/HTMLTree.php:467 +#: ../../lib/HTMLTree.php:471 msgid "login" msgstr "autentica" -#: ../../lib/HTMLTree.php:267 ../../lib/HTMLTree.php:485 +#: ../../lib/HTMLTree.php:267 ../../lib/HTMLTree.php:489 msgid "logout" msgstr "esci" @@ -2369,7 +2389,7 @@ msgstr "la variabile mass_delete POST non è un array." msgid "members in group" msgstr "membri nel gruppo" -#: ../../htdocs/timeout.php:31 +#: ../../htdocs/timeout.php:33 msgid "min. of inactivity. You have been automatically logged out." msgstr "min. di inattività. Sei stato scollegato automaticamente." @@ -2377,11 +2397,11 @@ msgstr "min. di inattività. Sei stato scollegato automaticamente." msgid "modify attribute values" msgstr "modifica valori degli attributi" -#: ../../lib/EntryWriter1.php:1821 +#: ../../lib/EntryWriter1.php:1848 msgid "modify group members" msgstr "modifica membri del gruppo" -#: ../../lib/HTMLTree.php:452 +#: ../../lib/HTMLTree.php:456 msgid "new" msgstr "nuovo" @@ -2393,7 +2413,7 @@ msgstr "nuovi attributi" msgid "no description" msgstr "nessuna descrizione" -#: ../../lib/functions.php:1131 +#: ../../lib/functions.php:1780 msgid "no description available" msgstr "descrizione non disponibile" @@ -2409,16 +2429,16 @@ msgstr "nessun nuovo attributo disponibile per questa voce" msgid "no new binary attributes available for this entry" msgstr "nessun nuovo attributo binario disponibile per questa voce" +#: ../../htdocs/schema.php:172 ../../htdocs/schema.php:254 +#: ../../htdocs/schema.php:269 ../../htdocs/schema.php:343 +#: ../../htdocs/schema.php:412 ../../htdocs/schema.php:432 +#: ../../htdocs/schema.php:469 ../../htdocs/schema.php:492 #: ../../lib/EntryWriter1.php:405 ../../lib/EntryWriter1.php:418 -#: ../../lib/functions.php:2409 ../../htdocs/schema.php:172 -#: ../../htdocs/schema.php:254 ../../htdocs/schema.php:269 -#: ../../htdocs/schema.php:343 ../../htdocs/schema.php:412 -#: ../../htdocs/schema.php:432 ../../htdocs/schema.php:469 -#: ../../htdocs/schema.php:492 +#: ../../lib/functions.php:2775 msgid "none" msgstr "nessuno" -#: ../../lib/EntryWriter1.php:2543 ../../htdocs/compare.php:403 +#: ../../htdocs/compare.php:401 ../../lib/EntryWriter1.php:2570 msgid "none, remove value" msgstr "nessuno, rimuovi il valore" @@ -2446,7 +2466,7 @@ msgstr "" msgid "phpLDAPadmin doesn't know how to fetch the schema for your server." msgstr "phpLDAPadmin non sa come recuperare lo schema per il tuo server." -#: ../../htdocs/welcome.php:16 ../../htdocs/welcome.php:17 +#: ../../htdocs/welcome.php:16 msgid "phpLDAPadmin logo" msgstr "logo di phpLDAPadmin" @@ -2458,8 +2478,8 @@ msgstr "ricerca predefinita" msgid "purge" msgstr "svuota" -#: ../../lib/EntryWriter1.php:1500 ../../lib/EntryWriter2.php:211 -#: ../../lib/HTMLTree.php:41 ../../htdocs/compare.php:181 +#: ../../htdocs/compare.php:179 ../../lib/EntryWriter1.php:1515 +#: ../../lib/EntryWriter2.php:211 ../../lib/HTMLTree.php:41 msgid "read only" msgstr "sola lettura" @@ -2471,7 +2491,7 @@ msgstr "aggiorna" msgid "refresh server" msgstr "aggiorna server" -#: ../../lib/EntryWriter1.php:1790 +#: ../../lib/EntryWriter1.php:1817 msgid "rename" msgstr "rinomina" @@ -2479,7 +2499,7 @@ msgstr "rinomina" msgid "rename entry" msgstr "rinomina voce" -#: ../../lib/EntryWriter1.php:1922 ../../htdocs/compare.php:171 +#: ../../htdocs/compare.php:169 ../../lib/EntryWriter1.php:1949 msgid "required" msgstr "richiesto" @@ -2503,12 +2523,12 @@ msgstr "seleziona l'attributo rdn" msgid "simple search" msgstr "ricerca semplice" -#: ../../lib/EntryWriter1.php:947 +#: ../../lib/EntryWriter1.php:961 #, php-format msgid "step %s of %s" msgstr "passo %s di %s" -#: ../../lib/EntryWriter1.php:2270 ../../htdocs/compare.php:438 +#: ../../htdocs/compare.php:436 ../../lib/EntryWriter1.php:2297 msgid "structural" msgstr "strutturale" @@ -2528,11 +2548,11 @@ msgstr "questo" msgid "to a new object" msgstr "ad un nuovo oggetto" -#: ../../lib/AttributeFactory.php:35 ../../htdocs/compare.php:401 +#: ../../htdocs/compare.php:399 ../../lib/AttributeFactory.php:38 msgid "true" msgstr "vero" -#: ../../lib/functions.php:544 +#: ../../lib/functions.php:1271 msgid "" "uidpool_dn not found. Please check filter (arg 3) or set up uidpool_dn in " "config file" @@ -2568,7 +2588,7 @@ msgstr "visualizza schema" msgid "view server informations" msgstr "visualizza le informazioni del server" -#: ../../htdocs/update_confirm.php:326 +#: ../../htdocs/update_confirm.php:320 msgid "will delete the attribute(s)" msgstr "cancellerà il/gli attributo/i?" diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo index 1e957c3..58700d3 100644 Binary files a/locale/pl_PL/LC_MESSAGES/messages.mo and b/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/locale/pl_PL/LC_MESSAGES/messages.po b/locale/pl_PL/LC_MESSAGES/messages.po index 9fbd044..1a27ab1 100644 --- a/locale/pl_PL/LC_MESSAGES/messages.po +++ b/locale/pl_PL/LC_MESSAGES/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: phpldapadmin-devel@lists.sf.net\n" "POT-Creation-Date: 2004-01-14 17:45+0200\n" -"PO-Revision-Date: 2007-11-07 14:37:00+0100\n" +"PO-Revision-Date: 2008-01-28 14:08:00+0100\n" "Last-Translator: Piotr (DrFugazi) Tarnowski\n" "Language-Team: phpLDAPadmin \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "%s z %s wpisów nie zostało usuniętych." msgid "(" msgstr "(" -#: ../../lib/HTMLTree.php:477 +#: ../../lib/HTMLTree.php:481 msgid "(Session timed out. Automatically logged out.)" msgstr "(Sesja wygasła. Automatycznie wylogowano.)" @@ -29,30 +29,30 @@ msgstr "(Sesja wygasła. Automatycznie wylogowano.)" msgid ")" msgstr ")" -#: ../../htdocs/purge_cache.php:13 ../../htdocs/refresh.php:17 +#: ../../htdocs/update_confirm.php:316 ../../htdocs/update_confirm.php:321 +#: ../../htdocs/purge_cache.php:13 ../../htdocs/add_value_form.php:76 +#: ../../htdocs/add_value_form.php:78 ../../htdocs/add_value_form.php:104 +#: ../../htdocs/view_jpeg_photo.php:25 ../../htdocs/rename.php:24 +#: ../../htdocs/export.php:18 ../../htdocs/rdelete.php:21 +#: ../../htdocs/add_attr.php:25 ../../htdocs/copy.php:20 +#: ../../htdocs/copy.php:76 ../../htdocs/mass_delete.php:26 +#: ../../htdocs/delete.php:21 ../../htdocs/schema.php:20 #: ../../htdocs/search.php:120 ../../htdocs/search.php:124 #: ../../htdocs/search.php:128 ../../htdocs/search.php:265 #: ../../htdocs/search.php:276 ../../htdocs/search.php:295 -#: ../../htdocs/search.php:299 ../../htdocs/schema.php:20 -#: ../../htdocs/delete.php:21 ../../htdocs/update.php:61 -#: ../../htdocs/update.php:67 ../../htdocs/update.php:80 +#: ../../htdocs/search.php:299 ../../htdocs/delete_attr.php:21 +#: ../../htdocs/add_value.php:24 ../../htdocs/ldif_import.php:19 #: ../../htdocs/create.php:25 ../../htdocs/create.php:114 -#: ../../htdocs/add_value.php:24 ../../htdocs/export.php:18 -#: ../../htdocs/delete_attr.php:21 ../../htdocs/mass_delete.php:26 -#: ../../htdocs/add_attr.php:25 ../../htdocs/ldif_import.php:19 -#: ../../htdocs/add_value_form.php:76 ../../htdocs/add_value_form.php:78 -#: ../../htdocs/add_value_form.php:104 ../../htdocs/rename.php:24 -#: ../../htdocs/update_confirm.php:322 ../../htdocs/update_confirm.php:327 -#: ../../htdocs/rdelete.php:21 ../../htdocs/server_info.php:16 -#: ../../htdocs/copy.php:20 ../../htdocs/copy.php:76 -#: ../../htdocs/view_jpeg_photo.php:25 ../../lib/HTMLTree.php:274 -#: ../../lib/page.php:184 ../../lib/EntryWriter1.php:247 +#: ../../htdocs/refresh.php:17 ../../htdocs/server_info.php:16 +#: ../../htdocs/update.php:61 ../../htdocs/update.php:67 +#: ../../htdocs/update.php:80 ../../lib/EntryWriter2.php:21 +#: ../../lib/EntryWriter2.php:175 ../../lib/HTMLTree.php:274 +#: ../../lib/page.php:199 ../../lib/EntryWriter1.php:247 #: ../../lib/EntryWriter1.php:254 ../../lib/EntryWriter1.php:261 #: ../../lib/EntryWriter1.php:507 ../../lib/EntryWriter1.php:512 #: ../../lib/EntryWriter1.php:1019 ../../lib/EntryWriter1.php:1022 -#: ../../lib/EntryWriter1.php:1244 ../../lib/EntryWriter1.php:1413 -#: ../../lib/EntryWriter1.php:2425 ../../lib/EntryWriter2.php:21 -#: ../../lib/EntryWriter2.php:175 +#: ../../lib/EntryWriter1.php:1246 ../../lib/EntryWriter1.php:1415 +#: ../../lib/EntryWriter1.php:2438 msgid ":" msgstr ":" @@ -60,7 +60,7 @@ msgstr ":" msgid "A list of attributes to display in the results (comma-separated)" msgstr "Lista atrybutów do wyświetlenia w wynikach (rozdzielona przecinkami)" -#: ../../lib/template_functions.php:944 ../../lib/EntryWriter1.php:2425 +#: ../../lib/template_functions.php:958 ../../lib/EntryWriter1.php:2438 msgid "A random password was generated for you" msgstr "Zostało wygenerowane losowe hasło" @@ -85,7 +85,7 @@ msgstr "Dodaj" msgid "Add New Value" msgstr "Dodaj nową wartość" -#: ../../htdocs/compare.php:528 ../../htdocs/add_oclass_form.php:104 +#: ../../htdocs/add_oclass_form.php:104 ../../htdocs/compare.php:526 msgid "Add ObjectClass and Attributes" msgstr "Dodaj klasę obiektu i atrybuty" @@ -93,7 +93,7 @@ msgstr "Dodaj klasę obiektu i atrybuty" msgid "Add all" msgstr "Dodaj wszystko" -#: ../../htdocs/compare.php:539 ../../lib/EntryWriter1.php:1808 +#: ../../htdocs/compare.php:537 ../../lib/EntryWriter1.php:1821 #, php-format msgid "Add an additional value to attribute '%s'" msgstr "Dodaj dodatkową wartość do atrybutu '%s'" @@ -102,7 +102,7 @@ msgstr "Dodaj dodatkową wartość do atrybutu '%s'" msgid "Add new" msgstr "Dodaj nowy" -#: ../../htdocs/compare.php:530 ../../htdocs/add_value_form.php:196 +#: ../../htdocs/add_value_form.php:196 ../../htdocs/compare.php:528 msgid "Add new ObjectClass" msgstr "Dodaj nową klasę obiektu" @@ -128,6 +128,10 @@ msgstr "Dodawanie..." msgid "Advanced Search Form" msgstr "Wyszukiwanie zaawansowane" +#: ../../lib/config_default.php:630 +msgid "Alias for" +msgstr "Alias dla" + #: ../../htdocs/schema.php:108 msgid "Aliases" msgstr "Aliasy" @@ -145,11 +149,11 @@ msgstr "Atrybut (%s) został zmodyfikowany i jest wyróżniony poniżej." msgid "An entry should have one structural objectClass." msgstr "Wpis powinien posiadać jedną strukturalną klasę obiektu (objectClass)." -#: ../../htdocs/login_form.php:59 +#: ../../htdocs/login_form.php:60 msgid "Anonymous" msgstr "Podłączenie anonimowe" -#: ../../htdocs/login.php:162 +#: ../../htdocs/login.php:164 msgid "Anonymous Bind" msgstr "Podłączenie anonimowe" @@ -157,9 +161,13 @@ msgstr "Podłączenie anonimowe" msgid "Are you sure you want to permanently delete this object?" msgstr "Czy na pewno trwale usunąć ten obiekt ?" -#: ../../htdocs/compare.php:55 ../../htdocs/update_confirm.php:202 +#: ../../htdocs/update_confirm.php:202 ../../htdocs/compare.php:53 msgid "Attribute" -msgstr "Atrybuty" +msgstr "Atrybut" + +#: ../../htdocs/schema.php:42 +msgid "Attribute Types" +msgstr "Typy atrybutów" #: ../../lib/ldif_functions.php:455 msgid "Attribute is not valid" @@ -169,15 +177,15 @@ msgstr "Atrubut nie jest prawidłowy" msgid "Attribute not well formed" msgstr "Atrybut ma niewłaściwą postać" -#: ../../htdocs/login_form.php:62 +#: ../../htdocs/login_form.php:63 msgid "Authenticate" msgstr "Zaloguj" -#: ../../htdocs/login.php:27 ../../htdocs/login.php:92 -#: ../../htdocs/login.php:114 ../../htdocs/login.php:134 -#: ../../htdocs/login.php:141 ../../htdocs/login.php:161 +#: ../../htdocs/login.php:26 ../../htdocs/login.php:91 +#: ../../htdocs/login.php:116 ../../htdocs/login.php:136 +#: ../../htdocs/login.php:143 ../../htdocs/login.php:163 #: ../../htdocs/login_form.php:19 ../../lib/HTMLTree.php:90 -#: ../../lib/server_functions.php:2434 +#: ../../lib/server_functions.php:2426 msgid "Authenticate to server" msgstr "Uwierzytelnienie dla serwera" @@ -189,12 +197,12 @@ msgstr "Dostępni członkowie" msgid "Back Up..." msgstr "Do góry..." -#: ../../lib/functions.php:1140 +#: ../../lib/functions.php:1682 msgid "Backtrace" msgstr "Śledzenie wstecz" -#: ../../htdocs/login.php:93 ../../htdocs/login.php:142 -#: ../../lib/server_functions.php:357 ../../lib/server_functions.php:2435 +#: ../../htdocs/login.php:92 ../../htdocs/login.php:144 +#: ../../lib/server_functions.php:339 ../../lib/server_functions.php:2427 msgid "Bad username or password. Please try again." msgstr "Zła nazwa użytkownika lub hasło. Spróbuj ponownie." @@ -207,7 +215,7 @@ msgstr "Base (tylko bazowa dn)" msgid "Base DN" msgstr "Bazowa DN" -#: ../../htdocs/compare.php:276 ../../lib/EntryWriter1.php:1952 +#: ../../htdocs/compare.php:274 ../../lib/EntryWriter1.php:1965 msgid "Binary value" msgstr "Wartość binarna" @@ -219,20 +227,24 @@ msgstr "Budowanie migawki (snapshot) drzewa do skopiowania... " msgid "CSV (Spreadsheet)" msgstr "CVS (arkusz)" -#: ../../htdocs/delete_form.php:77 ../../htdocs/delete_form.php:127 -#: ../../htdocs/update_confirm.php:313 +#: ../../lib/functions.php:64 +msgid "Called to load a class that cant be found" +msgstr "Próbowano załadować klasę, której nie znaleziono" + +#: ../../htdocs/update_confirm.php:307 ../../htdocs/delete_form.php:77 +#: ../../htdocs/delete_form.php:127 msgid "Cancel" msgstr "Anuluj" -#: ../../htdocs/compare.php:383 +#: ../../htdocs/compare.php:381 msgid "Check password" msgstr "Sprawdź hasło" -#: ../../lib/EntryWriter1.php:2389 +#: ../../lib/EntryWriter1.php:2402 msgid "Check password..." msgstr "Sprawdź hasło" -#: ../../lib/EntryReader.php:352 +#: ../../lib/EntryReader.php:359 ../../lib/EntryReader.php:381 msgid "Checking passwords" msgstr "Sprawdzam hasła" @@ -240,16 +252,16 @@ msgstr "Sprawdzam hasła" msgid "Children" msgstr "Wpisy potomne" -#: ../../lib/functions.php:3047 +#: ../../lib/functions.php:3221 msgid "Click to popup a dialog to select a date graphically" msgstr "Kliknij aby wywołać okno i wybrać datę graficznie" -#: ../../lib/functions.php:1754 +#: ../../lib/functions.php:2239 msgid "Click to popup a dialog to select an entry (DN) graphically" msgstr "Kliknij aby wywołać okno i wybrać wpis (DN) graficznie" -#: ../../htdocs/compare.php:162 ../../htdocs/server_info.php:83 -#: ../../lib/EntryWriter1.php:1874 +#: ../../htdocs/compare.php:160 ../../htdocs/server_info.php:83 +#: ../../lib/EntryWriter1.php:1887 #, php-format msgid "Click to view the schema definition for attribute type '%s'" msgstr "Kliknij aby zobaczyć definicję schematu dla atrybutu typu '%s'" @@ -258,7 +270,7 @@ msgstr "Kliknij aby zobaczyć definicję schematu dla atrybutu typu '%s'" msgid "Collective" msgstr "Zbiorcza " -#: ../../htdocs/update_confirm.php:310 +#: ../../htdocs/update_confirm.php:304 msgid "Commit" msgstr "Zatwierdź" @@ -279,7 +291,7 @@ msgstr "Prównaj tą DN z inną" msgid "Compare with another entry" msgstr "Porównaj z innym wpisem" -#: ../../htdocs/compare.php:50 +#: ../../htdocs/compare.php:48 msgid "Comparing the following DNs" msgstr "Porównuję następujące DN" @@ -287,7 +299,7 @@ msgstr "Porównuję następujące DN" msgid "Compress" msgstr "Kompresja" -#: ../../lib/common.php:123 +#: ../../lib/session_functions.php:138 msgid "Configuration cache stale." msgstr "Przestarzała konfiguracja w cache." @@ -330,8 +342,7 @@ msgstr "Kopiowanie zakończone pomyślnie!" #: ../../lib/EntryWriter1.php:726 msgid "Copy this object to another location,a new DN, or another server" -msgstr "" -"Skopiuj ten obiekt do innej lokalizacji, nowej DN, lub na inny serwer" +msgstr "Skopiuj ten obiekt do innej lokalizacji, nowej DN, lub na inny serwer" #: ../../htdocs/copy.php:57 msgid "Copying " @@ -345,15 +356,15 @@ msgstr "Nie można dodać obiektu:" msgid "Could not add the object to the LDAP server." msgstr "Nie można dodać obiektu do serwera LDAP." -#: ../../htdocs/login.php:135 +#: ../../htdocs/login.php:137 msgid "Could not bind anonymously to server." msgstr "Nie można anonimowo podłączyć do serwera." -#: ../../lib/server_functions.php:366 +#: ../../lib/server_functions.php:348 msgid "Could not bind to the LDAP server." msgstr "Nie można podłączyć się do serwera LDAP." -#: ../../lib/server_functions.php:363 +#: ../../lib/server_functions.php:345 #, php-format msgid "Could not connect to \"%s\" on port \"%s\"" msgstr "Nie można podłączyć się do \"%s\" na port \"%s\"" @@ -366,8 +377,8 @@ msgstr "Nie można ustanowić połączenia z serwerem LDAP." msgid "Could not delete object:" msgstr "Nie można usunąć obiektu:" -#: ../../htdocs/delete.php:35 ../../htdocs/delete.php:49 -#: ../../htdocs/rdelete.php:45 +#: ../../htdocs/rdelete.php:45 ../../htdocs/delete.php:35 +#: ../../htdocs/delete.php:49 #, php-format msgid "Could not delete the entry: %s" msgstr "Nie można usunąć wpisu: %s" @@ -380,7 +391,7 @@ msgstr "Nie można określić bazowego DN" msgid "Could not determine the root of your LDAP tree." msgstr "Nie można ustalić korzenia Twojego drzewa LDAP." -#: ../../lib/functions.php:1326 +#: ../../lib/functions.php:1849 #, php-format msgid "Could not fetch jpeg data from LDAP server for attribute %s." msgstr "Nie można pobrać danych jpeg z serwera LDAP dla atrybutu %s." @@ -397,7 +408,7 @@ msgstr "Nie można zmodyfikować obiektu:" msgid "Could not perform ldap_mod_add operation." msgstr "Nie można dokonać operacji ldap_mod_add." -#: ../../htdocs/update.php:178 ../../htdocs/delete_attr.php:50 +#: ../../htdocs/delete_attr.php:50 ../../htdocs/update.php:178 msgid "Could not perform ldap_modify operation." msgstr "Nie można wykonać operacji modyfikacji (ldap_modify)." @@ -405,7 +416,7 @@ msgstr "Nie można wykonać operacji modyfikacji (ldap_modify)." msgid "Could not rename object:" msgstr "Nie można zmienić nazwy obiektu:" -#: ../../htdocs/rename.php:61 ../../lib/server_functions.php:1530 +#: ../../htdocs/rename.php:61 ../../lib/server_functions.php:1522 msgid "Could not rename the entry" msgstr "Nie można zmienić nazwy wpisu" @@ -413,15 +424,15 @@ msgstr "Nie można zmienić nazwy wpisu" msgid "Could not retrieve schema from" msgstr "Nie można uzyskać schematu z" -#: ../../htdocs/login.php:150 +#: ../../htdocs/login.php:152 msgid "Could not set cookie." msgstr "Nie można ustawić ciasteczka (cookie)." -#: ../../lib/server_functions.php:281 +#: ../../lib/server_functions.php:263 msgid "Could not start TLS. Please check your LDAP server configuration." msgstr "Nie można uruchomić TLS. Proszę sprawdzić konfigurację serwera LDAP." -#: ../../lib/functions.php:1341 +#: ../../lib/functions.php:1864 #, php-format msgid "" "Could not write to the $jpeg_temp_dir directory %s. Please verify that your " @@ -438,8 +449,8 @@ msgstr "Utwórz" msgid "Create Entry" msgstr "Utwórz wpis" -#: ../../lib/EntryWriter1.php:242 ../../lib/EntryWriter1.php:313 -#: ../../lib/EntryWriter2.php:82 +#: ../../lib/EntryWriter2.php:82 ../../lib/EntryWriter1.php:242 +#: ../../lib/EntryWriter1.php:313 msgid "Create Object" msgstr "Utwórz obiekt" @@ -447,7 +458,7 @@ msgstr "Utwórz obiekt" msgid "Create a child entry" msgstr "Utwórz wpis potomny" -#: ../../lib/HTMLTree.php:454 +#: ../../lib/HTMLTree.php:458 msgid "Create a new entry in" msgstr "Utwórz nowy wpis w" @@ -459,10 +470,10 @@ msgstr "Utwórz inny wpis" msgid "Create it?" msgstr "Utworzyć ?" -#: ../../lib/PLMTree.php:142 ../../lib/PLMTree.php:162 -#: ../../lib/HTMLTree.php:454 ../../lib/AJAXTree.php:343 +#: ../../lib/HTMLTree.php:458 ../../lib/AJAXTree.php:343 #: ../../lib/AJAXTree.php:344 ../../lib/AJAXTree.php:367 -#: ../../lib/AJAXTree.php:368 +#: ../../lib/AJAXTree.php:368 ../../lib/PLMTree.php:142 +#: ../../lib/PLMTree.php:162 msgid "Create new entry here" msgstr "Utwórz nowy wpis" @@ -470,7 +481,7 @@ msgstr "Utwórz nowy wpis" msgid "Creation successful!" msgstr "Utworzono pomyślnie!" -#: ../../htdocs/welcome.php:27 +#: ../../htdocs/welcome.php:25 msgid "Credits" msgstr "Twórcy" @@ -486,7 +497,7 @@ msgstr "Wytnij" msgid "DN" msgstr "DN" -#: ../../lib/EntryWriter1.php:1847 +#: ../../lib/EntryWriter1.php:1860 msgid "DN not available" msgstr "DN nie dostępna" @@ -495,7 +506,7 @@ msgstr "DN nie dostępna" msgid "DSLM Export for: %s" msgstr "Eksport DSLM dla: %s" -#: ../../lib/EntryWriter1.php:1084 ../../lib/EntryWriter1.php:1294 +#: ../../lib/EntryWriter1.php:1084 ../../lib/EntryWriter1.php:1296 msgid "Default" msgstr "Domyślny" @@ -516,7 +527,7 @@ msgstr "Usuń zaznaczone wpisy" msgid "Delete DN" msgstr "Usuń DN" -#: ../../lib/functions.php:1348 +#: ../../lib/functions.php:1871 msgid "Delete Photo" msgstr "Usuń fotografię" @@ -529,7 +540,7 @@ msgstr "Usuń po skopiowaniu (przenieś):" msgid "Delete all %s objects" msgstr "Usuń wszystkie %s obiekty/ów" -#: ../../lib/functions.php:1383 +#: ../../lib/functions.php:1906 msgid "Delete photo" msgstr "Usuń zdjęcie" @@ -541,7 +552,7 @@ msgstr "Usuń ten wpis" msgid "Deleting" msgstr "Usuwanie" -#: ../../htdocs/mass_delete.php:61 ../../htdocs/rdelete.php:30 +#: ../../htdocs/rdelete.php:30 ../../htdocs/mass_delete.php:61 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" @@ -555,19 +566,19 @@ msgstr "Usuwanie..." msgid "Deletion progress on server \"%s\"" msgstr "Postęp usuwania na serwerze \"%s\"" -#: ../../htdocs/schema.php:69 ../../htdocs/schema.php:96 -#: ../../htdocs/schema.php:403 ../../htdocs/ldif_import.php:110 -#: ../../htdocs/ldif_import.php:120 ../../htdocs/ldif_import.php:190 -#: ../../htdocs/add_value_form.php:230 ../../lib/functions.php:1128 -#: ../../lib/functions.php:1131 +#: ../../htdocs/add_value_form.php:230 ../../htdocs/schema.php:69 +#: ../../htdocs/schema.php:96 ../../htdocs/schema.php:403 +#: ../../htdocs/ldif_import.php:110 ../../htdocs/ldif_import.php:120 +#: ../../htdocs/ldif_import.php:190 ../../lib/functions.php:1670 +#: ../../lib/functions.php:1673 msgid "Description" msgstr "Opis" -#: ../../htdocs/copy_form.php:64 ../../htdocs/compare_form.php:53 +#: ../../htdocs/compare_form.php:53 ../../htdocs/copy_form.php:64 msgid "Destination DN" msgstr "Docelowa DN" -#: ../../htdocs/copy_form.php:70 ../../htdocs/compare_form.php:61 +#: ../../htdocs/compare_form.php:61 ../../htdocs/copy_form.php:70 msgid "Destination Server" msgstr "Docelowy serwer" @@ -579,11 +590,11 @@ msgstr "Docelowy serwer jest obecnie TYLKO-DO-ODCZYTU" msgid "Display the new created entry" msgstr "Pokaż nowo utworzony wpis" -#: ../../htdocs/modify_member_form.php:72 ../../htdocs/rename_form.php:29 -#: ../../htdocs/add_attr_form.php:25 ../../htdocs/delete_form.php:29 -#: ../../htdocs/delete_form.php:107 ../../htdocs/compare.php:58 -#: ../../htdocs/compare.php:61 ../../htdocs/copy_form.php:47 -#: ../../htdocs/add_value_form.php:100 ../../htdocs/compare_form.php:24 +#: ../../htdocs/add_value_form.php:100 ../../htdocs/rename_form.php:29 +#: ../../htdocs/compare.php:56 ../../htdocs/compare.php:59 +#: ../../htdocs/delete_form.php:29 ../../htdocs/delete_form.php:107 +#: ../../htdocs/add_attr_form.php:25 ../../htdocs/compare_form.php:24 +#: ../../htdocs/modify_member_form.php:72 ../../htdocs/copy_form.php:47 #: ../../lib/EntryWriter1.php:511 msgid "Distinguished Name" msgstr "Wyróżniona Nazwa (DN)" @@ -597,7 +608,7 @@ msgstr "Czy na prawdę chcesz usunąć %s %s %s" msgid "Do you want to make these changes?" msgstr "Czy chcesz dokonać tych zmian ?" -#: ../../htdocs/welcome.php:32 +#: ../../htdocs/welcome.php:30 msgid "Documentation" msgstr "Dokumentacja" @@ -605,7 +616,7 @@ msgstr "Dokumentacja" msgid "Don't stop on errors" msgstr "Nie zatrzymuj się po napotkaniu błędów" -#: ../../htdocs/welcome.php:37 ../../lib/page.php:146 +#: ../../htdocs/welcome.php:35 ../../lib/functions.php:286 msgid "Donate" msgstr "Wesprzyj projekt" @@ -642,8 +653,8 @@ msgstr "Wpis utworzono" msgid "Equality" msgstr "Równość" -#: ../../lib/functions.php:1072 ../../lib/functions.php:1107 -#: ../../lib/functions.php:1241 +#: ../../lib/functions.php:435 ../../lib/functions.php:1649 +#: ../../lib/functions.php:1784 msgid "Error" msgstr "Błąd" @@ -657,12 +668,12 @@ msgstr "" msgid "Error code" msgstr "Kod błędu" -#: ../../lib/functions.php:1127 ../../lib/functions.php:1130 -#: ../../lib/functions.php:1137 +#: ../../lib/functions.php:1669 ../../lib/functions.php:1672 +#: ../../lib/functions.php:1679 msgid "Error number" msgstr "Numer błędu" -#: ../../lib/server_functions.php:113 +#: ../../lib/server_functions.php:95 #, php-format msgid "" "Error: You have an error in your config file. The only three allowed values " @@ -670,8 +681,8 @@ msgid "" "You entered '%s', which is not allowed." msgstr "" "Błąd: Masz błąd w pliku konfiguracji. Trzy możliwe wartości dla auth_type w " -"sekcji $servers to 'session', 'cookie' oraz 'config'. " -"Wprowadzono wartość '%s', która nie jest dozwolona." +"sekcji $servers to 'session', 'cookie' oraz 'config'. Wprowadzono wartość '%" +"s', która nie jest dozwolona." #: ../../htdocs/export_form.php:36 ../../htdocs/export_form.php:46 #: ../../lib/EntryWriter1.php:719 @@ -709,8 +720,8 @@ msgstr "Błąd podczas kopiowania DN: " msgid "Failed to delete entry %s" msgstr "Błąd podczas usuwania wpisu %s" -#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:1158 -#: ../../lib/functions.php:1243 +#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:1700 +#: ../../lib/functions.php:1786 msgid "File" msgstr "Plik" @@ -726,7 +737,7 @@ msgstr "Zastosowano filtr" msgid "Format" msgstr "Format" -#: ../../lib/functions.php:1159 +#: ../../lib/functions.php:1701 msgid "Function" msgstr "Funkcja" @@ -738,7 +749,7 @@ msgstr "" "Wygenerowane przez phpLDAPadmin ( http://phpldapadmin.sourceforge.net/ ) na %" "s" -#: ../../lib/functions.php:3107 +#: ../../lib/functions.php:62 ../../lib/functions.php:475 msgid "Generic Error" msgstr "Błąd ogólny" @@ -747,15 +758,15 @@ msgstr "Błąd ogólny" msgid "Go" msgstr "Idź" -#: ../../htdocs/update_confirm.php:350 +#: ../../htdocs/update_confirm.php:339 msgid "Go back" msgstr "Wstecz" -#: ../../lib/EntryWriter1.php:1843 +#: ../../lib/EntryWriter1.php:1856 msgid "Go to" msgstr "Idź do" -#: ../../htdocs/compare.php:451 +#: ../../htdocs/compare.php:449 #, php-format msgid "Go to %s" msgstr "Idź do %s" @@ -764,7 +775,7 @@ msgstr "Idź do %s" msgid "Group members" msgstr "Członkowie grupy" -#: ../../lib/page.php:158 +#: ../../lib/functions.php:290 msgid "Help" msgstr "Pomoc" @@ -806,15 +817,14 @@ msgstr "" "Wskazówka: Musisz wybrać dokładnie jedną strukturalną klasę obiektu " "(wyróżnioną pogrubieniem)" -#: ../../lib/page.php:122 +#: ../../lib/functions.php:278 msgid "Home" msgstr "Strona główna" #: ../../htdocs/ldif_import.php:195 #, php-format msgid "If so, please report it." -msgstr "" -"Jeśli tak, proszę go zgłosić." +msgstr "Jeśli tak, proszę go zgłosić." #: ../../htdocs/search.php:215 msgid "" @@ -824,7 +834,7 @@ msgstr "" "Jeśli chcesz dodać własne kryteria do listy, zmodyfikuj plik search.php aby " "to obsłużyć." -#: ../../htdocs/ldif_import_form.php:21 ../../htdocs/ldif_import.php:51 +#: ../../htdocs/ldif_import.php:51 ../../htdocs/ldif_import_form.php:21 msgid "Import LDIF File" msgstr "Importuj plik LDIF" @@ -857,7 +867,7 @@ msgstr "Dziedziczy z" msgid "Instructions" msgstr "Instrukcje" -#: ../../lib/server_functions.php:360 +#: ../../lib/server_functions.php:342 msgid "Insufficient access rights." msgstr "Niewystarczające uprawnienia dostępu." @@ -880,12 +890,13 @@ msgstr "" "Wygląda, że serwer LDAP jest skonfigurowany tak, aby nie ujawniać swojego " "korzenia." -#: ../../lib/server_functions.php:328 +#: ../../lib/server_functions.php:310 #, php-format msgid "" "It seems that sasl_authz_id_regex \"%s\".\" contains invalid PCRE regular " "expression." -msgstr "Wygląda na to, że sasl_authz_id_regex \"%s\".\" zawiera nieprawidłowe " +msgstr "" +"Wygląda na to, że sasl_authz_id_regex \"%s\".\" zawiera nieprawidłowe " "wyrażenie regularne PCRE." #: ../../htdocs/schema.php:295 @@ -904,7 +915,7 @@ msgstr "Skocz do klasy obiektu" msgid "Jump to this objectClass definition" msgstr "Skocz do definicji klasy obiektu" -#: ../../htdocs/ldif_import.php:144 ../../lib/functions.php:1120 +#: ../../htdocs/ldif_import.php:144 ../../lib/functions.php:1662 msgid "LDAP said" msgstr "LDAP odpowiedział" @@ -941,19 +952,15 @@ msgstr "Lista wpisów do usunięcia:" msgid "Logged in as" msgstr "Zalogowany/a jako" -#: ../../htdocs/update.php:158 ../../lib/HTMLTree.php:468 +#: ../../htdocs/update.php:158 ../../lib/HTMLTree.php:472 msgid "Login" msgstr "Zaloguj" -#: ../../htdocs/login_form.php:45 +#: ../../htdocs/login_form.php:46 msgid "Login DN" msgstr "Login DN" -#: ../../htdocs/login_form.php:45 -msgid "Login Name" -msgstr "Nazwa użytkownika" - -#: ../../htdocs/timeout.php:35 +#: ../../htdocs/timeout.php:37 msgid "Login..." msgstr "Logowanie..." @@ -969,7 +976,7 @@ msgstr "Wyloguj z tego serwera" msgid "Looking in" msgstr "Szukam w" -#: ../../lib/EntryWriter1.php:1852 +#: ../../lib/EntryWriter1.php:1865 msgid "Mail" msgstr "E-mail" @@ -999,19 +1006,23 @@ msgstr "" msgid "Matching Rule OID" msgstr "OID reguły dopasowania" -#: ../../htdocs/schema.php:107 ../../htdocs/add_value_form.php:237 +#: ../../htdocs/schema.php:44 +msgid "Matching Rules" +msgstr "Reguły dopasowania" + +#: ../../htdocs/add_value_form.php:237 ../../htdocs/schema.php:107 msgid "Maximum Length" msgstr "Maksymalna długość" -#: ../../htdocs/ldif_import_form.php:35 ../../htdocs/add_attr_form.php:154 +#: ../../htdocs/add_attr_form.php:154 ../../htdocs/ldif_import_form.php:35 msgid "Maximum file size" msgstr "Maksymalny rozmiar pliku" -#: ../../lib/functions.php:3278 +#: ../../lib/functions.php:260 msgid "Memory Limit low." msgstr "Niski limit pamięci." -#: ../../lib/template_functions.php:411 +#: ../../lib/template_functions.php:415 #, php-format msgid "Missing %s in the XML file." msgstr "Brakuje %s w pliku XML." @@ -1024,8 +1035,12 @@ msgstr "Brakuje atrybutów lub zmieniono typ atrybutu dla wpisu" msgid "Missing attributes for the entry" msgstr "Brakuje atrybutów dla tego wpisu" -#: ../../lib/functions.php:3168 ../../lib/functions.php:3175 -#: ../../lib/functions.php:3182 ../../lib/functions.php:3259 +#: ../../lib/functions.php:242 +msgid "Missing required configuration" +msgstr "Brak wymaganej konfiguracji" + +#: ../../lib/functions.php:147 ../../lib/functions.php:154 +#: ../../lib/functions.php:161 msgid "Missing required extension" msgstr "Brak wymaganego rozszerzenia" @@ -1041,7 +1056,7 @@ msgstr "Modyfikacja zakończona pomyślnie." msgid "Modify group" msgstr "Modyfikuj grupę" -#: ../../lib/EntryWriter1.php:1821 +#: ../../lib/EntryWriter1.php:1834 #, php-format msgid "Modify members for '%s'" msgstr "Modyfikuj listę członków dla '%s'" @@ -1075,7 +1090,7 @@ msgstr "Nie określono DN" msgid "No LDIF file specified. Please try again." msgstr "Nie określono pliku LDIF. Spróbuj ponownie." -#: ../../htdocs/compare.php:206 ../../htdocs/compare.php:219 +#: ../../htdocs/compare.php:204 ../../htdocs/compare.php:217 msgid "No Value" msgstr "Brak wartości" @@ -1095,7 +1110,7 @@ msgstr "Nie ma czego czyścić." msgid "No current value for attribute" msgstr "Brak wartości dla atrybutu" -#: ../../lib/EntryWriter1.php:826 ../../lib/EntryWriter2.php:104 +#: ../../lib/EntryWriter2.php:104 ../../lib/EntryWriter1.php:826 msgid "No internal attributes" msgstr "Brak atrybutów wewnętrznych" @@ -1107,9 +1122,9 @@ msgstr "Nikt nie jest zalogowany do tego serwera." msgid "No queries have been defined in config.php." msgstr "Brak zdefiniowanych zapytań w config.php." -#: ../../htdocs/delete.php:29 ../../htdocs/compare.php:32 -#: ../../htdocs/compare.php:34 ../../htdocs/download_binary_attr.php:26 -#: ../../htdocs/rdelete.php:28 ../../htdocs/template_engine.php:25 +#: ../../htdocs/template_engine.php:25 ../../htdocs/rdelete.php:28 +#: ../../htdocs/compare.php:32 ../../htdocs/compare.php:34 +#: ../../htdocs/delete.php:29 ../../htdocs/download_binary_attr.php:26 #, php-format msgid "No such entry: %s" msgstr "Nie ma takiego wpisu: %s" @@ -1127,20 +1142,19 @@ msgstr "Nie ma takiej pozycji w schemacie: \"%s\"" msgid "No version found. Assuming 1." msgstr "Nie znaleziono numeru wersji. Przyjmuję 1." -#: ../../htdocs/modify_member_form.php:23 ../../htdocs/rename_form.php:22 -#: ../../htdocs/entry_chooser.php:41 ../../htdocs/compare.php:25 -#: ../../htdocs/compare.php:29 ../../htdocs/download_binary_attr.php:17 -#: ../../htdocs/copy.php:32 +#: ../../htdocs/rename_form.php:22 ../../htdocs/compare.php:25 +#: ../../htdocs/compare.php:29 ../../htdocs/copy.php:32 +#: ../../htdocs/modify_member_form.php:23 +#: ../../htdocs/download_binary_attr.php:17 ../../htdocs/entry_chooser.php:41 msgid "" "Not enough information to login to server. Please check your configuration." msgstr "" "Brak wystarczających informacji aby zalogować się do serwera. Proszę " "sprawdzić konfigurację." -#: ../../htdocs/compare.php:123 ../../lib/EntryWriter1.php:1886 -#, php-format -msgid "Note: '%s' is an alias for '%s'" -msgstr "Uwaga: '%s' jest aliasem dla '%s'" +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1899 +msgid "Note" +msgstr "Uwaga" #: ../../htdocs/add_value_form.php:202 msgid "" @@ -1168,7 +1182,7 @@ msgstr "Uwaga, przekroczono limit rozmiaru wyszukiwania." msgid "OID" msgstr "OID" -#: ../../lib/EntryWriter1.php:340 +#: ../../htdocs/schema.php:41 ../../lib/EntryWriter1.php:340 msgid "ObjectClasses" msgstr "Klasy Obiektu" @@ -1176,9 +1190,10 @@ msgstr "Klasy Obiektu" msgid "" "ObjectClasses are flagged as read only in the phpLDAPadmin configuration." msgstr "" -"Klasy obiektów oznaczone są jako tylko-do-odczytu w konfiguracji phpLDAPadmin." +"Klasy obiektów oznaczone są jako tylko-do-odczytu w konfiguracji " +"phpLDAPadmin." -#: ../../lib/template_functions.php:265 +#: ../../lib/template_functions.php:269 msgid "ObjectClasses in XML dont exist in LDAP server." msgstr "Klasy obiektów w XML nie istnieją na serwerze LDAP." @@ -1220,7 +1235,7 @@ msgstr "Strona %d" msgid "Parent to" msgstr "Nadrzędny dla" -#: ../../htdocs/login_form.php:52 +#: ../../htdocs/login_form.php:53 msgid "Password" msgstr "Hasło" @@ -1244,11 +1259,11 @@ msgstr "Wklej tutaj LDIF" msgid "Permanently delete all children also?" msgstr "Czy trwale usunąć także wpisy potomne ?" -#: ../../lib/functions.php:1250 +#: ../../lib/functions.php:1793 msgid "Please check and see if this bug has been reported" msgstr "Proszę sprawdzić czy ten błąd (bug) został już zgłoszony" -#: ../../lib/functions.php:1332 +#: ../../lib/functions.php:1855 msgid "" "Please set $jpeg_temp_dir to a writable directory in the phpLDAPadmin config." "php" @@ -1265,7 +1280,7 @@ msgstr "Proszę określić to w pliku config.php" msgid "Predefined Searches" msgstr "Predefiniowane wyszukiwania" -#: ../../lib/EntryWriter1.php:308 ../../lib/EntryWriter2.php:78 +#: ../../lib/EntryWriter2.php:78 ../../lib/EntryWriter1.php:308 msgid "Proceed >>" msgstr "Dalej >>" @@ -1274,7 +1289,7 @@ msgstr "Dalej >>" msgid "Proceed >>" msgstr "Dalej >>" -#: ../../lib/page.php:128 +#: ../../lib/functions.php:280 msgid "Purge all cached data in phpLDAPadmin, including server schemas." msgstr "" "Czyści wszystkie dane podręczne (cache) w phpLDAPadmin, łącznie ze " @@ -1284,7 +1299,7 @@ msgstr "" msgid "Purge cache" msgstr "Wyczyść cache" -#: ../../lib/page.php:128 +#: ../../lib/functions.php:280 msgid "Purge caches" msgstr "Wyczyść cache" @@ -1293,7 +1308,7 @@ msgstr "Wyczyść cache" msgid "Purged %s bytes of cache." msgstr "Wyczyszczono %s bajtów pamięci podręcznej (cache)." -#: ../../htdocs/compare.php:566 ../../lib/EntryWriter1.php:2039 +#: ../../htdocs/compare.php:564 ../../lib/EntryWriter1.php:2052 msgid "Really delete attribute" msgstr "Definitywnie usuń atrybut" @@ -1333,7 +1348,7 @@ msgstr "Usuń zaznaczone" msgid "Rename" msgstr "Zmień nazwę" -#: ../../htdocs/rename_form.php:27 ../../htdocs/rename.php:71 +#: ../../htdocs/rename.php:71 ../../htdocs/rename_form.php:27 msgid "Rename Entry" msgstr "Zmień nazwę wpisu" @@ -1345,11 +1360,11 @@ msgstr "Modyfikacja zakończona pomyślnie!" msgid "Renaming..." msgstr "Zmiana nazwy..." -#: ../../lib/page.php:140 +#: ../../lib/functions.php:284 msgid "Report a bug" msgstr "Zgłoś błąd" -#: ../../lib/page.php:134 +#: ../../lib/functions.php:282 msgid "Request feature" msgstr "Zgłoś zapotrzebowanie" @@ -1358,7 +1373,7 @@ msgstr "Zgłoś zapotrzebowanie" msgid "Required Attributes" msgstr "Wymagane atrybuty" -#: ../../htdocs/compare.php:171 ../../lib/EntryWriter1.php:1922 +#: ../../htdocs/compare.php:169 ../../lib/EntryWriter1.php:1935 #, php-format msgid "Required attribute for objectClass(es) %s" msgstr "Atrybut wymagany dla klas(y) obiektu %s" @@ -1371,8 +1386,8 @@ msgstr "Pobieranie DN" msgid "Save" msgstr "Zapisz" -#: ../../htdocs/compare.php:554 ../../lib/EntryWriter1.php:847 -#: ../../lib/EntryWriter2.php:117 +#: ../../htdocs/compare.php:552 ../../lib/EntryWriter2.php:117 +#: ../../lib/EntryWriter1.php:847 msgid "Save Changes" msgstr "Zapisz zmiany" @@ -1401,13 +1416,13 @@ msgstr "Schemat dla serwera" msgid "Search" msgstr "Szukaj" -#: ../../htdocs/export_form.php:72 ../../lib/export_functions.php:198 -#: ../../lib/search_form_advanced.php:97 +#: ../../htdocs/export_form.php:72 ../../lib/search_form_advanced.php:97 +#: ../../lib/export_functions.php:198 msgid "Search Filter" msgstr "Filtr wyszukiwania" -#: ../../htdocs/export_form.php:59 ../../lib/export_functions.php:197 -#: ../../lib/search_form_advanced.php:79 +#: ../../htdocs/export_form.php:59 ../../lib/search_form_advanced.php:79 +#: ../../lib/export_functions.php:197 msgid "Search Scope" msgstr "Zakres przeszukiwania" @@ -1436,7 +1451,7 @@ msgstr "Wybierz predefiniowane wyszukiwanie" msgid "Select a template for the creation process" msgstr "Wybierz szablon dla procesu tworzenia" -#: ../../lib/EntryWriter1.php:1233 +#: ../../lib/EntryWriter1.php:1235 msgid "Select a template to edit the entry" msgstr "Wybierz szablon do edycji wpisu" @@ -1444,21 +1459,21 @@ msgstr "Wybierz szablon do edycji wpisu" msgid "Select an LDIF file" msgstr "Wybierz plik LDIF" -#: ../../htdocs/modify_member_form.php:72 ../../htdocs/rename_form.php:29 -#: ../../htdocs/entry_chooser.php:32 ../../htdocs/entry_chooser.php:98 -#: ../../htdocs/ldif_import_form.php:22 ../../htdocs/add_attr_form.php:25 +#: ../../htdocs/add_value_form.php:100 ../../htdocs/rename_form.php:29 +#: ../../htdocs/compare.php:56 ../../htdocs/compare.php:59 #: ../../htdocs/delete_form.php:29 ../../htdocs/delete_form.php:105 -#: ../../htdocs/compare.php:58 ../../htdocs/compare.php:61 -#: ../../htdocs/copy_form.php:46 ../../htdocs/ldif_import.php:53 -#: ../../htdocs/add_value_form.php:100 ../../htdocs/compare_form.php:22 -#: ../../htdocs/export_form.php:49 ../../lib/export_functions.php:196 -#: ../../lib/HTMLTree.php:151 ../../lib/EntryWriter1.php:247 -#: ../../lib/EntryWriter1.php:506 ../../lib/EntryWriter1.php:1019 +#: ../../htdocs/add_attr_form.php:25 ../../htdocs/compare_form.php:22 +#: ../../htdocs/modify_member_form.php:72 ../../htdocs/copy_form.php:46 +#: ../../htdocs/ldif_import.php:53 ../../htdocs/ldif_import_form.php:22 +#: ../../htdocs/entry_chooser.php:32 ../../htdocs/entry_chooser.php:98 +#: ../../htdocs/export_form.php:49 ../../lib/HTMLTree.php:151 #: ../../lib/search_form_advanced.php:60 ../../lib/search_form_simple.php:50 +#: ../../lib/export_functions.php:196 ../../lib/EntryWriter1.php:247 +#: ../../lib/EntryWriter1.php:506 ../../lib/EntryWriter1.php:1019 msgid "Server" msgstr "Serwer" -#: ../../lib/page.php:184 +#: ../../lib/page.php:199 msgid "Server Select" msgstr "Wybierz serwer" @@ -1478,7 +1493,7 @@ msgstr "Pokaż" msgid "Show Attributtes" msgstr "Pokaż atrybuty" -#: ../../lib/page.php:152 +#: ../../lib/functions.php:288 msgid "Show Cache" msgstr "Wyświetl cache" @@ -1516,7 +1531,7 @@ msgstr "Pomiń" msgid "Some attributes (%s) were modified and are highlighted below." msgstr "Niektóre atrybuty (%s) zostały zmodyfikowane i są wyróżnione poniżej." -#: ../../htdocs/login.php:115 +#: ../../htdocs/login.php:117 msgid "Sorry, you are not allowed to use phpLDAPadmin with this LDAP server." msgstr "" "Przykro mi, ale nie masz uprawnień aby korzystać z phpLDAPadmin na tym " @@ -1548,9 +1563,9 @@ msgstr "Sub (całe poddrzewo)" msgid "Substring Rule" msgstr "Reguła podciągu (Substring Rule)" -#: ../../htdocs/mass_delete.php:69 ../../htdocs/ldif_import.php:114 -#: ../../htdocs/ldif_import.php:136 ../../htdocs/rdelete.php:59 -#: ../../htdocs/rdelete.php:76 ../../htdocs/copy.php:64 +#: ../../htdocs/rdelete.php:59 ../../htdocs/rdelete.php:76 +#: ../../htdocs/copy.php:64 ../../htdocs/mass_delete.php:69 +#: ../../htdocs/ldif_import.php:114 ../../htdocs/ldif_import.php:136 msgid "Success" msgstr "Sukces" @@ -1558,15 +1573,15 @@ msgstr "Sukces" msgid "Successfully deleted DN " msgstr "Pomyślnie usunięto DN" -#: ../../htdocs/login.php:162 +#: ../../htdocs/login.php:164 msgid "Successfully logged into server." msgstr "Pomyślnie zalogowano do serwera." -#: ../../htdocs/compare.php:72 +#: ../../htdocs/compare.php:70 msgid "Switch Entry" msgstr "Zamień wpisy" -#: ../../htdocs/schema.php:102 ../../htdocs/add_value_form.php:233 +#: ../../htdocs/add_value_form.php:233 ../../htdocs/schema.php:102 msgid "Syntax" msgstr "Składnia" @@ -1574,7 +1589,11 @@ msgstr "Składnia" msgid "Syntax OID" msgstr "OID składni" -#: ../../lib/EntryWriter1.php:1022 ../../lib/EntryWriter1.php:1244 +#: ../../htdocs/schema.php:43 +msgid "Syntaxes" +msgstr "Składnie" + +#: ../../lib/EntryWriter1.php:1022 ../../lib/EntryWriter1.php:1246 msgid "Templates" msgstr "Szablony" @@ -1583,8 +1602,8 @@ msgstr "Szablony" msgid "The Rdn attribute (%s) does not exist." msgstr "Atrybut Rdn (%s) nie istnieje." -#: ../../htdocs/update.php:103 ../../htdocs/add_value.php:37 -#: ../../htdocs/delete_attr.php:34 +#: ../../htdocs/delete_attr.php:34 ../../htdocs/add_value.php:37 +#: ../../htdocs/update.php:103 #, php-format msgid "" "The attribute \"%s\" is flagged as read-only in the phpLDAPadmin " @@ -1627,7 +1646,7 @@ msgstr "Kontener który określiłeś/aś (%s) nie istnieje." msgid "The container you specified (%s) does not exist. Please try again." msgstr "Kontener który określiłeś/aś (%s) nie istnieje. Spróbuj ponownie." -#: ../../htdocs/update_confirm.php:321 +#: ../../htdocs/update_confirm.php:315 msgid "The deletion of objectClass(es)" msgstr "Usuwanie klas/y obiektu/ów" @@ -1641,12 +1660,12 @@ msgstr "Docelowy kontener (%s) nie istnieje." msgid "The destination entry (%s) already exists." msgstr "Docelowy wpis (%s) już istnieje." -#: ../../htdocs/add_value_form.php:37 ../../htdocs/update_confirm.php:29 +#: ../../htdocs/update_confirm.php:29 ../../htdocs/add_value_form.php:37 #, php-format msgid "The entry (%s) does not exist." msgstr "Wpis (%s) nie istnieje" -#: ../../htdocs/add_value_form.php:55 ../../htdocs/update_confirm.php:43 +#: ../../htdocs/update_confirm.php:43 ../../htdocs/add_value_form.php:55 #, php-format msgid "The entry (%s) is in readonly mode." msgstr "Wpis (%s) jest w trybie tylko-do-odczytu." @@ -1707,7 +1726,7 @@ msgstr "Wartość url atrybutu powinna zaczynać się od file:///" msgid "There are" msgstr "Tutaj są" -#: ../../lib/functions.php:535 +#: ../../lib/functions.php:1140 msgid "There is more than one dn for uidpool,please change filter parameter" msgstr "Jest więcej niż jedna dn dla uidpool, proszę zmienić parametry filtra" @@ -1715,8 +1734,8 @@ msgstr "Jest więcej niż jedna dn dla uidpool, proszę zmienić parametry filtr msgid "This action requires you to add" msgstr "Ta akcja wymaga, abyś dodał/a" -#: ../../htdocs/compare.php:181 ../../lib/EntryWriter1.php:1499 -#: ../../lib/EntryWriter2.php:210 +#: ../../htdocs/compare.php:179 ../../lib/EntryWriter2.php:210 +#: ../../lib/EntryWriter1.php:1500 msgid "" "This attribute has been flagged as read only by the phpLDAPadmin " "administrator" @@ -1724,11 +1743,11 @@ msgstr "" "Ten atrybut został oznaczony przez administratora phpLDAPadmin jako tylko-do-" "odczytu" -#: ../../lib/EntryWriter1.php:1413 +#: ../../lib/EntryWriter1.php:1415 msgid "This attribute is required" msgstr "Ten atrybut jest wymagany" -#: ../../lib/EntryWriter1.php:1931 +#: ../../lib/EntryWriter1.php:1944 msgid "This attribute is required for the RDN." msgstr "Ten atrybut jest wymagany dla RDN" @@ -1745,7 +1764,7 @@ msgstr "" msgid "This entry does not exist." msgstr "Ten wpis nie istnieje" -#: ../../htdocs/compare.php:79 +#: ../../htdocs/compare.php:77 msgid "This entry has no attributes" msgstr "Ten wpis nie posiada atrybutów" @@ -1754,7 +1773,7 @@ msgstr "Ten wpis nie posiada atrybutów" msgid "This entry is the root of a sub-tree containing %s entries." msgstr "Ten wpis jest korzeniem poddrzewa zawierającego %s wpisów." -#: ../../htdocs/compare.php:438 ../../lib/EntryWriter1.php:2269 +#: ../../htdocs/compare.php:436 ../../lib/EntryWriter1.php:2282 #, php-format msgid "This is a structural ObjectClass and cannot be removed." msgstr "To jest strukturalna klasa obiektu i nie może zostać usunięta." @@ -1767,18 +1786,18 @@ msgstr "To nie jest prawidłowa DN." msgid "This objectClass is obsolete." msgstr "Ta klasa obiektu jest przestarzała" -#: ../../htdocs/purge_cache.php:13 ../../htdocs/refresh.php:17 -#: ../../htdocs/search.php:120 ../../htdocs/search.php:124 -#: ../../htdocs/search.php:128 ../../htdocs/schema.php:20 -#: ../../htdocs/delete.php:21 ../../htdocs/update.php:61 -#: ../../htdocs/update.php:67 ../../htdocs/update.php:80 -#: ../../htdocs/create.php:25 ../../htdocs/add_value.php:24 -#: ../../htdocs/export.php:18 ../../htdocs/delete_attr.php:21 -#: ../../htdocs/mass_delete.php:26 ../../htdocs/add_attr.php:25 -#: ../../htdocs/ldif_import.php:19 ../../htdocs/add_value_form.php:76 +#: ../../htdocs/purge_cache.php:13 ../../htdocs/add_value_form.php:76 #: ../../htdocs/add_value_form.php:78 ../../htdocs/rename.php:24 -#: ../../htdocs/rdelete.php:21 ../../htdocs/server_info.php:16 -#: ../../htdocs/copy.php:20 +#: ../../htdocs/export.php:18 ../../htdocs/rdelete.php:21 +#: ../../htdocs/add_attr.php:25 ../../htdocs/copy.php:20 +#: ../../htdocs/mass_delete.php:26 ../../htdocs/delete.php:21 +#: ../../htdocs/schema.php:20 ../../htdocs/search.php:120 +#: ../../htdocs/search.php:124 ../../htdocs/search.php:128 +#: ../../htdocs/delete_attr.php:21 ../../htdocs/add_value.php:24 +#: ../../htdocs/ldif_import.php:19 ../../htdocs/create.php:25 +#: ../../htdocs/refresh.php:17 ../../htdocs/server_info.php:16 +#: ../../htdocs/update.php:61 ../../htdocs/update.php:67 +#: ../../htdocs/update.php:80 msgid "This operation is not permitted by the configuration" msgstr "Ta operacja nie jest dozwolona przez konfigurację" @@ -1798,7 +1817,7 @@ msgstr "To połączenie nie jest szyfrowane" msgid "To" msgstr "Do" -#: ../../htdocs/timeout.php:34 +#: ../../htdocs/timeout.php:36 msgid "To log back in please click on the following link:" msgstr "Aby się zalogować ponownie kliknij w następujący link:" @@ -1814,15 +1833,15 @@ msgstr "Kosz" msgid "Type" msgstr "Typ" -#: ../../lib/EntryWriter1.php:1859 +#: ../../lib/EntryWriter1.php:1872 msgid "URL" msgstr "URL" -#: ../../lib/functions.php:532 +#: ../../lib/functions.php:1137 msgid "Uidpool dn not found, please change filter parameter" msgstr "Uidpool dn nie znaleziona, proszę zmienić parametry filtra" -#: ../../lib/functions.php:453 ../../lib/functions.php:517 +#: ../../lib/functions.php:1058 ../../lib/functions.php:1122 #, php-format msgid "" "Unable to bind to %s with your with auto_uid credentials. Please " @@ -1831,7 +1850,7 @@ msgstr "" "Nie można podłączyć do %s z podaną tożsamością auto_uid. Proszę " "sprawdzić swój plik konfiguracyjny." -#: ../../lib/server_functions.php:2766 +#: ../../lib/server_functions.php:2734 #, php-format msgid "" "Unable to bind to %s with your with unique_attrs credentials. Please " @@ -1852,9 +1871,9 @@ msgstr "Nie można otworzyć pliku" msgid "Unable to read file" msgstr "Nie możńa odczytać pliku" -#: ../../htdocs/login_form.php:17 ../../htdocs/logout.php:30 -#: ../../lib/server_functions.php:1981 ../../lib/server_functions.php:2053 -#: ../../lib/server_functions.php:2347 ../../lib/server_functions.php:2463 +#: ../../htdocs/logout.php:30 ../../htdocs/login_form.php:17 +#: ../../lib/server_functions.php:1973 ../../lib/server_functions.php:2045 +#: ../../lib/server_functions.php:2339 ../../lib/server_functions.php:2450 #, php-format msgid "Unknown auth_type: %s" msgstr "Nieznany auth_type: %s" @@ -1863,7 +1882,7 @@ msgstr "Nieznany auth_type: %s" msgid "Unrecognized criteria option: " msgstr "Nierozpoznane kryterium opcji: " -#: ../../lib/functions.php:1234 +#: ../../lib/functions.php:1777 msgid "Unrecognized error number" msgstr "Nierozpoznany błąd numer" @@ -1884,7 +1903,7 @@ msgstr "Wgrany plik LDIF jest pusty." msgid "Usage" msgstr "Użycie" -#: ../../htdocs/welcome.php:20 +#: ../../htdocs/welcome.php:18 msgid "Use the menu to the left to navigate" msgstr "Użyj menu z lewej strony do nawigacji" @@ -1917,7 +1936,7 @@ msgstr "Pokaż schemat dla" msgid "View server-supplied information" msgstr "Pokaż informacje o serwerze" -#: ../../htdocs/compare.php:433 ../../lib/EntryWriter1.php:2281 +#: ../../htdocs/compare.php:431 ../../lib/EntryWriter1.php:2294 msgid "View the schema description for this objectClass" msgstr "Pokaż opis schematu dla tej klasy obiektu" @@ -1925,7 +1944,17 @@ msgstr "Pokaż opis schematu dla tej klasy obiektu" msgid "Viewing entry in read-only mode." msgstr "Oglądanie wpisu w trybie tylko-do-odczytu." -#: ../../htdocs/login_form.php:28 +#: ../../lib/page.php:62 +msgid "" +"WARNING: You cannot have PHP compression and phpLDAPadmin compression " +"enabled at the same time. Please unset zlib.output_compression or set " +"$config->custom->appearance['compress']=false" +msgstr "" +"UWAGA: Nie możesz mieć włączonej kompresji w PHP i w phpLDAPadmin w tym " +"samym czasie. Proszę wyłączyć zlib.output_compression lub ustawić $config-" +">custom->appearance['compress']=false" + +#: ../../htdocs/login_form.php:28 ../../lib/page.php:62 msgid "Warning" msgstr "Ostrzeżenie" @@ -1934,7 +1963,8 @@ msgid "" "When performing a recursive copy, only copy those entries which match this " "filter" msgstr "" -"Podczas rekursywnego kopiowania, kopiowane są tylko wpisy pasujące do tego filtra" +"Podczas rekursywnego kopiowania, kopiowane są tylko wpisy pasujące do tego " +"filtra" #: ../../htdocs/schema.php:165 ../../htdocs/schema.php:222 #: ../../htdocs/schema.php:226 ../../htdocs/schema.php:230 @@ -1953,16 +1983,16 @@ msgstr "" "Nie używasz 'https'. Przeglądarka będzie transmitować informację logowania " "czystym tekstem (clear text)." -#: ../../htdocs/modify_member_form.php:21 ../../htdocs/rename_form.php:20 -#: ../../htdocs/ldif_import_form.php:19 ../../htdocs/delete.php:18 -#: ../../htdocs/add_attr_form.php:18 ../../htdocs/update.php:39 -#: ../../htdocs/add_oclass.php:23 ../../htdocs/delete_form.php:19 -#: ../../htdocs/create.php:22 ../../htdocs/add_value.php:21 -#: ../../htdocs/delete_attr.php:18 ../../htdocs/copy_form.php:18 -#: ../../htdocs/add_attr.php:22 ../../htdocs/add_oclass_form.php:27 +#: ../../htdocs/template_engine.php:54 ../../htdocs/update_confirm.php:19 #: ../../htdocs/add_value_form.php:16 ../../htdocs/rename.php:21 -#: ../../htdocs/update_confirm.php:19 ../../htdocs/download_binary_attr.php:15 -#: ../../htdocs/rdelete.php:18 ../../htdocs/template_engine.php:54 +#: ../../htdocs/rdelete.php:18 ../../htdocs/rename_form.php:20 +#: ../../htdocs/add_oclass_form.php:27 ../../htdocs/add_attr.php:22 +#: ../../htdocs/add_oclass.php:23 ../../htdocs/delete_form.php:19 +#: ../../htdocs/add_attr_form.php:18 ../../htdocs/delete.php:18 +#: ../../htdocs/delete_attr.php:18 ../../htdocs/modify_member_form.php:21 +#: ../../htdocs/copy_form.php:18 ../../htdocs/add_value.php:21 +#: ../../htdocs/ldif_import_form.php:19 ../../htdocs/create.php:22 +#: ../../htdocs/download_binary_attr.php:15 ../../htdocs/update.php:39 msgid "You cannot perform updates while server is in read-only mode" msgstr "" "Nie możesz wykonać modyfikacji dopóki serwer jest w trybie tylko-do-odczytu" @@ -1994,7 +2024,7 @@ msgstr "Nie wybrano żadnegych wpisów do usunięcia." msgid "You did not select any objectClasses for this object." msgstr "Nie wybrałeś/aś żadnych Klas Obiektu dla tego obiektu." -#: ../../lib/functions.php:1254 +#: ../../lib/functions.php:1797 msgid "You found a non-fatal phpLDAPadmin bug!" msgstr "Znalazłeś/aś niekrytyczny błąd w phpLDAPadmin !" @@ -2006,7 +2036,7 @@ msgstr "" "Nie zalogowałeś/aś się jeszcze do wybranego serwera, więc nie możesz go " "przeszukiwać." -#: ../../lib/EntryReader.php:353 +#: ../../lib/EntryReader.php:360 ../../lib/EntryReader.php:382 msgid "You have specified two different passwords" msgstr "Podano dwa różne hasła" @@ -2023,7 +2053,7 @@ msgstr "" msgid "You left the destination DN blank." msgstr "Nie wypełniono docelowej DN." -#: ../../htdocs/login.php:28 +#: ../../htdocs/login.php:27 msgid "You left the password blank." msgstr "Pozostawiono puste hasło." @@ -2032,7 +2062,7 @@ msgstr "Pozostawiono puste hasło." msgid "You left the value blank for required attribute (%s)." msgstr "Brak wartości dla wymaganego atrybutu (%s)." -#: ../../htdocs/update_confirm.php:346 +#: ../../htdocs/update_confirm.php:335 msgid "You made no changes" msgstr "Nie dokonano żadnych zmian" @@ -2044,27 +2074,27 @@ msgstr "Musisz wybrać format eksportu." msgid "You must either upload a file or provide an LDIF in the text box." msgstr "Musisz załadować plik lub wprowadzić LDIF w polu tekstowym." -#: ../../htdocs/delete.php:26 ../../htdocs/rdelete.php:25 +#: ../../htdocs/rdelete.php:25 ../../htdocs/delete.php:26 msgid "You must specify a DN" msgstr "Musisz określić DN" -#: ../../htdocs/compare.php:530 +#: ../../htdocs/compare.php:528 #, php-format msgid "You need one of the following ObjectClass(es) to add this attribute %s." msgstr "" "Musisz posiadać jedną z następujących klas obiektów, aby dodać ten atrybut %" "s " -#: ../../htdocs/index.php:77 +#: ../../htdocs/index.php:85 #, php-format msgid "" -"You need to configure phpLDAPadmin. Edit the file \"%s\" to do so. An " -"example config file is provided in \"%s.example\"." +"You need to configure %s. Edit the file \"%s\" to do so. An example config " +"file is provided in \"%s.example\"." msgstr "" -"Musisz skonfigurować phpLDAPadmin. Wyedytuj plik \"%s\" aby to zrobić. " -"Przykład pliku konfiguracji znajduje się w \"%s.example\"." +"Musisz skonfigurować %s. Wyedytuj plik \"%s\" aby to zrobić. Przykład pliku " +"konfiguracji znajduje się w \"%s.example\"." -#: ../../lib/functions.php:565 +#: ../../lib/functions.php:1170 #, php-format msgid "" "You specified an invalid value for auto_uid_number_mechanism (\"%s\")\n" @@ -2075,7 +2105,7 @@ msgstr "" "\t\t\t\tw konfiguracji. Tylko \"uidpool\" i \"search\" są poprawne.\n" "\t\t\t\tProszę skorygować ten problem." -#: ../../lib/functions.php:432 +#: ../../lib/functions.php:1037 #, php-format msgid "" "You specified the \"auto_uid_number_mechanism\" as \"search\" in your\n" @@ -2099,25 +2129,25 @@ msgstr "" "Twoja konfiguracja PHP uniemożliwia załadowanie plików. Proszę sprawdzić php." "ini przed kontynuacją." -#: ../../lib/functions.php:1464 ../../lib/functions.php:1475 -#: ../../lib/functions.php:1486 ../../lib/functions.php:1533 -#: ../../lib/functions.php:1551 +#: ../../lib/functions.php:1988 ../../lib/functions.php:1999 +#: ../../lib/functions.php:2010 ../../lib/functions.php:2058 +#: ../../lib/functions.php:2076 msgid "" "Your PHP install does not have the mhash() function. Cannot do SHA hashes." msgstr "" "Twoja instalacja PHP nie posiada funkcji mhash(). Nie mogę tworzyć haszy SHA." -#: ../../lib/server_functions.php:280 +#: ../../lib/server_functions.php:262 msgid "Your PHP install does not support TLS." msgstr "Twoja instalacja PHP nie wspiera TLS." -#: ../../lib/server_functions.php:295 +#: ../../lib/server_functions.php:277 msgid "" "Your PHP installation does not support ldap_sasl_bind() function. This " "function is present in PHP 5.x when compiled with --with-ldap-sasl." -msgstr "Twoja instalacja PHP nie wspiera funkcji ldap_sasl_bind(). " -"Ta funkcja jest obecna w PHP 5.x jeśli skompilowane jest z opcją " -"--with-ldap-sasl." +msgstr "" +"Twoja instalacja PHP nie wspiera funkcji ldap_sasl_bind(). Ta funkcja jest " +"obecna w PHP 5.x jeśli skompilowane jest z opcją --with-ldap-sasl." #: ../../htdocs/ldif_import_form.php:16 msgid "" @@ -2127,7 +2157,7 @@ msgstr "" "Twój plik konfiguracyjny PHP.INI nie zawiera file_uploads = ON. Proszę " "włączyć wgrywanie plików w konfiguracji PHP." -#: ../../htdocs/timeout.php:31 +#: ../../htdocs/timeout.php:33 msgid "Your Session timed out after" msgstr "Twoja sesja wygaśnie po" @@ -2139,10 +2169,11 @@ msgid "" "search for that entry." msgstr "" "Próba dodania %s (%s) do
%s
jest NIEDOZWOLONA. " -"Ten atrybut/wartość należy do innego wpisu.

Jeśli chcesz, możesz poszukać tego wpisu." +"Ten atrybut/wartość należy do innego wpisu.

Jeśli chcesz, możesz poszukać tego wpisu." -#: ../../htdocs/add_oclass.php:45 ../../htdocs/create.php:86 -#: ../../htdocs/add_value.php:59 ../../htdocs/add_attr.php:51 +#: ../../htdocs/add_attr.php:51 ../../htdocs/add_oclass.php:45 +#: ../../htdocs/add_value.php:59 ../../htdocs/create.php:86 #, php-format msgid "" "Your attempt to add %s (%s) to
%s
is NOT " @@ -2153,20 +2184,11 @@ msgstr "" "Ten atrybut/wartość należy do innego wpisu.

Jeśli chcesz, możesz poszukać tego wpisu." -#: ../../lib/functions.php:2195 -#, php-format -msgid "" -"Your config.php specifies an invalid value for $default_search_display: %s. " -"Please fix it" -msgstr "" -"W Twojej konfiguracji (config.php) określona jest nieprawidłowa wartość dla " -"$default_search_display: %s. Proszę to poprawić" - -#: ../../lib/common.php:124 +#: ../../lib/session_functions.php:139 msgid "Your configuration has been automatically refreshed." msgstr "Konfiguracja została automatycznie odświeżona." -#: ../../lib/functions.php:441 +#: ../../lib/functions.php:1046 #, php-format msgid "" "Your phpLDAPadmin configuration specifies an invalid auto_uid_search_base " @@ -2175,34 +2197,35 @@ msgstr "" "W Twojej konfiguracji phpLDAPadmin określona jest nieprawidłowa wartość " "auto_uid_search_base dla serwera %s" -#: ../../lib/functions.php:1445 ../../lib/functions.php:1578 +#: ../../lib/functions.php:1969 ../../lib/functions.php:2103 msgid "Your system crypt library does not support blowfish encryption." msgstr "Twoja systemowa biblioteka crypt nie wspiera szyfrowania blowfish." -#: ../../lib/functions.php:1431 ../../lib/functions.php:1608 +#: ../../lib/functions.php:1955 ../../lib/functions.php:2133 msgid "Your system crypt library does not support extended DES encryption." msgstr "" "Twoja systemowa biblioteka crypt nie wspiera rozszerzonego szyfrowania DES" -#: ../../lib/functions.php:1438 ../../lib/functions.php:1593 +#: ../../lib/functions.php:1962 ../../lib/functions.php:2118 msgid "Your system crypt library does not support md5crypt encryption." msgstr "Twoja systemowa biblioteka crypt nie wspiera szyfrowania md5crypt." -#: ../../lib/template_functions.php:966 +#: ../../lib/template_functions.php:980 #, php-format msgid "" "Your template calls php.Function for a default value, however (%s) is NOT " "available in the POST FORM variables. The following variables are available " "[%s]." -msgstr "Twój szablon wywołuje funkcję php dla domyślnej wartości, jednak (%s) " -"NIE jest dozwolona w zmiennych POST FORM. Dozwolone są następujące zmienne [%s]." +msgstr "" +"Twój szablon wywołuje funkcję php dla domyślnej wartości, jednak (%s) NIE " +"jest dozwolona w zmiennych POST FORM. Dozwolone są następujące zmienne [%s]." -#: ../../lib/EntryReader.php:267 +#: ../../lib/EntryReader.php:274 #, php-format msgid "Your template has an unknown post function (%s)." msgstr "Twój szablon posiada nieznaną funkcję post (%s)." -#: ../../lib/EntryReader.php:203 +#: ../../lib/EntryReader.php:210 #, php-format msgid "Your template is missing variable (%s)" msgstr "Twój szablon nie posiada zmiennej (%s)" @@ -2211,24 +2234,24 @@ msgstr "Twój szablon nie posiada zmiennej (%s)" msgid "Your version of PHP does not correctly perform the query." msgstr "Twoja wersja PHP niepoprawnie wykonuje zapytanie." -#: ../../htdocs/update_confirm.php:260 ../../htdocs/update_confirm.php:264 +#: ../../htdocs/update_confirm.php:254 ../../htdocs/update_confirm.php:258 msgid "[attribute deleted]" msgstr "[atrybut usunięty]" -#: ../../lib/EntryWriter1.php:1986 ../../lib/EntryWriter1.php:2195 +#: ../../lib/EntryWriter1.php:1999 ../../lib/EntryWriter1.php:2208 msgid "[no value]" msgstr "[brak wartości]" -#: ../../htdocs/add_attr.php:25 ../../htdocs/add_value_form.php:78 +#: ../../htdocs/add_value_form.php:78 ../../htdocs/add_attr.php:25 msgid "add attribute" msgstr "dodaj atrybut" -#: ../../htdocs/add_value.php:24 ../../htdocs/add_value_form.php:76 +#: ../../htdocs/add_value_form.php:76 ../../htdocs/add_value.php:24 msgid "add attribute value" msgstr "dodaj wartość atrybutu" -#: ../../htdocs/compare.php:528 ../../htdocs/compare.php:539 -#: ../../lib/EntryWriter1.php:1809 +#: ../../htdocs/compare.php:526 ../../htdocs/compare.php:537 +#: ../../lib/EntryWriter1.php:1822 msgid "add value" msgstr "dodaj wartość" @@ -2236,19 +2259,23 @@ msgstr "dodaj wartość" msgid "advanced search" msgstr "wyszukiwanie zaawansowane" -#: ../../lib/functions.php:1758 +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1899 +msgid "alias" +msgstr "alias" + +#: ../../lib/functions.php:2243 msgid "browse" msgstr "przeglądaj" -#: ../../lib/page.php:140 +#: ../../lib/functions.php:284 msgid "bug" msgstr "błąd (bug)" -#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:1378 +#: ../../htdocs/ldif_import.php:54 ../../lib/functions.php:1901 msgid "bytes" msgstr "bajtów" -#: ../../lib/functions.php:1243 +#: ../../lib/functions.php:1786 msgid "caller" msgstr "wywołujący" @@ -2256,11 +2283,11 @@ msgstr "wywołujący" msgid "character" msgstr "znak" -#: ../../htdocs/schema.php:245 ../../htdocs/add_value_form.php:237 +#: ../../htdocs/add_value_form.php:237 ../../htdocs/schema.php:245 msgid "characters" msgstr "znaki/ów" -#: ../../lib/EntryWriter1.php:2366 +#: ../../lib/EntryWriter1.php:2379 msgid "confirm" msgstr "potwierdź" @@ -2272,12 +2299,12 @@ msgstr "kopiuj wpis" msgid "create entry" msgstr "utwórz wpis" -#: ../../htdocs/update.php:61 ../../htdocs/compare.php:289 -#: ../../htdocs/delete_attr.php:21 ../../lib/EntryWriter1.php:1982 +#: ../../htdocs/compare.php:287 ../../htdocs/delete_attr.php:21 +#: ../../htdocs/update.php:61 ../../lib/EntryWriter1.php:1995 msgid "delete attribute" msgstr "usuń atrybut" -#: ../../htdocs/delete.php:21 ../../htdocs/rdelete.php:21 +#: ../../htdocs/rdelete.php:21 ../../htdocs/delete.php:21 msgid "delete entry" msgstr "usuń wpis" @@ -2285,12 +2312,12 @@ msgstr "usuń wpis" msgid "delete mass entries" msgstr "masowo usuń wpisy" -#: ../../htdocs/compare.php:280 ../../htdocs/compare.php:283 -#: ../../lib/EntryWriter1.php:1971 ../../lib/EntryWriter1.php:1975 +#: ../../htdocs/compare.php:278 ../../htdocs/compare.php:281 +#: ../../lib/EntryWriter1.php:1984 ../../lib/EntryWriter1.php:1988 msgid "download value" msgstr "pobierz (download) wartość" -#: ../../htdocs/compare.php:312 +#: ../../htdocs/compare.php:310 msgid "empty" msgstr "pusty" @@ -2310,12 +2337,12 @@ msgstr "eksportuj" msgid "export results" msgstr "wyeksportuj wyniki" -#: ../../htdocs/compare.php:402 ../../lib/AttributeFactory.php:36 +#: ../../htdocs/compare.php:400 ../../lib/AttributeFactory.php:39 msgid "false" msgstr "fałsz" -#: ../../htdocs/create.php:114 ../../htdocs/copy.php:76 -#: ../../htdocs/copy.php:106 +#: ../../htdocs/copy.php:76 ../../htdocs/copy.php:106 +#: ../../htdocs/create.php:114 msgid "has been created." msgstr "zastał utworzony." @@ -2327,23 +2354,27 @@ msgstr "import" msgid "info" msgstr "info" -#: ../../lib/functions.php:1347 +#: ../../htdocs/compare.php:121 ../../lib/EntryWriter1.php:1899 +msgid "is an alias for" +msgstr "jest aliasem dla" + +#: ../../lib/functions.php:1870 msgid "jpegPhoto contains errors
" msgstr "jpegPhoto zawiera błędy
" -#: ../../lib/page.php:134 +#: ../../lib/functions.php:282 msgid "light" msgstr "żarówka" -#: ../../lib/functions.php:1243 +#: ../../lib/functions.php:1786 msgid "line" msgstr "linia" -#: ../../lib/HTMLTree.php:467 +#: ../../lib/HTMLTree.php:471 msgid "login" msgstr "login" -#: ../../lib/HTMLTree.php:267 ../../lib/HTMLTree.php:485 +#: ../../lib/HTMLTree.php:267 ../../lib/HTMLTree.php:489 msgid "logout" msgstr "wyloguj" @@ -2355,19 +2386,19 @@ msgstr "zmienna POST mass_delete nie jest w tablicą." msgid "members in group" msgstr "członkowie w grupie" -#: ../../htdocs/timeout.php:31 +#: ../../htdocs/timeout.php:33 msgid "min. of inactivity. You have been automatically logged out." -msgstr "min. nieaktywności. Zostaniesz automatycznie wylogowany/a." +msgstr "min. nieaktywności. Zostałeś/aś automatycznie wylogowany/a." #: ../../htdocs/update.php:67 ../../htdocs/update.php:80 msgid "modify attribute values" msgstr "modyfikacja wartości atrybutu" -#: ../../lib/EntryWriter1.php:1821 +#: ../../lib/EntryWriter1.php:1834 msgid "modify group members" msgstr "modyfikuj listę członków grupy" -#: ../../lib/HTMLTree.php:452 +#: ../../lib/HTMLTree.php:456 msgid "new" msgstr "nowy" @@ -2379,7 +2410,7 @@ msgstr "nowe atrybuty" msgid "no description" msgstr "brak opisu" -#: ../../lib/functions.php:1131 +#: ../../lib/functions.php:1673 msgid "no description available" msgstr "brak opisu" @@ -2399,12 +2430,12 @@ msgstr "brak nowych atrybutów binarnych dla tego wpisu" #: ../../htdocs/schema.php:269 ../../htdocs/schema.php:343 #: ../../htdocs/schema.php:412 ../../htdocs/schema.php:432 #: ../../htdocs/schema.php:469 ../../htdocs/schema.php:492 -#: ../../lib/functions.php:2409 ../../lib/EntryWriter1.php:405 -#: ../../lib/EntryWriter1.php:418 +#: ../../lib/EntryWriter1.php:405 ../../lib/EntryWriter1.php:418 +#: ../../lib/functions.php:2788 msgid "none" msgstr "brak" -#: ../../htdocs/compare.php:403 ../../lib/EntryWriter1.php:2543 +#: ../../htdocs/compare.php:401 ../../lib/EntryWriter1.php:2556 msgid "none, remove value" msgstr "brak, usuń wartość" @@ -2432,7 +2463,7 @@ msgstr "" msgid "phpLDAPadmin doesn't know how to fetch the schema for your server." msgstr "phpLDAPadmin nie wie jak uzyskać schemat z Twojego serwera." -#: ../../htdocs/welcome.php:16 ../../htdocs/welcome.php:17 +#: ../../htdocs/welcome.php:16 msgid "phpLDAPadmin logo" msgstr "phpLDAPadmin logo" @@ -2444,8 +2475,8 @@ msgstr "predefiniowane wyszukiwania" msgid "purge" msgstr "wyczyść" -#: ../../htdocs/compare.php:181 ../../lib/HTMLTree.php:41 -#: ../../lib/EntryWriter1.php:1500 ../../lib/EntryWriter2.php:211 +#: ../../htdocs/compare.php:179 ../../lib/EntryWriter2.php:211 +#: ../../lib/HTMLTree.php:41 ../../lib/EntryWriter1.php:1501 msgid "read only" msgstr "tylko do odczytu" @@ -2457,7 +2488,7 @@ msgstr "odśwież" msgid "refresh server" msgstr "odśwież serwer" -#: ../../lib/EntryWriter1.php:1790 +#: ../../lib/EntryWriter1.php:1803 msgid "rename" msgstr "zmień nazwę" @@ -2465,7 +2496,7 @@ msgstr "zmień nazwę" msgid "rename entry" msgstr "zmień nazwę wpisu" -#: ../../htdocs/compare.php:171 ../../lib/EntryWriter1.php:1922 +#: ../../htdocs/compare.php:169 ../../lib/EntryWriter1.php:1935 msgid "required" msgstr "wymagane" @@ -2481,7 +2512,7 @@ msgstr "szukaj" msgid "seconds" msgstr "sekund(y)" -#: ../../lib/EntryWriter1.php:368 ../../lib/EntryWriter2.php:23 +#: ../../lib/EntryWriter2.php:23 ../../lib/EntryWriter1.php:368 msgid "select the rdn attribute" msgstr "wybierz atrybut rdn" @@ -2494,7 +2525,7 @@ msgstr "wyszukiwanie proste" msgid "step %s of %s" msgstr "krok %s z %s" -#: ../../htdocs/compare.php:438 ../../lib/EntryWriter1.php:2270 +#: ../../htdocs/compare.php:436 ../../lib/EntryWriter1.php:2283 msgid "structural" msgstr "strukturalna" @@ -2514,15 +2545,17 @@ msgstr "ten" msgid "to a new object" msgstr "do nowego obiektu" -#: ../../htdocs/compare.php:401 ../../lib/AttributeFactory.php:35 +#: ../../htdocs/compare.php:399 ../../lib/AttributeFactory.php:38 msgid "true" msgstr "prawda" -#: ../../lib/functions.php:544 +#: ../../lib/functions.php:1149 msgid "" "uidpool_dn not found. Please check filter (arg 3) or set up uidpool_dn in " "config file" -msgstr "nie znaleziono uidpool_dn. Proszę sprawdzić fitr (arg 3) lub ustawić uidpool_dn w pliku konfiguracyjnym" +msgstr "" +"nie znaleziono uidpool_dn. Proszę sprawdzić fitr (arg 3) lub ustawić " +"uidpool_dn w pliku konfiguracyjnym" #: ../../htdocs/update.php:46 msgid "" @@ -2552,7 +2585,7 @@ msgstr "pokaż schemat" msgid "view server informations" msgstr "pokaż informacje o serwerze" -#: ../../htdocs/update_confirm.php:326 +#: ../../htdocs/update_confirm.php:320 msgid "will delete the attribute(s)" msgstr "usunie atrybut/y" @@ -2560,3 +2593,12 @@ msgstr "usunie atrybut/y" msgid "with " msgstr "z" +#~ msgid "Login Name" +#~ msgstr "Nazwa użytkownika" + +#~ msgid "" +#~ "Your config.php specifies an invalid value for $default_search_display: %" +#~ "s. Please fix it" +#~ msgstr "" +#~ "W Twojej konfiguracji (config.php) określona jest nieprawidłowa wartość " +#~ "dla $default_search_display: %s. Proszę to poprawić"