summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 589fa51)
raw | patch | inline | side by side (parent: 589fa51)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 12 May 2005 07:43:47 +0000 (07:43 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 12 May 2005 07:43:47 +0000 (07:43 +0000) |
include/functions.inc | patch | blob | history |
diff --git a/include/functions.inc b/include/functions.inc
index 293f7c9f65dd1770039196b1f2a7541d4becc26a..45564fb24ef2e7b5b3ad40e476ada54dc4f05449 100644 (file)
--- a/include/functions.inc
+++ b/include/functions.inc
/* 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));
}
}