From cd17dc27fbb05a2a48cba468fef64d7f69053bb8 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Fri, 3 May 2002 11:20:19 +0000 Subject: [PATCH] Variable vlaues are not parsed into the string detector. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2800 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 19f9760f..5a092985 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -698,15 +698,15 @@ function mail_message_listing_beginning ($imapConnection, $moveURL, if ($allow_thread_sort == TRUE) { if ($thread_sort_messages == 1 ) { $set_thread = 2; - $thread_name = 'Unthread View'; + $thread_name = _("Unthread View"); } elseif ($thread_sort_messages == 0) { $set_thread = 1; - $thread_name = 'Thread View'; + $thread_name = _("Thread View"); } echo ' ' . _("$thread_name") + . '&mailbox=' . urlencode($mailbox) . '>' . $thread_name . ' '; } -- 2.25.1