From: cajus Date: Thu, 12 May 2005 07:43:47 +0000 (+0000) Subject: Added translations X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5a3494692c547ff250c297c566048bd6936a2c72;p=gosa.git Added translations git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@194 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index 293f7c9f6..45564fb24 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -1502,10 +1502,10 @@ function get_gosa_version() /* Release or development? */ if (preg_match('%/gosa/trunk/%', $svn_path)){ - return ("GOsa development snapshot (Rev $revision)"); + return (sprintf(_("GOsa development snapshot (Rev %s)"), $revision)); } else { $release= preg_replace('%^.*/([^/]+)/include/functions.inc.*$%', '\1', $svn_path); - return ("GOsa $release (Rev $revision)"); + return (sprintf(_("GOsa $release (Rev %s)"), $revision)); } }