From 89ac34a4a6247d9cc428a37368502d323775a0a5 Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 10 May 2004 13:46:10 +0000 Subject: [PATCH] fixed untranslated string git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7421 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/vcard.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vcard.php b/src/vcard.php index 1fac0172..ecbaefd1 100644 --- a/src/vcard.php +++ b/src/vcard.php @@ -92,9 +92,9 @@ if ($vcard_nice['version'] == '2.1') { $vcard_nice['email;internet'] = $vcard_nice['email;pref;internet']; } } else { - echo 'vCard Version ' . $vcard_nice['version'] . - ' is not supported. Some information might not be converted ' . - "correctly.\n"; + echo '' . + sprintf(_("vCard Version %s is not supported. Some information might not be converted correctly."),$vcard_nice['version']) . + "\n"; } foreach ($vcard_nice as $k => $v) { -- 2.25.1