From: hickert Date: Tue, 3 Jul 2007 09:32:22 +0000 (+0000) Subject: Fixed spelling X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=beefd725ba2f03255b3f6734f6c45c277373e066;p=gosa.git Fixed spelling git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6750 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_servDNSeditZone.inc b/plugins/admin/systems/class_servDNSeditZone.inc index e81cf6923..2bb3d47c3 100644 --- a/plugins/admin/systems/class_servDNSeditZone.inc +++ b/plugins/admin/systems/class_servDNSeditZone.inc @@ -441,19 +441,19 @@ class servdnseditZone extends plugin switch($this->NetworkClass){ case 'A': { if(!preg_match("/^[0-9]*\.0\.0\.0$/",$addr)){ - $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this was x.0.0.0")); + $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this way x.0.0.0")); } } break; case 'B': { if(!preg_match("/^[0-9]*\.[0-9]*\.0\.0$/",$addr)){ - $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this was x.x.0.0")); + $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this way x.x.0.0")); } } break; case 'C': { if(!preg_match("/^[0-9]*\.[0-9]*\.[0-9]*\.0$/",$addr)){ - $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this was x.x.x.0")); + $message[] = sprintf(_("The specified network address is not matching with the specified zone class, try it this way x.x.x.0")); } } break;