translation update
This commit is contained in:
parent
7f4d464ea4
commit
16ca205148
|
@ -41,7 +41,7 @@ if (! $request['container'] && ! get_request('create_base')) {
|
||||||
if (! count($request['template']->getRDNAttrs()))
|
if (! count($request['template']->getRDNAttrs()))
|
||||||
error(_('The were no attributes marked as an RDN attribute.'),'error','index.php');
|
error(_('The were no attributes marked as an RDN attribute.'),'error','index.php');
|
||||||
if (! $request['template']->getRDN())
|
if (! $request['template']->getRDN())
|
||||||
error(_('The RDN field is empty?'),'error','index.php');
|
error(_('The RDN field is empty.'),'error','index.php');
|
||||||
|
|
||||||
# Some other attribute checking...
|
# Some other attribute checking...
|
||||||
foreach ($request['template']->getAttributes() as $attribute) {
|
foreach ($request['template']->getAttributes() as $attribute) {
|
||||||
|
|
|
@ -64,7 +64,7 @@ echo '</span></td>';
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
|
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
printf('<td><span style="white-space: nowrap">%s</span></td>',_('Search Scope'));
|
printf('<td><span style="white-space: nowrap">%s</span></td>',_('Search scope'));
|
||||||
|
|
||||||
echo '<td>';
|
echo '<td>';
|
||||||
|
|
||||||
|
|
|
@ -127,7 +127,7 @@ class QueryRender extends PageRender {
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
|
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
printf('<td><acronym title="%s">%s</acronym></td>',_('The scope in which to search'),_('Search Scope'));
|
printf('<td><acronym title="%s">%s</acronym></td>',_('The scope in which to search'),_('Search scope'));
|
||||||
|
|
||||||
echo '<td>';
|
echo '<td>';
|
||||||
echo '<select name="scope" style="width: 200px">';
|
echo '<select name="scope" style="width: 200px">';
|
||||||
|
|
|
@ -509,7 +509,7 @@ class ImportLDIF extends Import {
|
||||||
if ($key = array_search($attribute_value_part,$attribute->getValues()))
|
if ($key = array_search($attribute_value_part,$attribute->getValues()))
|
||||||
$attribute->delValue($key);
|
$attribute->delValue($key);
|
||||||
else
|
else
|
||||||
return $this->error(sprintf('%s %s',_('Delete value doesnt exist in DN'),$attribute_value_part),
|
return $this->error(sprintf('%s %s',_('Value to delete does not exist in DN'),$attribute_value_part),
|
||||||
array_merge(array($currentLine),$lines));
|
array_merge(array($currentLine),$lines));
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue