|
Lines 248-256
class ObjectDoesNotExists(UMCError):
Link Here
|
| 248 |
def _error_msg(self): |
248 |
def _error_msg(self): |
| 249 |
if self._ldap_object_exists(): |
249 |
if self._ldap_object_exists(): |
| 250 |
yield _('Could not identify the LDAP object type for %s.') % (self.ldap_dn,) |
250 |
yield _('Could not identify the LDAP object type for %s.') % (self.ldap_dn,) |
| 251 |
yield _('If the problem persists please try to re-login into Univention Management Console.') |
251 |
yield _('If the problem persists please try to relogin into Univention Management Console.') |
| 252 |
else: |
252 |
else: |
| 253 |
yield _('LDAP object %s could not be opened.') % (self.ldap_dn,) |
253 |
yield _('LDAP object %s could not be found.') % (self.ldap_dn,) |
| 254 |
yield _('It possibly has been deleted or moved. Please update your search results and open the object again.') |
254 |
yield _('It possibly has been deleted or moved. Please update your search results and open the object again.') |
| 255 |
|
255 |
|
| 256 |
|
256 |
|
|
Lines 258-267
class SuperordinateDoesNotExists(ObjectDoesNotExists):
Link Here
|
| 258 |
|
258 |
|
| 259 |
def _error_msg(self): |
259 |
def _error_msg(self): |
| 260 |
if self._ldap_object_exists(): |
260 |
if self._ldap_object_exists(): |
| 261 |
yield _('Could not identify the superordinate %s') % (self.ldap_dn,) |
261 |
yield _('Could not identify the superordinate %s.') % (self.ldap_dn,) |
| 262 |
yield _('If the problem persists please try to re-login into Univention Management Console.') |
262 |
yield _('If the problem persists please try to relogin into Univention Management Console.') |
| 263 |
else: |
263 |
else: |
| 264 |
yield _('Superordinate %s could not be opened.') % (self.ldap_dn,) |
264 |
yield _('Superordinate %s could not be found.') % (self.ldap_dn,) |
| 265 |
yield _('It possibly has been deleted or moved. Please update your search results and open the object again.') |
265 |
yield _('It possibly has been deleted or moved. Please update your search results and open the object again.') |
| 266 |
|
266 |
|
| 267 |
|
267 |
|