translation update

This commit is contained in:
Roland Gruber 2011-08-09 17:09:39 +00:00
parent 7f4d464ea4
commit 16ca205148
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ if (! $request['container'] && ! get_request('create_base')) {
if (! count($request['template']->getRDNAttrs()))
error(_('The were no attributes marked as an RDN attribute.'),'error','index.php');
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...
foreach ($request['template']->getAttributes() as $attribute) {

View File

@ -64,7 +64,7 @@ echo '</span></td>';
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>';

View File

@ -127,7 +127,7 @@ class QueryRender extends PageRender {
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 '<select name="scope" style="width: 200px">';

View File

@ -509,7 +509,7 @@ class ImportLDIF extends Import {
if ($key = array_search($attribute_value_part,$attribute->getValues()))
$attribute->delValue($key);
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));