Index: openacs-4/packages/dotlrn-forums/catalog/dotlrn-forums.en_US.ISO-8859-1.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-forums/catalog/dotlrn-forums.en_US.ISO-8859-1.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-forums/catalog/dotlrn-forums.en_US.ISO-8859-1.xml 11 Nov 2002 10:39:48 -0000 1.1 @@ -0,0 +1,15 @@ +<?xml version="1.0"?> +<!-- Generated by lang::catalog::export_package_to_files on 2002 November 11 13:08 --> +<message_catalog package_key="dotlrn-forums" locale="en_US" charset="ISO-8859-1"> + + <msg key="Forum">Forum</msg> + <msg key="No_Postings">No Postings.</msg> + <msg key="Posted">Posted</msg> + <msg key="Posting_History">Posting History</msg> + <msg key="Posting_history_for">Posting history for</msg> + <msg key="Subject">Subject</msg> + <msg key="View">View:</msg> + <msg key="by_Date">by Date</msg> + <msg key="by_Forum">by Forum</msg> + <msg key="lt_Forums_Posting_histor">Forums: Posting history for %user.full_name%</msg> +</message_catalog> Index: openacs-4/packages/dotlrn-forums/tcl/dotlrn-forums-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-forums/tcl/dotlrn-forums-procs.tcl,v diff -u -r1.9 -r1.10 --- openacs-4/packages/dotlrn-forums/tcl/dotlrn-forums-procs.tcl 9 Aug 2002 18:39:28 -0000 1.9 +++ openacs-4/packages/dotlrn-forums/tcl/dotlrn-forums-procs.tcl 11 Nov 2002 10:39:48 -0000 1.10 @@ -345,7 +345,7 @@ -community_id $community_id \ -applet_key [applet_key] \ ] - set name "$old_value Forum" + set name "$old_value [_ dotlrn-forums.Forum]" db_foreach select_forums_with_old_name { select * @@ -355,7 +355,7 @@ } { forum::edit \ -forum_id $forum_id \ - -name "$new_value Forum" \ + -name "$new_value [_ dotlrn-forums.Forum]" \ -charter $charter \ -presentation_type $presentation_type \ -posting_policy $posting_policy Index: openacs-4/packages/dotlrn-forums/www/user.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-forums/www/user.adp,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrn-forums/www/user.adp 9 Jul 2002 19:48:46 -0000 1.1 +++ openacs-4/packages/dotlrn-forums/www/user.adp 11 Nov 2002 10:39:48 -0000 1.2 @@ -1,9 +1,9 @@ <master> -<property name="title">Forums: Posting history for @user.full_name@</property> +<property name="title">#dotlrn-forums.lt_Forums_Posting_histor#</property> <property name="context_bar">@context_bar@</property> <p> - Posting history for + #dotlrn-forums.Posting_history_for# <b> <% if {![permission::permission_p -object_id [acs_magic_object security_context_root] -privilege admin]} { @@ -28,9 +28,9 @@ <table bgcolor="#cccccc" width="95%"> <tr> - <th align="left" width="30%">Forum</th> - <th align="left">Subject</th> - <th align="center" width="20%">Posted</th> + <th align="left" width="30%">#dotlrn-forums.Forum#</th> + <th align="left">#dotlrn-forums.Subject#</th> + <th align="center" width="20%">#dotlrn-forums.Posted#</th> </tr> <if @messages:rowcount@ gt 0> @@ -54,7 +54,7 @@ <else> <tr> <td colspan="3"> - <i>No Postings.</i> + <i>#dotlrn-forums.No_Postings#</i> </td> </tr> </else> @@ -74,8 +74,8 @@ </tr> <tr> - <th align="left">Subject</th> - <th align="center" width="20%">Posted</th> + <th align="left">#dotlrn-forums.Subject#</th> + <th align="center" width="20%">#dotlrn-forums.Posted#</th> </tr> <group column="forum_name"> @@ -102,3 +102,4 @@ </if> </center> + Index: openacs-4/packages/dotlrn-forums/www/user.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-forums/www/user.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrn-forums/www/user.tcl 9 Jul 2002 19:48:46 -0000 1.1 +++ openacs-4/packages/dotlrn-forums/www/user.tcl 11 Nov 2002 10:39:48 -0000 1.2 @@ -12,14 +12,14 @@ } # choosing the view -set dimensional_list { - { - view "View:" date { - {date "by Date" {}} - {forum "by Forum" {}} - } - } -} +set dimensional_list [list \ + [list \ + view "[_ dotlrn-forums.View]" date [list \ + [list date "[_ dotlrn-forums.by_Date]" {}] \ + [list forum "[_ dotlrn-forums.by_Forum]" {}] \ + ] \ + ] \ +] set query select_messages if {[string equal $view forum]} { @@ -34,6 +34,6 @@ set dimensional_chunk [ad_dimensional $dimensional_list] -set context_bar {{Posting History}} +set context_bar [list [_ dotlrn-forums.Posting_History]] ad_return_template