Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/lorsm/catalog/lorsm.en_US.ISO-8859-1.xml'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/lorsm/lib/user-lorsm.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/lib/user-lorsm.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/lib/user-lorsm.tcl 4 Sep 2004 14:51:19 -0000 1.3 +++ openacs-4/packages/lorsm/lib/user-lorsm.tcl 3 Dec 2004 17:52:48 -0000 1.4 @@ -23,29 +23,29 @@ -multirow d_courses \ -html {width 100%} \ -key man_id \ - -no_data "No Courses" \ + -no_data "[_ lorsm.No_Courses]" \ -elements { course_name { - label "Course Name" + label "[_ lorsm.Course_Name_1]" display_col course_name html { width 70% } link_url_eval {[site_node::get_url_from_object_id -object_id $lorsm_instance_id]delivery/?[export_vars man_id]} - link_html {title "Access Course"} + link_html {title "[_ lorsm.Access_Course]"} } subject { - label "Subject" + label "[_ lorsm.Subject]" display_eval {[dotlrn_community::get_community_name $community_id]} html { align center width 20% } link_url_eval {[dotlrn_community::get_community_url $community_id]} - link_html {title "Access Course"} + link_html {title "[_ lorsm.Access_Course]"} } last_viewed { - label "Last Viewed On" + label "[_ lorsm.Last_Viewed_On]" html { align center width 10% } display_eval {[lc_time_fmt $last_viewed "%x"]} } viewed_percent { - label "% Viewed" + label "[_ lorsm._Viewed]" html { align right } display_eval {[lc_numeric $viewed_percent "%.2f"]} } Index: openacs-4/packages/lorsm/tcl/lorsm-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/tcl/lorsm-procs.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/tcl/lorsm-procs.tcl 4 Sep 2004 14:51:20 -0000 1.3 +++ openacs-4/packages/lorsm/tcl/lorsm-procs.tcl 3 Dec 2004 17:52:49 -0000 1.4 @@ -154,16 +154,18 @@ set difference [expr {$end - $start}] if {$difference >= 0 && $difference < 60} { - return "$difference seconds" + return "[_ lorsm.difference_seconds]" } elseif {$difference >= 60 && $difference < 3600} { + set tempval [expr {$difference / 60.0}] + return "[_ lorsm.tempval_minutes]" - return "[expr {$difference / 60.0}] minutes" - } elseif {$difference >= 3600 && $difference < 86400} { - return "[expr {$difference / 60.0 /60.0 }] hours" + set tempval [expr {$difference / 60.0 /60.0 }] + return "[_ lorsm.tempval_hours]" } else { - return "[expr {$difference / 60.0 / 60.0 / 24.0}] days" + set tempval [expr {$difference / 60.0 / 60.0 / 24.0}] + return "[_ lorsm.tempval_days]" } } Index: openacs-4/packages/lorsm/www/course-add-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/course-add-2.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/www/course-add-2.tcl 27 Oct 2004 07:46:52 -0000 1.3 +++ openacs-4/packages/lorsm/www/course-add-2.tcl 3 Dec 2004 17:52:49 -0000 1.4 @@ -22,7 +22,7 @@ } -validate { non_empty -requires {upload_file.tmpfile:notnull} { if {![empty_string_p $upload_file] && (![file exists ${upload_file.tmpfile}] || [file size ${upload_file.tmpfile}] < 4)} { - ad_complain "The upload failed or the file was empty" + ad_complain "[_ lorsm.lt_The_upload_failed_or_]" } } } @@ -35,7 +35,7 @@ # unzips the file if { ![empty_string_p $upload_file] && [ catch {set tmp_dir [lors::imscp::expand_file $upload_file ${upload_file.tmpfile} lors-imscp-$course_id] } errMsg] } { - ad_return_complaint 1 "The uploaded file doesn't seem to be an IMS Content Package compliant file: Unable to expand your archive file" + ad_return_complaint 1 "[_ lorsm.lt_The_uploaded_file_doe]" ad_script_abort } @@ -57,7 +57,7 @@ # unzips the file if { ![empty_string_p $upload_file] && [ catch {set tmp_dir [lors::imscp::expand_file $upload_file ${upload_file.tmpfile} lors-imscp-$course_id] } errMsg] } { - ad_return_complaint 1 "The uploaded file doesn't seem to be an IMS Content Package compliant file: Unable to expand your archive file" + ad_return_complaint 1 "[_ lorsm.lt_The_uploaded_file_doe]" ad_script_abort } @@ -69,7 +69,7 @@ # see if the file actually is where it suppose to be. Othewise abort if {$manifest == 0} { lors::imscp::deltmpdir $tmp_dir - ad_return_complaint 1 "There is no $file with description and structure of the course" + ad_return_complaint 1 "[_ lorsm.lt_There_is_no_file_with_1]" } @@ -105,7 +105,7 @@ template::list::create \ -name d_info \ -multirow d_info \ - -no_data "No Information" \ + -no_data "[_ lorsm.No_Information]" \ -elements { col1 { label "" @@ -123,22 +123,22 @@ template::list::create \ -name d_IMS_package_info \ -multirow d_IMS_package_info \ - -no_data "No IMS Package structure information available" \ + -no_data "[_ lorsm.lt_No_IMS_Package_struct]" \ -elements { organizations { - label "Organizations" + label "[_ lorsm.Organizations]" html {valign top align center} } items { - label "Items" + label "[_ lorsm.Items]" html {valign top align center} } resources { - label "Resources" + label "[_ lorsm.Resources]" html {valign top align center} } files { - label "Files" + label "[_ lorsm.Files]" html {valign top align center} } } @@ -148,22 +148,22 @@ template::list::create \ -name d_SCORM_package_info \ -multirow d_SCORM_package_info \ - -no_data "No Items" \ + -no_data "[_ lorsm.No_Items]" \ -elements { scos { - label "SCOs" + label "[_ lorsm.SCOs]" html {valign top} } assets { - label "Assets" + label "[_ lorsm.Assets]" html {valign top} } sharableresources { - label "Sharable Resources" + label "[_ lorsm.Sharable_Resources]" html {valign top} } files { - label "files" + label "[_ lorsm.files]" html {valign top} } } @@ -198,7 +198,7 @@ set manifest_title_lang [lindex [lindex [lors::imsmd::mdGeneral -element title -node $lom -prefix $prefix] 0] 0] set manifest_title [lindex [lindex [lors::imsmd::mdGeneral -element title -node $lom -prefix $prefix] 0] 1] # set context - set context "Importing: $manifest_title" + set context "[_ lorsm.lt_Importing_manifest_ti]" ## Gets manifest description @@ -229,12 +229,12 @@ # Didn't find LOM although it did find the Metadata schema and # version regexp {([^/\\]+)$} $tmp_dir match manifest_title - set context "Importing: No Metadata Available" + set context "[_ lorsm.lt_Importing_No_Metadata]" } } else { # manifest title doesn't exist, so we create one for it. regexp {([^/\\]+)$} $tmp_dir match manifest_title - set context "Importing: No Metadata Available" + set context "[_ lorsm.lt_Importing_No_Metadata]" } @@ -263,7 +263,7 @@ # Complain if there's no resources if {[empty_string_p $resources]} { - ad_return_complaint 1 "The package you are trying to upload doesn't have resources. Please check the $file and try again" + ad_return_complaint 1 "[_ lorsm.lt_The_package_you_are_t_1]" ad_script_abort } @@ -324,39 +324,39 @@ } else { # Error MSG here - ad_return_complaint 1 "There has been a problem with your uploaded file that we can't identified: temporary directory not found" + ad_return_complaint 1 "[_ lorsm.lt_There_has_been_a_prob]" ad_script_abort } template::form create course_upload -action course-add-3 \ - -display_buttons { {"Upload Course" upload_course} } \ + -display_buttons { {"[_ lorsm.Upload_Course]" upload_course} } \ -html {enctype multipart/form-data} \ -mode edit \ - -cancel_url "index" + -cancel_url "[_ lorsm.index]" template::element create course_upload course_name \ - -label "Course Name:" -datatype text -widget text -help_text "This is the name the name of the course, as it will be stored in the system" \ + -label "[_ lorsm.Course_Name]" -datatype text -widget text -help_text "[_ lorsm.lt_This_is_the_name_the_]" \ -maxlength 200 template::element create course_upload course_id \ - -label "course_id" -datatype integer -widget hidden + -label "[_ lorsm.course_id]" -datatype integer -widget hidden template::element create course_upload indb_p \ - -label "indb_p" -datatype integer -widget hidden + -label "[_ lorsm.indb_p]" -datatype integer -widget hidden template::element create course_upload tmp_dir \ - -label "tmp_dir" -datatype text -widget hidden -optional + -label "[_ lorsm.tmp_dir]" -datatype text -widget hidden -optional template::element create course_upload folder_id \ - -label "folder_id" -datatype integer -widget hidden + -label "[_ lorsm.folder_id]" -datatype integer -widget hidden template::element create course_upload isSCORM \ - -label "isSCORM" -datatype integer -widget hidden -optional + -label "[_ lorsm.isSCORM]" -datatype integer -widget hidden -optional template::element create course_upload fs_package_id \ - -label "fs_package_id" -datatype integer -widget hidden + -label "[_ lorsm.fs_package_id]" -datatype integer -widget hidden template::element set_properties course_upload course_name -value $manifest_title Index: openacs-4/packages/lorsm/www/course-add-3.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/course-add-3.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/lorsm/www/course-add-3.tcl 23 Nov 2004 19:11:57 -0000 1.4 +++ openacs-4/packages/lorsm/www/course-add-3.tcl 3 Dec 2004 17:52:49 -0000 1.5 @@ -22,7 +22,7 @@ } -validate { non_empty -requires {upload_file.tmpfile:notnull} { if {![empty_string_p $upload_file] && (![file exists ${upload_file.tmpfile}] || [file size ${upload_file.tmpfile}] < 4)} { - ad_complain "The upload failed or the file was empty" + ad_complain "[_ lorsm.lt_The_upload_failed_or_]" } } } @@ -35,29 +35,29 @@ # Display progress bar ad_progress_bar_begin \ - -title "Uploading course..." \ - -message_1 "Uploading and processing your course, please wait ..." \ - -message_2 "We will continue automatically when processing is complete." + -title "[_ lorsm.Uploading_course]" \ + -message_1 "[_ lorsm.lt_Uploading_and_process]" \ + -message_2 "[_ lorsm.lt_We_will_continue_auto]" -ns_write "
" +ns_write "[_ lorsm.lt_Initiating_Updating_l]
" # Is this a Blackboard6 package? set isBB [lors::imscp::bb6::isBlackboard6 -tmp_dir $tmp_dir] if {$isBB == 1} { - ns_write "Blackboard6 Content Packaging Course.
Modifying package to be IMS CP compliant..." - ns_write "" } -ns_write "
Cleaning up unused application and folders..." + ns_write "[_ lorsm.lt_Blackboard6_Content_P].
[_ lorsm.lt_Modifying_package_to_]" + ns_write "" + ns_write "[_ lorsm.Done]
[_ lorsm.lt_Cleaning_up_unused_ap]" lors::imscp::bb6::clean_items -tmp_dir $tmp_dir -file "imsmanifest.xml" - ns_write "Done!" - ns_write "
Renaming content types according to IMS CP specification..." + ns_write "[_ lorsm.Done]" + ns_write "
[_ lorsm.lt_Renaming_content_type]" lors::imscp::bb6::extract_html -tmp_dir $tmp_dir -file "imsmanifest.xml" - ns_write "Done!Starting File Processing...
" +ns_write "[_ lorsm.lt_Starting_File_Process]
" db_transaction { @@ -159,17 +159,18 @@ regexp {([^/\\]+)$} $subdir match cr_dir # add the folder to the CR - ns_write "Processing folder : $cr_dir
" + ns_write "[_ lorsm.Processing_folder]: $cr_dir
" set new_cr_folder_id [lors::cr::add_folder -parent_id $base_parent_id -folder_name $cr_dir] lappend collector "$new_cr_folder_id [list [lors::cr::has_dirs -fs_dir $subdir]]" # add files (if any) set files [lors::cr::has_files -fs_dir $subdir] #For display purposes - ns_write "Processing file(s):" + ns_write "[_ lorsm.Processing_files]" foreach file $files { - ns_write " [regsub $tmp_dir $file {}]...OK" # @@ -195,7 +196,7 @@ ## Now we start processing the imsmanifest.xml file - ns_write "
" + set tempval [regsub $tmp_dir $file {}] + ns_write " $tempval[_ lorsm.OK]
" } ns_write "Now processing
imsmanifest.xml
file..." + ns_write "[_ lorsm.Now_processing]
imsmanifest.xml
[_ lorsm.file]" ## Opens imsmanifest.xml # open manifest file with tDOM @@ -247,7 +248,7 @@ set manifest_title_lang [lindex [lindex [lors::imsmd::mdGeneral -element title -node $lom -prefix $prefix] 0] 0] set manifest_title [lindex [lindex [lors::imsmd::mdGeneral -element title -node $lom -prefix $prefix] 0] 1] # set context - set context "Importing: $manifest_title" + set context "[_ lorsm.lt_Importing_manifest_ti]" ## Gets manifest description @@ -270,7 +271,7 @@ } else { - set context "Importing: No Metadata Available" + set context "[_ lorsm.lt_Importing_No_Metadata]" } } @@ -294,7 +295,7 @@ -community_id $community_id] - ns_write "Granting permissions $course_name Manifest...
" + ns_write "[_ lorsm.lt_Granting_permissions__1]
" # PERMISSIONS FOR MANIFEST and learning objects @@ -343,7 +344,7 @@ # Done with Manifest and learning object Permissions - ns_write "Adding $course_name Manifest...
" + ns_write "[_ lorsm.lt_Adding_course_name_Ma]
" if {$man_hasmetadata == 1} { # adds manifest metadata @@ -352,7 +353,7 @@ -node $metadata \ -dir $tmp_dir] - ns_write "Adding Manifest Metadata...
" + ns_write "[_ lorsm.lt_Adding_Manifest_Metad]
" } @@ -382,7 +383,7 @@ -title $org_title \ -hasmetadata $org_hasmetadata] - ns_write "Adding Organization $org_title...
" + ns_write "[_ lorsm.lt_Adding_Organization_o]
" if {$org_hasmetadata == 1} { @@ -395,11 +396,12 @@ set list_items [lors::imscp::getItems $organization] -# ns_write "here is list_items $list_items\n" +# ns_write "[_ lorsm.lt_here_is_list_items_li]" set add [concat $add [lors::imscp::addItems -org_id $org_id $list_items 0 $tmp_dir]] - ns_write "Adding [llength $add] items and their respective metadata...
" + set tempval [llength $add] + ns_write "[_ lorsm.lt_Adding_tempval_items_]
" } @@ -446,7 +448,7 @@ -scorm_type $res_scormtype \ -hasmetadata $res_hasmetadata] - ns_write "Adding resource $res_identifier...
" + ns_write "[_ lorsm.lt_Adding_resource_res_i_2]
" lappend res_list [concat "$resource_id $res_identifier"] @@ -459,7 +461,7 @@ -node [lors::imsmd::getMDNode $resource] \ -dir $tmp_dir] - ns_write "Adding resource $res_identifier metadata...
" + ns_write "[_ lorsm.lt_Adding_resource_res_i_3]
" } @@ -470,15 +472,15 @@ -res_id $resource_id \ -identifierref $dependency] - ns_write "Adding resource dependencies...
" + ns_write "[_ lorsm.lt_Adding_resource_depen]
" } foreach file $res_files { lappend l_files [list [lindex $file 0] $resource_id [lindex $file 1]] - # ns_write "$resource_id $res_identifier \n" + # ns_write "[_ lorsm.lt_resource_id_res_ident]" # ns_write "\t$file \n" } } @@ -489,7 +491,7 @@ } else { # Error MSG here - #ns_write "no page" + #ns_write "[_ lorsm.no_page]" } @@ -523,7 +525,7 @@ } - ns_write "Now we are almost done...
" + ns_write "[_ lorsm.lt_Now_we_are_almost_don]
" foreach file $l_files { @@ -558,7 +560,7 @@ -filename $filex \ -hasmetadata $hasmetadata] - ns_write "Adding file $filex...
" + ns_write "[_ lorsm.Adding_file_filex]
" if {$file_hasmetadata != 0} { @@ -567,19 +569,19 @@ -node $file_hasmetadata \ -dir $tmp_dir] - ns_write "Adding file $filex metadata...
" + ns_write "[_ lorsm.lt_Adding_file_filex_met_1]
" } } } # Delete temporary directory - ns_write "Deleting temporary folder...
" + ns_write "[_ lorsm.lt_Deleting_temporary_fo]
" ns_log Debug "Delete temporary folder $tmp_dir" lors::imscp::deltmpdir $tmp_dir - ns_write "Done!
" + ns_write "[_ lorsm.Done]
" # jump to the front page ad_progress_bar_end -url [apm_package_url_from_id [ad_conn package_id]] Index: openacs-4/packages/lorsm/www/course-add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/course-add.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/course-add.tcl 4 Sep 2004 14:51:21 -0000 1.2 +++ openacs-4/packages/lorsm/www/course-add.tcl 3 Dec 2004 17:52:49 -0000 1.3 @@ -51,24 +51,24 @@ set course_id 1 # set context -set context [list "Upload IMS Content Package"] +set context [list "[_ lorsm.lt_Upload_IMS_Content_Pa]"] template::form create course_upload -action course-add-2 -html {enctype multipart/form-data} template::element create course_upload course_id \ - -label "course_id" -datatype integer -widget hidden + -label "[_ lorsm.course_id]" -datatype integer -widget hidden template::element create course_upload indb_p \ - -label "indb_p" -datatype integer -widget hidden + -label "[_ lorsm.indb_p]" -datatype integer -widget hidden template::element create course_upload fs_package_id \ - -label "fs_package_id" -datatype integer -widget hidden + -label "[_ lorsm.fs_package_id]" -datatype integer -widget hidden template::element create course_upload folder_id \ - -label "folder_id" -datatype integer -widget hidden + -label "[_ lorsm.folder_id]" -datatype integer -widget hidden template::element create course_upload upload_file \ - -label "Choose the course zip file to upload" -help_text "Use the \"Browse...\" button to locate your file, then click \"Open\"" -datatype text -widget file + -label "[_ lorsm.lt_Choose_the_course_zip]" -help_text "[_ lorsm.lt_Use_the_Browse_button]" -datatype text -widget file template::element set_properties course_upload course_id -value $course_id template::element set_properties course_upload folder_id -value $folder_id Index: openacs-4/packages/lorsm/www/course-structure.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/course-structure.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/www/course-structure.adp 29 Nov 2004 17:26:03 -0000 1.3 +++ openacs-4/packages/lorsm/www/course-structure.adp 3 Dec 2004 17:52:49 -0000 1.4 @@ -56,10 +56,10 @@ #lorsm.lt_classlist_stylefont-w#- #lorsm.classlist# + class="list" - #lorsm.lt_valigntop_alignleftis# - + valign="top" align="left">@isscorm;noquote@ +Index: openacs-4/packages/lorsm/www/course-structure.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/course-structure.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/www/course-structure.tcl 14 Nov 2004 12:50:09 -0000 1.3 +++ openacs-4/packages/lorsm/www/course-structure.tcl 3 Dec 2004 17:52:49 -0000 1.4 @@ -30,8 +30,8 @@ } # set context & title -set context [list "Course Structure"] -set title "Course Structure" +set context [list "[_ lorsm.Course_Structure]"] +set title "[_ lorsm.Course_Structure]" if {[db_0or1row manifest " @@ -71,12 +71,12 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No course Name" + set course_name "[_ lorsm.No_course_Name]" } # Version if {[empty_string_p $version]} { - set version "No version Available" + set version "[_ lorsm.No_version_Available]" } # Instance @@ -115,9 +115,9 @@ append orgs_list " " append orgs_list "
- " db_foreach organizations { @@ -140,17 +140,17 @@ append orgs_list "Organization -Metadata? -Items +[_ lorsm.Organization] +[_ lorsm.Metadata_1] +[_ lorsm.Items] $org_title $hasmetadata " set indent [expr $indent +1] - set missing_text "Nothing here" + set missing_text "[_ lorsm.Nothing_here]" set return_url [export_vars -base [ns_conn url] man_id] set table_extra_html { width="100%" } set table_extra_vars {return_url} set table_def { - { title "Item Name" "no_sort" " $indent[if {![empty_string_p $identifierref]} {set href \"$item_title\"} else {set href $item_title}] " } - { Edit "Edit?" "no_sort" "[if {![empty_string_p $identifierref]} {set href \"Edit \"}]"} - { metadata "Metadata?" "no_sort" "[if {$hasmetadata == \"f\"} {set hasmetadata \"No\"} else {set hasmetadata \"Yes\"}] " } - { type "Type" "no_sort" "$type " } - { shared "Is Shared?" "no_sort" "[if {$isshared == false} {set ret \"No\"}] " } + { title "[_ lorsm.Item_Name]" "no_sort" "$indent[if {![empty_string_p $identifierref]} {set href \"$item_title\"} else {set href $item_title}] " } + { Edit "[_ lorsm.Edit]" "no_sort" "[if {![empty_string_p $identifierref]} {set href \"[_ lorsm.Edit_1] \"}]"} + { metadata "[_ lorsm.Metadata_1]" "no_sort" "[if {$hasmetadata == \"f\"} {set hasmetadata \"No\"} else {set hasmetadata \"Yes\"}] " } + { type "[_ lorsm.Type]" "no_sort" "$type " } + { shared "[_ lorsm.Is_Shared]" "no_sort" "[if {$isshared == false} {set ret \"No\"}] " } } set table_item [ad_table -Tmissing_text $missing_text -Textra_vars $table_extra_vars -Theader_row_extra "style=\"background-color: #e0e0e0; font-weight: bold;\" class=\"list-header\"" -Ttable_extra_html $table_extra_html blah { Index: openacs-4/packages/lorsm/www/edit-content.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/edit-content.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/edit-content.tcl 4 Sep 2004 14:51:21 -0000 1.1 +++ openacs-4/packages/lorsm/www/edit-content.tcl 3 Dec 2004 17:52:49 -0000 1.2 @@ -41,7 +41,7 @@ permission::require_write_permission -object_id $file_id -creation_user $user_id -#ns_write "folder $folder\n pather: $pather \n file_id: $file_id" +#ns_write "[_ lorsm.lt_folder_foldern_pather]" #ad_script_abort ad_returnredirect [export_vars -base [apm_package_url_from_id $fs_package_id]file-content-edit {file_id return_url}] Index: openacs-4/packages/lorsm/www/enabler.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/enabler.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/enabler.tcl 27 Oct 2004 07:46:52 -0000 1.2 +++ openacs-4/packages/lorsm/www/enabler.tcl 3 Dec 2004 17:52:49 -0000 1.3 @@ -26,23 +26,23 @@ # Permissions dotlrn::require_user_admin_community -user_id $user_id -community_id $community_id -set title "Set Course Trackable" -set context [list "Set Course Status"] +set title "[_ lorsm.Set_Course_Trackable]" +set context [list "[_ lorsm.Set_Course_Status]"] ad_form -name enabler \ -export {package_id} \ -form { {man_id:key} {project:text(inform) - {label "Course Name:"} + {label "[_ lorsm.Course_Name]"} {value {[lorsm::get_course_name -manifest_id $man_id]}} } {isenabled:text(inform) - {label "Current Status:"} + {label "[_ lorsm.Current_Status]"} } {enable:text(radio) - {label Status?} - {options {{"Enable" t} {"Disable" f}}} + {label [_ lorsm.Status_3]} + {options {{"[_ lorsm.Enable]" t} {"[_ lorsm.Disable]" f}}} } } -select_query { select Index: openacs-4/packages/lorsm/www/not-allowed.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/not-allowed.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/not-allowed.tcl 27 Oct 2004 07:46:52 -0000 1.1 +++ openacs-4/packages/lorsm/www/not-allowed.tcl 3 Dec 2004 17:52:49 -0000 1.2 @@ -7,4 +7,4 @@ @cvs-id $Id$ } -set context [list "Not Allowed"] +set context [list "[_ lorsm.Not_Allowed]"] Index: openacs-4/packages/lorsm/www/sharer.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/sharer.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/sharer.tcl 27 Oct 2004 07:46:52 -0000 1.2 +++ openacs-4/packages/lorsm/www/sharer.tcl 3 Dec 2004 17:52:49 -0000 1.3 @@ -34,23 +34,23 @@ permission::require_write_permission -object_id $man_id -creation_user $user_id -set title "Share Course/Learning Object" -set context [list "Share Course/Learning Object"] +set title "[_ lorsm.lt_Share_CourseLearning_]" +set context [list "[_ lorsm.lt_Share_CourseLearning_]"] ad_form -name sharer \ -export {return_url folder_id} \ -form { {man_id:key} {project:text(inform) - {label "Course Name:"} + {label "[_ lorsm.Course_Name]"} {value {[lorsm::get_course_name -manifest_id $man_id]}} } {isshared:text(inform) - {label "Current Status:"} + {label "[_ lorsm.Current_Status]"} } {share:text(radio) {label Status?} - {options {{"Shared" t} {"Not Shared" f}}} + {options {{"[_ lorsm.Shared]" t} {"[_ lorsm.Not_Shared]" f}}} } } -select_query { select Index: openacs-4/packages/lorsm/www/tracker.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/Attic/tracker.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/tracker.tcl 27 Oct 2004 07:46:52 -0000 1.2 +++ openacs-4/packages/lorsm/www/tracker.tcl 3 Dec 2004 17:52:49 -0000 1.3 @@ -29,28 +29,28 @@ # Checks whether the user has appropiate permissions otherwise we kick # him out if {!$admin_p} { - ad_returnredirect "not-allowed" + ad_returnredirect "[_ lorsm.not-allowed]" return -code error } -set title "Set Course Track Options" -set context [list "Set Course Options"] +set title "[_ lorsm.lt_Set_Course_Track_Opti]" +set context [list "[_ lorsm.Set_Course_Options]"] ad_form -name tracker \ -export {package_id} \ -form { {man_id:key} {project:text(inform) - {label "Course Name:"} + {label "[_ lorsm.Course_Name]"} {value {[lorsm::get_course_name -manifest_id $man_id]}} } {istrackable:text(inform) - {label "Current Status:"} + {label "[_ lorsm.Current_Status]"} } {enable:text(radio) {label Status?} - {options {{"Trackable?" t} {"No, Thanks" f}}} + {options {{"[_ lorsm.Trackable_1]" t} {"[_ lorsm.No_Thanks]" f}}} } } -select_query { select Index: openacs-4/packages/lorsm/www/delivery/body.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/delivery/body.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/delivery/body.tcl 4 Sep 2004 14:51:21 -0000 1.2 +++ openacs-4/packages/lorsm/www/delivery/body.tcl 3 Dec 2004 17:52:49 -0000 1.3 @@ -59,8 +59,8 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No Course Name" + set course_name "[_ lorsm.No_Course_Name]" } } else { - set course_name "No Course Name" + set course_name "[_ lorsm.No_Course_Name]" } \ No newline at end of file Index: openacs-4/packages/lorsm/www/delivery/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/delivery/index.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/delivery/index.tcl 4 Sep 2004 14:51:21 -0000 1.2 +++ openacs-4/packages/lorsm/www/delivery/index.tcl 3 Dec 2004 17:52:50 -0000 1.3 @@ -35,10 +35,10 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No Course Name" + set course_name "[_ lorsm.No_Course_Name]" } } else { - set course_name "No Course Name" + set course_name "[_ lorsm.No_Course_Name]" } # Student tracking Index: openacs-4/packages/lorsm/www/delivery1/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/delivery1/index.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/delivery1/index.tcl 4 Sep 2004 14:51:26 -0000 1.1 +++ openacs-4/packages/lorsm/www/delivery1/index.tcl 3 Dec 2004 17:52:50 -0000 1.2 @@ -44,12 +44,12 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No course Name" + set course_name "[_ lorsm.No_course_Name]" } # Version if {[empty_string_p $version]} { - set version "No version Available" + set version "[_ lorsm.No_version_Available]" } # Instance Index: openacs-4/packages/lorsm/www/delivery1/toc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/delivery1/toc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/delivery1/toc.tcl 4 Sep 2004 14:51:26 -0000 1.1 +++ openacs-4/packages/lorsm/www/delivery1/toc.tcl 3 Dec 2004 17:52:50 -0000 1.2 @@ -52,7 +52,7 @@ } { set indent [expr $indent +1] - set missing_text "Nothing here" + set missing_text "[_ lorsm.Nothing_here]" set table_extra_html { width="100%" } # the table_def isn't quite neat as I'd like to, but it does the job for a Index: openacs-4/packages/lorsm/www/delivery2/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/delivery2/index.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/delivery2/index.tcl 4 Sep 2004 14:51:26 -0000 1.1 +++ openacs-4/packages/lorsm/www/delivery2/index.tcl 3 Dec 2004 17:52:50 -0000 1.2 @@ -62,12 +62,12 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No course Name" + set course_name "[_ lorsm.No_course_Name]" } # Version if {[empty_string_p $version]} { - set version "No version Available" + set version "[_ lorsm.No_version_Available]" } # Instance @@ -150,7 +150,7 @@ set js [list] # the first element must be blank - lappend js [list 0 0 "Course Index"] + lappend js [list 0 0 "[_ lorsm.Course_Index]"] } Index: openacs-4/packages/lorsm/www/lib/md-record.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/lib/Attic/md-record.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/lib/md-record.tcl 14 Nov 2004 12:50:10 -0000 1.2 +++ openacs-4/packages/lorsm/www/lib/md-record.tcl 3 Dec 2004 17:52:50 -0000 1.3 @@ -1,14 +1,14 @@ set actions [list] -lappend actions "General MD" [export_vars -base generalmd {ims_md_id}] "View General Metadata" -lappend actions "Lifecycle MD" [export_vars -base lifecyclemd {ims_md_id}] "View Lifecycle Metadata" -lappend actions "Meta MD" [export_vars -base metamd {ims_md_id}] "View Meta Metadata" -lappend actions "Technical MD" [export_vars -base technicalmd {ims_md_id}] "View Technical Metadata" -lappend actions "Educational MD" [export_vars -base educationalmd {ims_md_id}] "View Educational Metadata" -lappend actions "Rights MD" [export_vars -base rightsmd {ims_md_id}] "View Rights Metadata" -lappend actions "Relation MD" [export_vars -base relationmd {ims_md_id}] "View Relation Metadata" -lappend actions "Annotation MD" [export_vars -base annotationmd {ims_md_id}] "View Annotation Metadata" -lappend actions "Classification MD" [export_vars -base classificationmd {ims_md_id}] "View Classification Metadata" +lappend actions "[_ lorsm._General]" [export_vars -base generalmd {ims_md_id}] "[_ lorsm.lt_View_General_Metadata]" +lappend actions "[_ lorsm.Lifecycle_MD]" [export_vars -base lifecyclemd {ims_md_id}] "[_ lorsm.lt_View_Lifecycle_Metada]" +lappend actions "[_ lorsm.Meta_MD]" [export_vars -base metamd {ims_md_id}] "[_ lorsm.View_Meta_Metadata]" +lappend actions "[_ lorsm.Technical_MD]" [export_vars -base technicalmd {ims_md_id}] "[_ lorsm.lt_View_Technical_Metada]" +lappend actions "[_ lorsm.Educational_MD]" [export_vars -base educationalmd {ims_md_id}] "[_ lorsm.lt_View_Educational_Meta]" +lappend actions "[_ lorsm.Rights_MD]" [export_vars -base rightsmd {ims_md_id}] "[_ lorsm.View_Rights_Metadata]" +lappend actions "[_ lorsm.Relation_MD]" [export_vars -base relationmd {ims_md_id}] "[_ lorsm.lt_View_Relation_Metadat]" +lappend actions "[_ lorsm.Annotation_MD]" [export_vars -base annotationmd {ims_md_id}] "[_ lorsm.lt_View_Annotation_Metad]" +lappend actions "[_ lorsm.Classification_MD]" [export_vars -base classificationmd {ims_md_id}] "[_ lorsm.lt_View_Classification_M_1]" # Presentation @@ -19,17 +19,17 @@ -actions $actions \ -elements { object_type { - label "Object Type" + label "[_ lorsm.Object_Type]" } schema_and_version { - label "MD Schema and Version" + label "[_ lorsm.lt_MD_Schema_and_Version]" html { align center } } admin { - label "Edit Schema Details" + label "[_ lorsm.Edit_Schema_Details]" display_eval {Modify Schema} link_url_eval {[export_vars -base "addmd" ims_md_id]} - link_html {title "Admin Course" class button} + link_html {title "[_ lorsm.Admin_Course]" class button} html { align center } } Index: openacs-4/packages/lorsm/www/lib/repository-shared-courses.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/lib/Attic/repository-shared-courses.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/lib/repository-shared-courses.tcl 4 Sep 2004 14:51:29 -0000 1.1 +++ openacs-4/packages/lorsm/www/lib/repository-shared-courses.tcl 3 Dec 2004 17:52:50 -0000 1.2 @@ -17,8 +17,8 @@ } -set title "Shared Courses" -set context [list "Shared Courses"] +set title "[_ lorsm.Shared_Courses]" +set context [list "[_ lorsm.Shared_Courses]"] set package_id [ad_conn package_id] set community_id [dotlrn_community::get_community_id] @@ -34,35 +34,35 @@ -multirow d_courses \ -html {width 50%} \ -key man_id \ - -no_data "No Courses" \ + -no_data "[_ lorsm.No_Courses]" \ -elements { course_name { - label "Available Courses" + label "[_ lorsm.Available_Courses]" display_col course_name link_url_eval {[export_vars -base $community_url/lorsm/shared/course-info {man_id fs_package_id folder_id}]} - link_html {title "Access Course"} + link_html {title "[_ lorsm.Access_Course]"} } hasmetadata { - label "Metadata?" + label "[_ lorsm.Metadata_1]" link_url_eval {[export_vars -base $community_url/lorsm/md {ims_md_id}]} - link_html {title "See metadata" } + link_html {title "[_ lorsm.See_metadata]" } html { align center } } creation_user { - label "Owner" + label "[_ lorsm.Owner]" display_eval {[person::name -person_id $creation_user]} link_url_eval {[acs_community_member_url -user_id $creation_user]} } creation_date { - label "Creation Date" + label "[_ lorsm.Creation_Date]" display_eval {[lc_time_fmt $creation_date "%x %X"]} } admin { - label "Course Info" + label "[_ lorsm.Course_Info]" display_eval {Info/View} link_url_eval {[export_vars -base $community_url/lorsm/shared/course-info man_id]} - link_html {title "Info" class button} + link_html {title "[_ lorsm.Info]" class button} html { align center } } } Index: openacs-4/packages/lorsm/www/md/addmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/addmd.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/addmd.tcl 14 Nov 2004 12:50:10 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/addmd.tcl 3 Dec 2004 17:52:50 -0000 1.2 @@ -20,8 +20,8 @@ set object_type [acs_object_type $ims_md_id] # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Edit Metadata Schema and Schema Version"] -set title "Add/Edit MD Schema and Version" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.lt_Edit_Metadata_Schema_]"] +set title "[_ lorsm.lt_AddEdit_MD_Schema_and]" # Form @@ -32,14 +32,14 @@ {schema:text,nospell {html {size 20}} - {help_text "Metadata schema. i.e.: 'IMS Content'"} - {label "Schema:"} + {help_text "[_ lorsm.lt_Metadata_schema_ie_IM]"} + {label "[_ lorsm.Schema]"} } {schemaversion:text,nospell {html {size 10}} - {help_text "Version of the Schema. i.e.: '1.2.1'"} - {label "Schema Version:"} + {help_text "[_ lorsm.lt_Version_of_the_Schema]"} + {label "[_ lorsm.Schema_Version]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -110,15 +110,15 @@ template::list::create \ -name md_schema_info \ -multirow md_schema_info \ - -no_data "No Schema Available" \ + -no_data "[_ lorsm.No_Schema_Available]" \ -html { align right style "width: 100%;" } \ -elements { schema { - label "Schema" + label "[_ lorsm.Schema_1]" html { align center } } schemaversion { - label "Version" + label "[_ lorsm.Version_1]" html { align center } } } Index: openacs-4/packages/lorsm/www/md/annotationmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/annotationmd.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -11,24 +11,24 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Annotation MD"] -set title "Annotation MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Annotation_MD]"] +set title "[_ lorsm.Annotation_MD]" # Annotation template::list::create \ -name d_an_annot \ -multirow d_an_annot \ - -no_data "No Annotation Available" \ - -actions [list "Add Annotation" [export_vars -base annotationmd/annotation_add {ims_md_id}] "Add another Annotation MD Entry"] \ + -no_data "[_ lorsm.lt_No_Annotation_Availab]" \ + -actions [list "[_ lorsm.Add_Annotation]" [export_vars -base annotationmd/annotation_add {ims_md_id}] "[_ lorsm.lt_Add_another_Annotatio_1]"] \ -html { align right style "width: 100%;" } \ -elements { entity { - label "Entry" + label "[_ lorsm.Entry_1]" } export { display_eval {\[View\]} link_url_eval { [export_vars -base "annotationmd/annotation" {ims_md_an_id ims_md_id}] } - link_html {title "View associated Annotation MD"} + link_html {title "[_ lorsm.lt_View_associated_Annot]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/classificationmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/classificationmd.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -11,15 +11,15 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Classification MD"] -set title "Classification MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Classification_MD]"] +set title "[_ lorsm.Classification_MD]" # Classification template::list::create \ -name d_cl_class \ -multirow d_cl_class \ - -no_data "No Classification Available" \ - -actions [list "Add Classification" [export_vars -base classificationmd/classification_add {ims_md_id}] "Add another Classification MD Entry"] \ + -no_data "[_ lorsm.lt_No_Classification_Ava]" \ + -actions [list "[_ lorsm.Add_Classification]" [export_vars -base classificationmd/classification_add {ims_md_id}] "[_ lorsm.lt_Add_another_Classific_2]"] \ -html { align right style "width: 100%;" } \ -elements { purpose_s { @@ -31,7 +31,7 @@ export { display_eval {\[View\]} link_url_eval { [export_vars -base "classificationmd/classification" {ims_md_cl_id ims_md_id}] } - link_html {title "View associated Classification MD"} + link_html {title "[_ lorsm.lt_View_associated_Class]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/educationalmd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/educationalmd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/educationalmd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -10,15 +10,15 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Educational MD"] -set title "Educational MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Educational_MD]"] +set title "[_ lorsm.Educational_MD]" # Educational Interactivity Type template::list::create \ -name d_ed_intt \ -multirow d_ed_intt \ - -no_data "No Interactivity Type Available" \ - -actions [list "Add Interactivity Type" [export_vars -base educationalmd/educational_intt {ims_md_id}] "Add another Interactivity Type"] \ + -no_data "[_ lorsm.lt_No_Interactivity_Type]" \ + -actions [list "[_ lorsm.lt_Add_Interactivity_Typ]" [export_vars -base educationalmd/educational_intt {ims_md_id}] "[_ lorsm.lt_Add_another_Interacti]"] \ -html { align right style "width: 100%;" } \ -elements { intt { @@ -39,8 +39,8 @@ template::list::create \ -name d_ed_lrt \ -multirow d_ed_lrt \ - -no_data "No Learning Resource Type Available" \ - -actions [list "Add Learning Resource Type" [export_vars -base educationalmd/educational_lrt {ims_md_id}] "Add another Learning Resource Type"] \ + -no_data "[_ lorsm.lt_No_Learning_Resource_]" \ + -actions [list "[_ lorsm.lt_Add_Learning_Resource]" [export_vars -base educationalmd/educational_lrt {ims_md_id}] "[_ lorsm.lt_Add_another_Learning_]"] \ -html { align right style "width: 100%;" } \ -elements { lrt { @@ -61,8 +61,8 @@ template::list::create \ -name d_ed_intl \ -multirow d_ed_intl \ - -no_data "No Interactivity Level Available" \ - -actions [list "Add Interactivity Level" [export_vars -base educationalmd/educational_intl {ims_md_id}] "Add another Interactivity Level"] \ + -no_data "[_ lorsm.lt_No_Interactivity_Leve]" \ + -actions [list "[_ lorsm.lt_Add_Interactivity_Lev]" [export_vars -base educationalmd/educational_intl {ims_md_id}] "[_ lorsm.lt_Add_another_Interacti_1]"] \ -html { align right style "width: 100%;" } \ -elements { intl { @@ -83,8 +83,8 @@ template::list::create \ -name d_ed_semd \ -multirow d_ed_semd \ - -no_data "No Semantic Density Available" \ - -actions [list "Add Semantic Density" [export_vars -base educationalmd/educational_semd {ims_md_id}] "Add another Semantic Density"] \ + -no_data "[_ lorsm.lt_No_Semantic_Density_A]" \ + -actions [list "[_ lorsm.Add_Semantic_Density]" [export_vars -base educationalmd/educational_semd {ims_md_id}] "[_ lorsm.lt_Add_another_Semantic_]"] \ -html { align right style "width: 100%;" } \ -elements { semd { @@ -105,8 +105,8 @@ template::list::create \ -name d_ed_ieur \ -multirow d_ed_ieur \ - -no_data "No Intended End User Role Available" \ - -actions [list "Add Intended End User Role" [export_vars -base educationalmd/educational_ieur {ims_md_id}] "Add another Intended End User Role"] \ + -no_data "[_ lorsm.lt_No_Intended_End_User_]" \ + -actions [list "[_ lorsm.lt_Add_Intended_End_User]" [export_vars -base educationalmd/educational_ieur {ims_md_id}] "[_ lorsm.lt_Add_another_Intended_]"] \ -html { align right style "width: 100%;" } \ -elements { ieur { @@ -127,8 +127,8 @@ template::list::create \ -name d_ed_cont \ -multirow d_ed_cont \ - -no_data "No Context Available" \ - -actions [list "Add Context" [export_vars -base educationalmd/educational_cont {ims_md_id}] "Add another Context"] \ + -no_data "[_ lorsm.No_Context_Available]" \ + -actions [list "[_ lorsm.Add_Context]" [export_vars -base educationalmd/educational_cont {ims_md_id}] "[_ lorsm.Add_another_Context]"] \ -html { align right style "width: 100%;" } \ -elements { context { @@ -149,8 +149,8 @@ template::list::create \ -name d_ed_tar \ -multirow d_ed_tar \ - -no_data "No Typical Age Range Available" \ - -actions [list "Add Typical Age Range" [export_vars -base educationalmd/educational_tar {ims_md_id}] "Add another Typical Age Range"] \ + -no_data "[_ lorsm.lt_No_Typical_Age_Range_]" \ + -actions [list "[_ lorsm.lt_Add_Typical_Age_Range]" [export_vars -base educationalmd/educational_tar {ims_md_id}] "[_ lorsm.lt_Add_another_Typical_A]"] \ -html { align right style "width: 100%;" } \ -elements { tar { @@ -171,8 +171,8 @@ template::list::create \ -name d_ed_dif \ -multirow d_ed_dif \ - -no_data "No Difficulty Available" \ - -actions [list "Add Difficulty Type" [export_vars -base educationalmd/educational_dif {ims_md_id}] "Add another Difficulty"] \ + -no_data "[_ lorsm.lt_No_Difficulty_Availab]" \ + -actions [list "[_ lorsm.Add_Difficulty_Type]" [export_vars -base educationalmd/educational_dif {ims_md_id}] "[_ lorsm.lt_Add_another_Difficult]"] \ -html { align right style "width: 100%;" } \ -elements { diff { @@ -193,8 +193,8 @@ template::list::create \ -name d_ed_tlt \ -multirow d_ed_tlt \ - -no_data "No Typical Learning Time Available" \ - -actions [list "Add Typical Learning Time" [export_vars -base educationalmd/educational_tlt {ims_md_id}] "Add another Typical Learning Time"] \ + -no_data "[_ lorsm.lt_No_Typical_Learning_T]" \ + -actions [list "[_ lorsm.lt_Add_Typical_Learning_]" [export_vars -base educationalmd/educational_tlt {ims_md_id}] "[_ lorsm.lt_Add_another_Typical_L]"] \ -html { align right style "width: 100%;" } \ -elements { tlt { @@ -219,8 +219,8 @@ template::list::create \ -name d_ed_desc \ -multirow d_ed_desc \ - -no_data "No Description Available" \ - -actions [list "Add Description" [export_vars -base educationalmd/educational_desc {ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base educationalmd/educational_desc {ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { desc { @@ -241,8 +241,8 @@ template::list::create \ -name d_ed_lang \ -multirow d_ed_lang \ - -no_data "No Language Available" \ - -actions [list "Add Language" [export_vars -base educationalmd/educational_lang {ims_md_id}] "Add another Language"] \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ + -actions [list "[_ lorsm.Add_Language]" [export_vars -base educationalmd/educational_lang {ims_md_id}] "[_ lorsm.Add_another_Language]"] \ -html { align right style "width: 100%;" } \ -elements { language { Index: openacs-4/packages/lorsm/www/md/generalmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/generalmd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/generalmd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/generalmd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -12,15 +12,15 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "General MD"] -set title "General MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.General_MD]"] +set title "[_ lorsm.General_MD]" # General Title template::list::create \ -name d_gen_titles \ -multirow d_gen_titles \ - -no_data "No Titles Available" \ - -actions [list "Add Title" [export_vars -base generalmd/general_title {ims_md_id}] "Add another title"] \ + -no_data "[_ lorsm.No_Titles_Available]" \ + -actions [list "[_ lorsm.Add_Title]" [export_vars -base generalmd/general_title {ims_md_id}] "[_ lorsm.Add_another_title]"] \ -html { align right style "width: 100%;" } \ -elements { title_l { @@ -46,8 +46,8 @@ template::list::create \ -name d_gen_desc \ -multirow d_gen_desc \ - -no_data "No Description Available" \ - -actions [list "Add Description" [export_vars -base generalmd/general_desc {ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base generalmd/general_desc {ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { descrip_l { @@ -71,8 +71,8 @@ template::list::create \ -name d_gen_cata \ -multirow d_gen_cata \ - -no_data "No Catalog Entry Available" \ - -actions [list "Add Catalog-Entry" [export_vars -base generalmd/general_cata {ims_md_id}] "Add another Catalog-Entry"] \ + -no_data "[_ lorsm.lt_No_Catalog_Entry_Avai]" \ + -actions [list "[_ lorsm.Add_Catalog-Entry]" [export_vars -base generalmd/general_cata {ims_md_id}] "[_ lorsm.lt_Add_another_Catalog-E]"] \ -html { align right style "width: 100%;" } \ -elements { catalog { @@ -103,8 +103,8 @@ template::list::create \ -name d_gen_lang \ -multirow d_gen_lang \ - -no_data "No Language Available" \ - -actions [list "Add Language" [export_vars -base generalmd/general_lang {ims_md_id}] "Add another Language"] \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ + -actions [list "[_ lorsm.Add_Language]" [export_vars -base generalmd/general_lang {ims_md_id}] "[_ lorsm.Add_another_Language]"] \ -html { align right style "width: 100%;" } \ -elements { language { @@ -125,8 +125,8 @@ template::list::create \ -name d_gen_key \ -multirow d_gen_key \ - -no_data "No Keywords Available" \ - -actions [list "Add Keywords" [export_vars -base generalmd/general_key {ims_md_id}] "Add another Keywords"] \ + -no_data "[_ lorsm.lt_No_Keywords_Available]" \ + -actions [list "[_ lorsm.Add_Keywords]" [export_vars -base generalmd/general_key {ims_md_id}] "[_ lorsm.Add_another_Keywords]"] \ -html { align right style "width: 100%;" } \ -elements { keyword_l { @@ -151,8 +151,8 @@ template::list::create \ -name d_gen_cover \ -multirow d_gen_cover \ - -no_data "No Coverage Available" \ - -actions [list "Add Coverage" [export_vars -base generalmd/general_cover {ims_md_id}] "Add another Coverage"] \ + -no_data "[_ lorsm.lt_No_Coverage_Available]" \ + -actions [list "[_ lorsm.Add_Coverage]" [export_vars -base generalmd/general_cover {ims_md_id}] "[_ lorsm.Add_another_Coverage]"] \ -html { align right style "width: 100%;" } \ -elements { cover_l { @@ -177,8 +177,8 @@ template::list::create \ -name d_gen_struc \ -multirow d_gen_struc \ - -no_data "No Structure Available" \ - -actions [list "Add Structure" [export_vars -base generalmd/general_struc {ims_md_id}] "Add another Structure"] \ + -no_data "[_ lorsm.lt_No_Structure_Availabl]" \ + -actions [list "[_ lorsm.Add_Structure]" [export_vars -base generalmd/general_struc {ims_md_id}] "[_ lorsm.lt_Add_another_Structure]"] \ -html { align right style "width: 100%;" } \ -elements { structure_s { @@ -204,8 +204,8 @@ template::list::create \ -name d_gen_aggl \ -multirow d_gen_aggl \ - -no_data "No Aggregation Level Available" \ - -actions [list "Add Aggregation Level" [export_vars -base generalmd/general_aggl {ims_md_id}] "Add another Aggregation Level"] \ + -no_data "[_ lorsm.lt_No_Aggregation_Level_]" \ + -actions [list "[_ lorsm.lt_Add_Aggregation_Level]" [export_vars -base generalmd/general_aggl {ims_md_id}] "[_ lorsm.lt_Add_another_Aggregati]"] \ -html { align right style "width: 100%;" } \ -elements { agg_level_s { Index: openacs-4/packages/lorsm/www/md/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/index.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/www/md/index.tcl 14 Nov 2004 12:50:11 -0000 1.3 +++ openacs-4/packages/lorsm/www/md/index.tcl 3 Dec 2004 17:52:51 -0000 1.4 @@ -10,8 +10,8 @@ } # set context -set context [list "IMS Metadata Editor"] -set title "IMS Metadata Editor" +set context [list "[_ lorsm.IMS_Metadata_Editor]"] +set title "<#_ IMS Metadata Editor \>" set link [export_vars -base "md_upload" ims_md_id] set hasmetadata [lors::imsmd::mdExist -ims_md_id $ims_md_id] Index: openacs-4/packages/lorsm/www/md/lifecyclemd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/lifecyclemd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/lifecyclemd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/lifecyclemd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -18,8 +18,8 @@ template::list::create \ -name d_lf_ver \ -multirow d_lf_ver \ - -no_data "No Version Available" \ - -actions [list "Add Version" [export_vars -base lifecyclemd/lifecycle_version {ims_md_id}] "Add Version"] \ + -no_data "[_ lorsm.No_Version_Available]" \ + -actions [list "[_ lorsm.Add_Version]" [export_vars -base lifecyclemd/lifecycle_version {ims_md_id}] "[_ lorsm.Add_Version]"] \ -html { align right style "width: 100%;" } \ -elements { version_l { @@ -43,8 +43,8 @@ template::list::create \ -name d_lf_stat \ -multirow d_lf_stat \ - -no_data "No Status Available" \ - -actions [list "Add Status" [export_vars -base lifecyclemd/lifecycle_stat {ims_md_id}] "Add Status"] \ + -no_data "[_ lorsm.No_Status_Available]" \ + -actions [list "[_ lorsm.Add_Status]" [export_vars -base lifecyclemd/lifecycle_stat {ims_md_id}] "[_ lorsm.Add_Status]"] \ -html { align right style "width: 100%;" } \ -elements { status_s { @@ -69,21 +69,21 @@ template::list::create \ -name d_lf_cont \ -multirow d_lf_cont \ - -no_data "No Contributors Available" \ - -actions [list "Add Contributors" [export_vars -base lifecyclemd/lifecycle_cont {ims_md_id}] "Add another Contributors"] \ + -no_data "[_ lorsm.lt_No_Contributors_Avail]" \ + -actions [list "[_ lorsm.Add_Contributors]" [export_vars -base lifecyclemd/lifecycle_cont {ims_md_id}] "[_ lorsm.lt_Add_another_Contribut]"] \ -html { align right style "width: 100%;" } \ -elements { role { - label "Role" + label "[_ lorsm.Role]" } entity { - label "Entity" + label "[_ lorsm.Entity_1]" } cont_date { - label "Contribution Date" + label "[_ lorsm.Contribution_Date]" } cont_date_ls { - label "Description" + label "[_ lorsm.Description_1]" } } Index: openacs-4/packages/lorsm/www/md/metamd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/metamd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/metamd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/metamd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -10,22 +10,22 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Meta Metadata"] -set title "Meta MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Meta_Metadata]"] +set title "[_ lorsm.Meta_MD]" # Metametadata Catalogentry template::list::create \ -name d_md_cata \ -multirow d_md_cata \ - -no_data "No Catalog Entry Available" \ - -actions [list "Add Catalog-Entry" [export_vars -base metamd/meta_cata {ims_md_id}] "Add another Catalog-Entry"] \ + -no_data "[_ lorsm.lt_No_Catalog_Entry_Avai]" \ + -actions [list "[_ lorsm.Add_Catalog-Entry]" [export_vars -base metamd/meta_cata {ims_md_id}] "[_ lorsm.lt_Add_another_Catalog-E]"] \ -html { align right style "width: 100%;" } \ -elements { catalog { - label "Catalog" + label "[_ lorsm.Catalog_1]" } entry_ls { - label "Language Entry" + label "[_ lorsm.Language_Entry]" } } @@ -44,21 +44,21 @@ template::list::create \ -name d_md_cont \ -multirow d_md_cont \ - -no_data "No Contributors Available" \ - -actions [list "Add Contributors" [export_vars -base metamd/meta_cont {ims_md_id}] "Add another Contributors"] \ + -no_data "[_ lorsm.lt_No_Contributors_Avail]" \ + -actions [list "[_ lorsm.Add_Contributors]" [export_vars -base metamd/meta_cont {ims_md_id}] "[_ lorsm.lt_Add_another_Contribut]"] \ -html { align right style "width: 100%;" } \ -elements { role { - label "Role" + label "[_ lorsm.Role]" } entity { - label "Entity" + label "[_ lorsm.Entity_1]" } cont_date { - label "Contribution Date" + label "[_ lorsm.Contribution_Date]" } cont_date_ls { - label "Description" + label "[_ lorsm.Description_1]" } } @@ -81,8 +81,8 @@ template::list::create \ -name d_md_scheme \ -multirow d_md_scheme \ - -no_data "No Scheme Available" \ - -actions [list "Add Scheme" [export_vars -base metamd/meta_scheme {ims_md_id}] "Add another Scheme"] \ + -no_data "[_ lorsm.No_Scheme_Available]" \ + -actions [list "[_ lorsm.Add_Scheme]" [export_vars -base metamd/meta_scheme {ims_md_id}] "[_ lorsm.Add_another_Scheme]"] \ -html { align right style "width: 100%;" } \ -elements { scheme { @@ -103,8 +103,8 @@ template::list::create \ -name d_md_lang \ -multirow d_md_lang \ - -no_data "No Language Available" \ - -actions [list "Add Language" [export_vars -base metamd/meta_lang {ims_md_id}] "Add another Languages"] \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ + -actions [list "[_ lorsm.Add_Language]" [export_vars -base metamd/meta_lang {ims_md_id}] "[_ lorsm.lt_Add_another_Languages]"] \ -html { align right style "width: 100%;" } \ -elements { language { Index: openacs-4/packages/lorsm/www/md/relationmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/relationmd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/relationmd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/relationmd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -11,15 +11,15 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Relation MD"] +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Relation_MD]"] set title "Relation MD" # Relation template::list::create \ -name d_re_relat \ -multirow d_re_relat \ - -no_data "No Relation Available" \ - -actions [list "Add Relation" [export_vars -base relationmd/relation_add {ims_md_id}] "Add another Relation MD Entry"] \ + -no_data "[_ lorsm.lt_No_Relation_Available]" \ + -actions [list "[_ lorsm.Add_Relation]" [export_vars -base relationmd/relation_add {ims_md_id}] "[_ lorsm.lt_Add_another_Relation__1]"] \ -html { align right style "width: 100%;" } \ -elements { kind_s { @@ -31,7 +31,7 @@ export { display_eval {\[View \\ Edit\]} link_url_eval { [export_vars -base "relationmd/relation" {ims_md_re_re_id ims_md_re_id ims_md_id}] } - link_html {title "View associated Relation MD"} + link_html {title "[_ lorsm.lt_View_associated_Relat]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/rightsmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/rightsmd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/rightsmd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/rightsmd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -11,14 +11,14 @@ # set context & title set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Rights MD"] -set title "Rights MD" +set title "[_ lorsm.Rights_MD]" # Rights Cost template::list::create \ -name d_ri_cost \ -multirow d_ri_cost \ - -no_data "No Cost Available" \ - -actions [list "Add Cost" [export_vars -base rightsmd/rights_cost {ims_md_id}] "Add another Cost"] \ + -no_data "[_ lorsm.No_Cost_Available]" \ + -actions [list "[_ lorsm.Add_Cost]" [export_vars -base rightsmd/rights_cost {ims_md_id}] "[_ lorsm.Add_another_Cost]"] \ -html { align right style "width: 100%;" } \ -elements { cost { @@ -39,8 +39,8 @@ template::list::create \ -name d_ri_caor \ -multirow d_ri_caor \ - -no_data "No Copyright or other Restrictions Available" \ - -actions [list "Add Copyright or other Restrictions" [export_vars -base rightsmd/rights_caor {ims_md_id}] "Add another Copyright or other Restrictions"] \ + -no_data "[_ lorsm.lt_No_Copyright_or_other]" \ + -actions [list "[_ lorsm.lt_Add_Copyright_or_othe]" [export_vars -base rightsmd/rights_caor {ims_md_id}] "[_ lorsm.lt_Add_another_Copyright]"] \ -html { align right style "width: 100%;" } \ -elements { caor { @@ -61,8 +61,8 @@ template::list::create \ -name d_ri_desc \ -multirow d_ri_desc \ - -no_data "No Description Available" \ - -actions [list "Add Description" [export_vars -base rightsmd/rights_desc {ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base rightsmd/rights_desc {ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { desc { Index: openacs-4/packages/lorsm/www/md/technicalmd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/Attic/technicalmd.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/md/technicalmd.tcl 14 Nov 2004 12:50:11 -0000 1.2 +++ openacs-4/packages/lorsm/www/md/technicalmd.tcl 3 Dec 2004 17:52:51 -0000 1.3 @@ -10,15 +10,15 @@ } # set context & title -set context [list [list [export_vars -base "." ims_md_id] "IMS Metadata Editor"] "Technical MD"] -set title "Technical MD" +set context [list [list [export_vars -base "." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.Technical_MD]"] +set title "[_ lorsm.Technical_MD]" # Technical Format template::list::create \ -name d_te_form \ -multirow d_te_form \ - -no_data "No Format Available" \ - -actions [list "Add Format" [export_vars -base technicalmd/technical_form {ims_md_id}] "Add another Format"] \ + -no_data "[_ lorsm.No_Format_Available]" \ + -actions [list "[_ lorsm.Add_Format]" [export_vars -base technicalmd/technical_form {ims_md_id}] "[_ lorsm.Add_another_Format]"] \ -html { align right style "width: 100%;" } \ -elements { format { @@ -39,8 +39,8 @@ template::list::create \ -name d_te_size \ -multirow d_te_size \ - -no_data "No Size Available" \ - -actions [list "Add Size" [export_vars -base technicalmd/technical_size {ims_md_id}] "Add another Size"] \ + -no_data "[_ lorsm.No_Size_Available]" \ + -actions [list "[_ lorsm.Add_Size]" [export_vars -base technicalmd/technical_size {ims_md_id}] "[_ lorsm.Add_another_Size]"] \ -html { align right style "width: 100%;" } \ -elements { t_size_bytes { @@ -87,21 +87,21 @@ template::list::create \ -name d_te_req \ -multirow d_te_req \ - -no_data "No Requirements Available" \ - -actions [list "Add Requirements" [export_vars -base technicalmd/technical_req {ims_md_id}] "Add another Requirement"] \ + -no_data "[_ lorsm.lt_No_Requirements_Avail]" \ + -actions [list "[_ lorsm.Add_Requirements]" [export_vars -base technicalmd/technical_req {ims_md_id}] "[_ lorsm.lt_Add_another_Requireme]"] \ -html { align right style "width: 100%;" } \ -elements { type { - label "Type" + label "[_ lorsm.Type]" } name { - label "Name" + label "[_ lorsm.Name]" } min_version { - label "Min Version" + label "[_ lorsm.Min_Version]" } max_version { - label "Max Version" + label "[_ lorsm.Max_Version]" } } @@ -121,8 +121,8 @@ template::list::create \ -name d_te_inst \ -multirow d_te_inst \ - -no_data "No Installation Remarks Available" \ - -actions [list "Add Installation Remark" [export_vars -base technicalmd/technical_inst {ims_md_id}] "Add another Installation remark"] \ + -no_data "[_ lorsm.lt_No_Installation_Remar]" \ + -actions [list "[_ lorsm.lt_Add_Installation_Rema]" [export_vars -base technicalmd/technical_inst {ims_md_id}] "[_ lorsm.lt_Add_another_Installat]"] \ -html { align right style "width: 100%;" } \ -elements { instl_rmrks { @@ -143,8 +143,8 @@ template::list::create \ -name d_te_otr \ -multirow d_te_otr \ - -no_data "No Other Platform Requirements Available" \ - -actions [list "Add Other Platform Requirements" [export_vars -base technicalmd/technical_otr {ims_md_id}] "Add another Other Platform Requiements"] \ + -no_data "[_ lorsm.lt_No_Other_Platform_Req]" \ + -actions [list "[_ lorsm.lt_Add_Other_Platform_Re]" [export_vars -base technicalmd/technical_otr {ims_md_id}] "[_ lorsm.lt_Add_another_Other_Pla]"] \ -html { align right style "width: 100%;" } \ -elements { otr_plt { @@ -165,8 +165,8 @@ template::list::create \ -name d_te_dur \ -multirow d_te_dur \ - -no_data "No Duration Available" \ - -actions [list "Add Duration" [export_vars -base technicalmd/technical_dur {ims_md_id}] "Add another Duration"] \ + -no_data "[_ lorsm.lt_No_Duration_Available]" \ + -actions [list "[_ lorsm.Add_Duration]" [export_vars -base technicalmd/technical_dur {ims_md_id}] "[_ lorsm.Add_another_Duration]"] \ -html { align right style "width: 100%;" } \ -elements { duration_sec { Index: openacs-4/packages/lorsm/www/md/annotationmd/annotation.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/annotationmd/Attic/annotation.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd/annotation.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd/annotation.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -12,15 +12,15 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] "Annotation Entry"] -set title "Annotation MD" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] "[_ lorsm.Annotation_Entry]"] +set title "[_ lorsm.Annotation_MD]" # Annotation Entity template::list::create \ -name d_an_ent \ -multirow d_an_ent \ - -no_data "No Entity Available" \ - -actions [list "Add Entity" [export_vars -base annotation_ent {ims_md_an_id ims_md_id}] "Add another Entity"] \ + -no_data "[_ lorsm.No_Entity_Available]" \ + -actions [list "[_ lorsm.Add_Entity]" [export_vars -base annotation_ent {ims_md_an_id ims_md_id}] "[_ lorsm.Add_another_Entity]"] \ -html { align right style "width: 100%;" } \ -elements { entity { @@ -40,15 +40,15 @@ template::list::create \ -name d_an_date \ -multirow d_an_date \ - -no_data "No Date Available" \ - -actions [list "Add Date" [export_vars -base annotation_date {ims_md_an_id ims_md_id}] "Add another Date"] \ + -no_data "[_ lorsm.No_Date_Available]" \ + -actions [list "[_ lorsm.Add_Date]" [export_vars -base annotation_date {ims_md_an_id ims_md_id}] "[_ lorsm.Add_another_Date]"] \ -html { align right style "width: 100%;" } \ -elements { date { - label "Date" + label "[_ lorsm.Date_1]" } datels { - label "Description" + label "[_ lorsm.Description_1]" } } @@ -65,8 +65,8 @@ template::list::create \ -name d_an_desc \ -multirow d_an_desc \ - -no_data "No Description Available" \ - -actions [list "Add Description" [export_vars -base annotation_desc {ims_md_an_id ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base annotation_desc {ims_md_an_id ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { desc { Index: openacs-4/packages/lorsm/www/md/annotationmd/annotation_add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/annotationmd/Attic/annotation_add.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd/annotation_add.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd/annotation_add.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] "Annotation Entry"] -set title "Add Annotation MD Entry" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] "[_ lorsm.Annotation_Entry]"] +set title "[_ lorsm.lt_Add_Annotation_MD_Ent]" # Form ad_form -name annotationmd_add \ Index: openacs-4/packages/lorsm/www/md/annotationmd/annotation_date.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/annotationmd/Attic/annotation_date.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd/annotation_date.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd/annotation_date.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,8 +18,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "Annotation Entry"] "Add/Edit Date"] -set title "Edit Annotation MD Date" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "[_ lorsm.Annotation_Entry]"] "[_ lorsm.AddEdit_Date]"] +set title "[_ lorsm.lt_Edit_Annotation_MD_Da]" # Form @@ -32,22 +32,22 @@ ims_md_an_id:key(ims_md_annotation_seq) {date:text,nospell - {section "Add/Edit Annotation MD Date"} + {section "[_ lorsm.lt_AddEdit_Annotation_MD_2]"} {html {size 10}} - {help_text "Date of contribution"} - {label "Date:"} + {help_text "[_ lorsm.Date_of_contribution]"} + {label "[_ lorsm.Date]"} } {date_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English (Required if entering Description)"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi_3]"} + {label "[_ lorsm.Language]"} } {date_s:text(textarea),nospell,optional {html {rows 2 cols 50}} - {help_text "Date and Time description"} - {label "Description:"} + {help_text "[_ lorsm.lt_Date_and_Time_descrip]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -72,14 +72,14 @@ template::list::create \ -name d_an_date \ -multirow d_an_date \ - -no_data "No Date Available" \ + -no_data "[_ lorsm.No_Date_Available]" \ -html { align right style "width: 100%;" } \ -elements { date { - label "Date" + label "[_ lorsm.Date_1]" } datels { - label "Description" + label "[_ lorsm.Description_1]" } } Index: openacs-4/packages/lorsm/www/md/annotationmd/annotation_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/annotationmd/Attic/annotation_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd/annotation_desc.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd/annotation_desc.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -20,11 +20,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_an_de_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "Annotation Entry"] "Edit Description"] + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "[_ lorsm.Annotation_Entry]"] "[_ lorsm.Edit_Description]"] set title "Edit Annotation MD Description" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "Annotation Entry"] "Add Description"] - set title "Add Annotation MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "[_ lorsm.Annotation_Entry]"] "[_ lorsm.Add_Description]"] + set title "[_ lorsm.lt_Add_Annotation_MD_Des]" } # Form @@ -37,16 +37,16 @@ ims_md_an_de_id:key(ims_md_annotation_descrip_seq) {descrip_l:text,nospell - {section "Add/Edit Annotation MD Description"} + {section "[_ lorsm.lt_AddEdit_Annotation_MD]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 2 cols 50}} - {help_text "Content of the annotation"} - {label "Description:"} + {help_text "[_ lorsm.lt_Content_of_the_annota]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -88,7 +88,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "annotation_desc" {ims_md_an_de_id ims_md_an_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/annotationmd/annotation_ent.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/annotationmd/Attic/annotation_ent.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/annotationmd/annotation_ent.tcl 14 Nov 2004 12:50:11 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/annotationmd/annotation_ent.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,8 +18,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../annotationmd" ims_md_id] "Annotation MD"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "Annotation Entry"] "Add/Edit Entity"] -set title "Edit Annotation MD Entity" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../annotationmd" ims_md_id] "[_ lorsm.Annotation_MD]"] [list [export_vars -base "annotation" {ims_md_id ims_md_an_id}] "[_ lorsm.Annotation_Entry]"] "[_ lorsm.AddEdit_Entity]"] +set title "[_ lorsm.lt_Edit_Annotation_MD_En]" # Form @@ -32,10 +32,10 @@ ims_md_an_id:key(ims_md_annotation_seq) {entity:text(textarea),nospell - {section "Add/Edit Annotation MD Entity"} + {section "[_ lorsm.lt_AddEdit_Annotation_MD_1]"} {html {rows 5 cols 50}} - {help_text "Annotator"} - {label "Entity:"} + {help_text "[_ lorsm.Annotator]"} + {label "[_ lorsm.Entity]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -58,7 +58,7 @@ template::list::create \ -name d_an_ent \ -multirow d_an_ent \ - -no_data "No Entity Available" \ + -no_data "[_ lorsm.No_Entity_Available]" \ -html { align right style "width: 100%;" } \ -elements { entity { Index: openacs-4/packages/lorsm/www/md/classificationmd/classification.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -12,15 +12,15 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] "Classification Entry"] -set title "Classification MD" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] "[_ lorsm.Classification_Entry]"] +set title "[_ lorsm.Classification_MD]" # Classification Purpose template::list::create \ -name d_cl_pur \ -multirow d_cl_pur \ - -no_data "No Purpose Available" \ - -actions [list "Add Purpose" [export_vars -base classification_pur {ims_md_cl_id ims_md_id}] "Add another Purpose"] \ + -no_data "[_ lorsm.No_Purpose_Available]" \ + -actions [list "[_ lorsm.Add_Purpose]" [export_vars -base classification_pur {ims_md_cl_id ims_md_id}] "[_ lorsm.Add_another_Purpose]"] \ -html { align right style "width: 100%;" } \ -elements { purpose_s { @@ -44,17 +44,17 @@ template::list::create \ -name d_cl_tpath \ -multirow d_cl_tpath \ - -no_data "No Taxonomic Paths Available" \ - -actions [list "Add Taxonomic Path" [export_vars -base classification_addpath {ims_md_cl_id ims_md_id}] "Add another Taxonomic Path"] \ + -no_data "[_ lorsm.lt_No_Taxonomic_Paths_Av]" \ + -actions [list "[_ lorsm.Add_Taxonomic_Path]" [export_vars -base classification_addpath {ims_md_cl_id ims_md_id}] "[_ lorsm.lt_Add_another_Taxonomic]"] \ -html { align right style "width: 100%;" } \ -elements { source { label "" } export { - display_eval {\[View\]} + display_eval {\[[_ lorsm.View]\]} link_url_eval { [export_vars -base "classification_tpath" {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] } - link_html {title "View associated Taxonomic Path Entry"} + link_html {title "[_ lorsm.lt_View_associated_Taxon]"} html { align right } } } @@ -77,8 +77,8 @@ template::list::create \ -name d_cl_desc \ -multirow d_cl_desc \ - -no_data "No Description Available" \ - -actions [list "Add Description" [export_vars -base classification_desc {ims_md_cl_id ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base classification_desc {ims_md_cl_id ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { desc { @@ -99,8 +99,8 @@ template::list::create \ -name d_cl_key \ -multirow d_cl_key \ - -no_data "No Keywords Available" \ - -actions [list "Add Keyword" [export_vars -base classification_key {ims_md_cl_id ims_md_id}] "Add another Keyword"] \ + -no_data "[_ lorsm.lt_No_Keywords_Available]" \ + -actions [list "[_ lorsm.Add_Keyword]" [export_vars -base classification_key {ims_md_cl_id ims_md_id}] "[_ lorsm.Add_another_Keyword]"] \ -html { align right style "width: 100%;" } \ -elements { keyword { Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_add.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_add.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_add.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -15,8 +15,8 @@ } # set context & title -set context [list "IMS Metadata Editor - Classification MD"] -set title "Add Classification MD Entry" +set context [list "[_ lorsm.lt_IMS_Metadata_Editor_-]"] +set title "[_ lorsm.lt_Add_Classification_MD]" # Form ad_form -name classificationmd_add \ Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_addpath.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_addpath.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_addpath.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_addpath.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,8 +18,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Add Taxonomic Path Entry"] -set title "Add Classification MD Taxonomic Path Entry" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.lt_Add_Taxonomic_Path_En]"] +set title "[_ lorsm.lt_Add_Classification_MD_1]" # Form ad_form -name classificationmd_addpath \ Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_desc.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_desc.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -20,11 +20,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_cl_de_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Edit Description"] - set title "Edit Classification MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.Edit_Description]"] + set title "[_ lorsm.lt_Edit_Classification_M_4]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Add Description"] - set title "Add Classification MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.Add_Description]"] + set title "[_ lorsm.lt_Add_Classification_MD_2]" } # Form @@ -37,16 +37,16 @@ ims_md_cl_de_id:key(ims_md_classification_desc_seq) {descrip_l:text,nospell - {section "Add/Edit Classification MD Description"} + {section "[_ lorsm.lt_AddEdit_Classificatio_5]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 2 cols 50}} - {help_text "Description of the learning object relative to its stated purpose"} - {label "Description:"} + {help_text "[_ lorsm.lt_Description_of_the_le]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -79,7 +79,7 @@ template::list::create \ -name d_cl_desc \ -multirow d_cl_desc \ - -no_data "No Description Available" \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ -html { align right style "width: 100%;" } \ -elements { desc { @@ -88,7 +88,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "classification_desc" {ims_md_cl_de_id ims_md_cl_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_key.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_key.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_key.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_key.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -20,11 +20,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_cl_ke_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Edit Keyword"] - set title "Edit Classification MD Keyword" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.Edit_Keyword_1]"] + set title "[_ lorsm.lt_Edit_Classification_M]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Add Keyword"] - set title "Add Classification MD Keyword" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.Add_Keyword]"] + set title "[_ lorsm.lt_Add_Classification_MD_3]" } # Form @@ -37,16 +37,16 @@ ims_md_cl_ke_id:key(ims_md_classification_keyword_seq) {keyword_l:text,nospell - {section "Add/Edit Classification MD Keyword"} + {section "[_ lorsm.lt_AddEdit_Classificatio_6]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {keyword_s:text,nospell {html {size 20}} - {help_text "Keyword description of the resource"} - {label "Keyword:"} + {help_text "[_ lorsm.lt_Keyword_description_o]"} + {label "[_ lorsm.Keyword]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -79,7 +79,7 @@ template::list::create \ -name d_cl_key \ -multirow d_cl_key \ - -no_data "No Keyword Available" \ + -no_data "[_ lorsm.No_Keyword_Available]" \ -html { align right style "width: 100%;" } \ -elements { keyword { @@ -88,7 +88,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "classification_key" {ims_md_cl_ke_id ims_md_cl_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_pur.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_pur.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_pur.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_pur.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,8 +19,8 @@ # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "Classification Entry"] "Add/Edit Purpose"] -set title "Edit Classification MD Purpose" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.AddEdit_Purpose]"] +set title "[_ lorsm.lt_Edit_Classification_M_1]" # Form @@ -33,16 +33,16 @@ ims_md_cl_id:key(ims_md_classification_seq) {purpose_s:text,nospell - {section "Add/Edit Classification MD Purpose"} + {section "[_ lorsm.lt_AddEdit_Classificatio_7]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {purpose_v:text,nospell {html {size 20}} - {help_text "Characteristics of the resource described by this classification entry"} - {label "Purpose:"} + {help_text "[_ lorsm.lt_Characteristics_of_th]"} + {label "[_ lorsm.Purpose]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -66,7 +66,7 @@ template::list::create \ -name d_cl_pur \ -multirow d_cl_pur \ - -no_data "No Purpose Available" \ + -no_data "[_ lorsm.No_Purpose_Available]" \ -html { align right style "width: 100%;" } \ -elements { purpose_s { Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_taxon.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_taxon.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_taxon.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_taxon.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -21,11 +21,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_cl_ta_ta_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Classification Entry"] [list [export_vars -base "classification_tpath" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Taxonomic Paths"] "Edit Taxonomy"] - set title "Edit Classification MD Taxonomic Path Taxonomy" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.Classification_Entry]"] [list [export_vars -base "classification_tpath" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.Taxonomic_Paths_2]"] "[_ lorsm.Edit_Taxonomy]"] + set title "[_ lorsm.lt_Edit_Classification_M_2]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Classification Entry"] [list [export_vars -base "classification_tpath" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Taxonomic Paths"] "Add Taxonomy"] - set title "Add Classification MD Taxonomic Path Taxonomy" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.lt_Classification_Entry_]"] "[_ lorsm.Add_Taxonomy]"] + set title "[_ lorsm.lt_Add_Classification_MD_4]" } # Form @@ -38,22 +38,22 @@ ims_md_cl_ta_ta_id:key(ims_md_classification_taxpath_taxon_seq) {identifier:text,nospell - {section "Add/Edit Classification MD Taxonomic Path Taxonomy"} + {section "[_ lorsm.lt_AddEdit_Classificatio_8]"} {html {size 50}} - {help_text "Taxon's identifier in taxonomic system"} - {label "Identifier:"} + {help_text "[_ lorsm.lt_Taxons_identifier_in_]"} + {label "[_ lorsm.Identifier]"} } {entry_l:text,nospell {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {entry_s:text,nospell {html {size 50}} - {help_text "Number in the Catalog i.e.: '1.3.1'"} - {label "Entry:"} + {help_text "[_ lorsm.lt_Number_in_the_Catalog]"} + {label "[_ lorsm.Entry]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -90,19 +90,19 @@ template::list::create \ -name d_cl_taxon \ -multirow d_cl_taxon \ - -no_data "No Taxonomies Available" \ + -no_data "[_ lorsm.lt_No_Taxonomies_Availab]" \ -html { align right style "width: 100%;" } \ -elements { identifier { - label "ID" + label "[_ lorsm.ID]" } entry { - label "Entry" + label "[_ lorsm.Entry_1]" } export { - display_eval {\[Edit\]} + display_eval {\[[_ lorsm.Edit_1]\]} link_url_eval { [export_vars -base "classification_taxon" {ims_md_cl_ta_ta_id ims_md_cl_ta_id ims_md_cl_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_tpath.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_tpath.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_tpath.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_tpath.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -13,15 +13,15 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Classification Entry"] "Taxonomic Paths"] -set title "Classification MD Taxonomic Path" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.Classification_Entry]"] "[_ lorsm.Taxonomic_Paths_1]"] +set title "[_ lorsm.lt_Classification_MD_Tax]" # Classification Taxonomic Path Source template::list::create \ -name d_cl_source \ -multirow d_cl_source \ - -no_data "No Source Available" \ - -actions [list "Add Source" [export_vars -base classification_tsource {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] "Add another Source"] \ + -no_data "[_ lorsm.No_Source_Available]" \ + -actions [list "[_ lorsm.Add_Source]" [export_vars -base classification_tsource {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] "[_ lorsm.Add_another_Source]"] \ -html { align right style "width: 100%;" } \ -elements { source { @@ -43,15 +43,15 @@ template::list::create \ -name d_cl_taxon \ -multirow d_cl_taxon \ - -no_data "No Taxonomies Available" \ - -actions [list "Add Taxonomy" [export_vars -base classification_taxon {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] "Add another Taxonomy"] \ + -no_data "[_ lorsm.lt_No_Taxonomies_Availab]" \ + -actions [list "[_ lorsm.Add_Taxonomy]" [export_vars -base classification_taxon {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] "[_ lorsm.Add_another_Taxonomy]"] \ -html { align right style "width: 100%;" } \ -elements { identifier { - label "ID" + label "[_ lorsm.ID]" } entry { - label "Entry" + label "[_ lorsm.Entry_1]" } } Index: openacs-4/packages/lorsm/www/md/classificationmd/classification_tsource.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/classificationmd/Attic/classification_tsource.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/classificationmd/classification_tsource.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/classificationmd/classification_tsource.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -20,9 +20,9 @@ # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../classificationmd" ims_md_id] "Classification MD"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Classification Entry"] [list [export_vars -base "classification_tpath" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "Taxonomic Paths"] "Add/Edit Source"] +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../classificationmd" ims_md_id] "[_ lorsm.Classification_MD]"] [list [export_vars -base "classification" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.Classification_Entry]"] [list [export_vars -base "classification_tpath" {ims_md_id ims_md_cl_id ims_md_cl_ta_id}] "[_ lorsm.Taxonomic_Paths_1]"] "[_ lorsm.AddEdit_Source]"] -set title "Edit Classification MD Taxonomic Path Source" +set title "[_ lorsm.lt_Edit_Classification_M_3]" # Form @@ -35,16 +35,16 @@ ims_md_cl_ta_id:key(ims_md_classification_taxpath_seq) {source_l:text,nospell - {section "Add/Edit Classification MD Taxonomic Path Source"} + {section "[_ lorsm.lt_AddEdit_Classificatio_9]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {source_v:text,nospell {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ims_md_cl_id:text(hidden) {value $ims_md_cl_id} @@ -71,16 +71,16 @@ template::list::create \ -name d_cl_tsource \ -multirow d_cl_tsource \ - -no_data "No Taxonomic Path Source Available" \ + -no_data "[_ lorsm.lt_No_Taxonomic_Path_Sou]" \ -html { align right style "width: 100%;" } \ -elements { source { label "" } export { - display_eval {\[Edit\]} + display_eval {\[[_ lorsm.Edit_1]\]} link_url_eval { [export_vars -base "classification_tsource" {ims_md_cl_ta_id ims_md_cl_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_cont.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_cont.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_cont.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_cont.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_co_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" im\s_md_id] "Educational MD"] "Edit Context"] - set title "Edit Educational MD Context" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" im\s_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Edit_Context]"] + set title "[_ lorsm.lt_Edit_Educational_MD_C]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" im\s_md_id] "Educational MD"] "Add Context"] - set title "Add Educational MD Context" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" im\s_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Add_Context]"] + set title "[_ lorsm.lt_Add_Educational_MD_Co]" } # Form @@ -36,16 +36,16 @@ ims_md_ed_co_id:key(ims_md_educational_context_seq) {context_s:text,nospell - {section "Add/Edit Educational MD Context"} + {section "[_ lorsm.lt_AddEdit_Educational_M_11]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {context_v:text,nospell {html {size 20}} - {help_text "Learning environment where use of learning object is intended to take place"} - {label "Context:"} + {help_text "[_ lorsm.lt_Learning_environment_]"} + {label "[_ lorsm.Context]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -72,16 +72,16 @@ template::list::create \ -name d_ed_cont \ -multirow d_ed_cont \ - -no_data "No Context Available" \ + -no_data "[_ lorsm.No_Context_Available]" \ -html { align right style "width: 100%;" } \ -elements { context { - label "Context" + label "[_ lorsm.Context_1]" } export { - display_eval {\[Edit\]} + display_eval {\[[_ lorsm.Edit_1]\]} link_url_eval { [export_vars -base "educational_cont" {ims_md_ed_co_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_desc.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_desc.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_de_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Edit Description"] - set title "Edit Educational MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Edit_Description]"] + set title "[_ lorsm.lt_Edit_Educational_MD_D]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add Description"] - set title "Add Educational MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Add_Description]"] + set title "[_ lorsm.lt_Add_Educational_MD_De]" } # Form @@ -36,16 +36,16 @@ ims_md_ed_de_id:key(ims_md_educational_descrip_seq) {descrip_l:text,nospell - {section "Add/Edit Educational MD Description"} + {section "[_ lorsm.lt_AddEdit_Educational_M_12]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 2 cols 50}} - {help_text "How the learning object is to be used"} - {label "Description:"} + {help_text "[_ lorsm.lt_How_the_learning_obje]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -72,16 +72,16 @@ template::list::create \ -name d_ed_desc \ -multirow d_ed_desc \ - -no_data "No Description Available" \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ -html { align right style "width: 100%;" } \ -elements { desc { - label "Description" + label "[_ lorsm.Description_1]" } export { - display_eval {\[Edit\]} + display_eval {\[[_ lorsm.Edit_1]\]} link_url_eval { [export_vars -base "educational_desc" {ims_md_ed_de_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_dif.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_dif.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_dif.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_dif.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add/Edit Difficulty"] -set title "Add/Edit Educational MD Difficulty" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.AddEdit_Difficulty]"] +set title "[_ lorsm.lt_AddEdit_Educational_M_13]" # Form @@ -28,16 +28,16 @@ -form { {difficulty_s:text,nospell - {section "Add/Edit Educational MD Difficulty"} + {section "[_ lorsm.lt_AddEdit_Educational_M_13]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {difficulty_v:text,nospell {html {size 10}} - {help_text "Level of difficulty in working through the learning object"} - {label "Difficulty:"} + {help_text "[_ lorsm.lt_Level_of_difficulty_i]"} + {label "[_ lorsm.Difficulty]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_ed_dif \ -multirow d_ed_dif \ - -no_data "No Difficulty Type Available" \ + -no_data "[_ lorsm.lt_No_Difficulty_Type_Av]" \ -html { align right style "width: 100%;" } \ -elements { diff { - label "Difficulty" + label "[_ lorsm.Difficulty_1]" } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_ieur.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_ieur.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_ieur.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_ieur.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_ie_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Edit Intended End User Role"] - set title "Edit Educational MD Intended End User Role" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_Edit_Intended_End_Use]"] + set title "[_ lorsm.lt_Edit_Educational_MD_I]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add Intended End User Role"] - set title "Add Educational MD Intended End User Role" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_Add_Intended_End_User]"] + set title "[_ lorsm.lt_Add_Educational_MD_In]" } # Form @@ -36,16 +36,16 @@ ims_md_ed_ie_id:key(ims_md_educational_ieur_seq) {ieur_s:text,nospell - {section "Add/Edit Educational MD Intended End User Role"} + {section "[_ lorsm.lt_AddEdit_Educational_M_14]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ieur_v:text,nospell {html {size 10}} - {help_text "Normal user of the learning object"} - {label "Intended End User Role:"} + {help_text "[_ lorsm.lt_Normal_user_of_the_le]"} + {label "[_ lorsm.lt_Intended_End_User_Rol]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -72,16 +72,16 @@ template::list::create \ -name d_ed_ieur \ -multirow d_ed_ieur \ - -no_data "No Intended End User Role Available" \ + -no_data "[_ lorsm.lt_No_Intended_End_User_]" \ -html { align right style "width: 100%;" } \ -elements { ieur { - label "Intended End User Role" + label "[_ lorsm.lt_Intended_End_User_Rol_1]" } export { - display_eval {\[Edit\]} + display_eval {\[[_ lorsm.Edit_1]\]} link_url_eval { [export_vars -base "educational_ieur" {ims_md_ed_ie_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_intl.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_intl.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_intl.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_intl.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,9 +17,9 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" \im\\\s_md_id] "Educational MD"] "Add/Edit Interactivity Type"] +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" \im\\\s_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_AddEdit_Interactivity]"] -set title "Edit Educational MD Interactivity Level" +set title "[_ lorsm.lt_Edit_Educational_MD_I_1]" # Form @@ -29,16 +29,16 @@ -form { {int_level_s:text,nospell - {section "Add/Edit Educational MD Interactivity Level"} + {section "[_ lorsm.lt_AddEdit_Educational_M_15]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {int_level_v:text,nospell {html {size 10}} - {help_text "Level of interactivity supported by the resource"} - {label "Interactivity Level:"} + {help_text "[_ lorsm.lt_Level_of_interactivit]"} + {label "[_ lorsm.Interactivity_Level]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_ed_intl \ -multirow d_ed_intl \ - -no_data "No Interactivity Level Available" \ + -no_data "[_ lorsm.lt_No_Interactivity_Leve]" \ -html { align right style "width: 100%;" } \ -elements { intl { - label "Interactivity Level" + label "[_ lorsm.Interactivity_Level_1]" } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_intt.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_intt.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_intt.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_intt.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add/Edit Interactivity Type"] -set title "Add/Edit Educational MD Interactivity Type" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_AddEdit_Interactivity]"] +set title "[_ lorsm.lt_AddEdit_Educational_M_16]" # Form @@ -28,16 +28,16 @@ -form { {int_type_s:text,nospell - {section "Add/Edit Educational MD Interactivity Type"} + {section "[_ lorsm.lt_AddEdit_Educational_M_16]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {int_type_v:text,nospell {html {size 10}} - {help_text "Type of interactivity supported by the resource"} - {label "Interactivity Type:"} + {help_text "[_ lorsm.lt_Type_of_interactivity]"} + {label "[_ lorsm.Interactivity_Type]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -68,11 +68,11 @@ template::list::create \ -name d_ed_intt \ -multirow d_ed_intt \ - -no_data "No Interactivity Type Available" \ + -no_data "[_ lorsm.lt_No_Interactivity_Type]" \ -html { align right style "width: 100%;" } \ -elements { intt { - label "Interactivity Type" + label "[_ lorsm.Interactivity_Type_1]" } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_lang.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_lang.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_lang.tcl 14 Nov 2004 12:50:12 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_lang.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_la_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Edit Language"] - set title "Edit Educational MD Language" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Edit_Language]"] + set title "[_ lorsm.lt_Edit_Educational_MD_L]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add Language"] - set title "Add Educational MD Language" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Add_Language]"] + set title "[_ lorsm.lt_Add_Educational_MD_La]" } # Form @@ -36,10 +36,10 @@ ims_md_ed_la_id:key(ims_md_educational_lang_seq) {language:text,nospell - {section "Add/Edit Educational MD Language"} + {section "[_ lorsm.lt_AddEdit_Educational_M_17]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -65,16 +65,16 @@ template::list::create \ -name d_ed_lang \ -multirow d_ed_lang \ - -no_data "No Language Available" \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ -html { align right style "width: 100%;" } \ -elements { language { - label "Language" + label "[_ lorsm.Language_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "educational_lang" {ims_md_ed_la_id ims_md_id}] } - link_html {title "Edit Record"} +q link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_lrt.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_lrt.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_lrt.tcl 14 Nov 2004 12:50:13 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_lrt.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,11 +17,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_lr_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" \i\m\\\s_md_id] "Educational MD"] "Edit Learning Resource Type"] - set title "Edit Educational MD Learning Resource Type" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" \i\m\\\s_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_Edit_Learning_Resourc]"] + set title "[_ lorsm.lt_Edit_Educational_MD_L_1]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" \i\m\\\s_md_id] "Educational MD"] "Add Learning Resource Type"] - set title "Add Educational MD Learning Resource Type" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor] "] [list [export_vars -base "../educationalmd" \i\m\\\s_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_Add_Learning_Resource]"] + set title "[_ lorsm.lt_Add_Educational_MD_Le]" } # Form @@ -34,16 +34,16 @@ ims_md_ed_lr_id:key(ims_md_educational_lrt_seq) {lrt_s:text,nospell - {section "Add/Edit Educational MD Learning Resource Type"} + {section "[_ lorsm.lt_AddEdit_Educational_M_18]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {lrt_v:text,nospell {html {size 10}} - {help_text "Type of interactivity supported by the resource"} - {label "Learning Resource Type:"} + {help_text "[_ lorsm.lt_Type_of_interactivity]"} + {label "[_ lorsm.lt_Learning_Resource_Typ]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -70,7 +70,7 @@ template::list::create \ -name d_ed_lrt \ -multirow d_ed_lrt \ - -no_data "No Learning Resource Type Available" \ + -no_data "[_ lorsm.lt_No_Learning_Resource_]" \ -html { align right style "width: 100%;" } \ -elements { lrt { @@ -79,7 +79,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "educational_lrt" {ims_md_ed_lr_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_semd.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_semd.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_semd.tcl 14 Nov 2004 12:50:13 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_semd.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,8 +18,8 @@ # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add/Edit Semantic Density"] -set title "Edit Educational MD Semantic Density" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_AddEdit_Semantic_Dens]"] +set title "[_ lorsm.lt_Edit_Educational_MD_S]" # Form @@ -29,16 +29,16 @@ -form { {sem_density_s:text,nospell - {section "Add/Edit Educational MD Semantic Density"} + {section "[_ lorsm.lt_AddEdit_Educational_M_19]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {sem_density_v:text,nospell {html {size 10}} - {help_text "Learning object's usefulness as compared to its size or duration"} - {label "Semantic Density:"} + {help_text "[_ lorsm.lt_Learning_objects_usef]"} + {label "[_ lorsm.Semantic_Density]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -70,11 +70,11 @@ template::list::create \ -name d_ed_semd \ -multirow d_ed_semd \ - -no_data "No Semantic Density Available" \ + -no_data "[_ lorsm.lt_No_Semantic_Density_A]" \ -html { align right style "width: 100%;" } \ -elements { semd { - label "Semantic Density" + label "[_ lorsm.Semantic_Density_1]" } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_tar.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_tar.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_tar.tcl 14 Nov 2004 12:50:13 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_tar.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ed_ta_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Edit Typical Age Range"] - set title "Edit Educational MD Typical Age Range" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_Edit_Typical_Age_Rang]"] + set title "[_ lorsm.lt_Edit_Educational_MD_T]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add Typical Age Rang"] - set title "Add Educational MD Typical Age Range" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.Add_Typical_Age_Rang]"] + set title "[_ lorsm.lt_Add_Educational_MD_Ty]" } # Form @@ -36,16 +36,16 @@ ims_md_ed_ta_id:key(ims_md_educational_tar_seq) {tar_l:text,nospell - {section "Add/Edit Educational MD Typical Age Range"} + {section "[_ lorsm.lt_AddEdit_Educational_M_20]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {tar_s:text,nospell {html {size 20}} - {help_text "Age of the typical intended user"} - {label "Typical Age Range:"} + {help_text "[_ lorsm.lt_Age_of_the_typical_in]"} + {label "[_ lorsm.Typical_Age_Range]" } } {ims_md_id:text(hidden) {value $ims_md_id} @@ -72,16 +72,16 @@ template::list::create \ -name d_ed_tar \ -multirow d_ed_tar \ - -no_data "No Typical Age Range Available" \ + -no_data "[_ lorsm.lt_No_Typical_Age_Range_]" \ -html { align right style "width: 100%;" } \ -elements { tar { - label "Typical Age Range" + label "[_ lorsm.Typical_Age_Range_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "educational_tar" {ims_md_ed_ta_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/educationalmd/educational_tlt.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/educationalmd/Attic/educational_tlt.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/educationalmd/educational_tlt.tcl 14 Nov 2004 12:50:13 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/educationalmd/educational_tlt.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../educationalmd" ims_md_id] "Educational MD"] "Add/Edit Typical Learning Time"] -set title "Edit Educational MD Typical Learning Time" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../educationalmd" ims_md_id] "[_ lorsm.Educational_MD]"] "[_ lorsm.lt_AddEdit_Typical_Learn]"] +set title "[_ lorsm.lt_Edit_Educational_MD_T_1]" # Form @@ -28,22 +28,22 @@ -form { {type_lrn_time_l:text,nospell,optional - {section "Add/Edit Educational MD Typical Learning Time"} + {section "[_ lorsm.lt_AddEdit_Educational_M_21]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {type_lrn_time_s:text(textarea),nospell,optional {html {rows 2 cols 50}} - {help_text "Brief Description (Required if entering Language)"} - {label "Description:"} + {help_text "[_ lorsm.lt_Brief_Description_Req]"} + {label "[_ lorsm.Description]"} } {type_lrn_time:text,nospell {html {size 20}} - {help_text "Amount of time it takes to work with the resource"} - {label "Typical Learning Time:"} + {help_text "[_ lorsm.lt_Amount_of_time_it_tak]"} + {label "[_ lorsm.lt_Typical_Learning_Time]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -76,14 +76,14 @@ template::list::create \ -name d_ed_tlt \ -multirow d_ed_tlt \ - -no_data "No Typical Learning Time Available" \ + -no_data "[_ lorsm.lt_No_Typical_Learning_T]" \ -html { align right style "width: 100%;" } \ -elements { tlt { - label "Typical Learning Time" + label "[_ lorsm.lt_Typical_Learning_Time_1]" } tlt_ls { - label "Language" + label "[_ lorsm.Language_1]" } } Index: openacs-4/packages/lorsm/www/md/form-md-record/md-record.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/form-md-record/Attic/md-record.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/form-md-record/md-record.tcl 14 Nov 2004 12:50:13 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/form-md-record/md-record.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -1,14 +1,14 @@ set actions [list] -lappend actions "General MD" [export_vars -base ../generalmd {ims_md_id}] "View General Metadata" -lappend actions "Lifecycle MD" [export_vars -base ../lifecyclemd {ims_md_id}] "View Lifecycle Metadata" -lappend actions "Meta MD" [export_vars -base ../metamd {ims_md_id}] "View Meta Metadata" -lappend actions "Technical MD" [export_vars -base ../technicalmd {ims_md_id}] "View Technical Metadata" -lappend actions "Educational MD" [export_vars -base ../educationalmd {ims_md_id}] "View Educational Metadata" -lappend actions "Rights MD" [export_vars -base ../rightsmd {ims_md_id}] "View Rights Metadata" -lappend actions "Relation MD" [export_vars -base ../relationmd {ims_md_id}] "View Relation Metadata" -lappend actions "Annotation MD" [export_vars -base ../annotationmd {ims_md_id}] "View Annotation Metadata" -lappend actions "Classification MD" [export_vars -base ../classificationmd {ims_md_id}] "View Classification Metadata" +lappend actions "[_ lorsm.General_MD]" [export_vars -base ../generalmd {ims_md_id}] "[_ lorsm.lt_View_General_Metadata]" +lappend actions "[_ lorsm.Lifecycle_MD]" [export_vars -base ../lifecyclemd {ims_md_id}] "[_ lorsm.lt_View_Lifecycle_Metada]" +lappend actions "[_ lorsm.Meta_MD]" [export_vars -base ../metamd {ims_md_id}] "[_ lorsm.View_Meta_Metadata]" +lappend actions "[_ lorsm.Technical_MD]" [export_vars -base ../technicalmd {ims_md_id}] "[_ lorsm.lt_View_Technical_Metada]" +lappend actions "[_ lorsm.Educational_MD]" [export_vars -base ../educationalmd {ims_md_id}] "[_ lorsm.lt_View_Educational_Meta]" +lappend actions "[_ lorsm.Rights_MD]" [export_vars -base ../rightsmd {ims_md_id}] "[_ lorsm.View_Rights_Metadata]" +lappend actions "[_ lorsm.Relation_MD]" [export_vars -base ../relationmd {ims_md_id}] "[_ lorsm.lt_View_Relation_Metadat]" +lappend actions "[_ lorsm.Annotation_MD]" [export_vars -base ../annotationmd {ims_md_id}] "[_ lorsm.lt_View_Annotation_Metad]" +lappend actions "[_ lorsm.Classification_MD]" [export_vars -base ../classificationmd {ims_md_id}] "[_ lorsm.lt_View_Classification_M_1]" # Presentation @@ -19,7 +19,7 @@ -actions $actions \ -elements { object_type { - label "Object Type" + label "[_ lorsm.Object_Type]" } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_aggl.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_aggl.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_aggl.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_aggl.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\\\s_md_id] "General MD"] "Edit Aggregation Level"] -set title "Edit General MD Aggregation Level" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.lt_Edit_Aggregation_Leve]"] +set title "[_ lorsm.lt_Edit_General_MD_Aggre]" # Form @@ -30,16 +30,16 @@ {agg_level_v:text,nospell - {section "Add/Edit General MD Aggregation Level"} + {section "[_ lorsm.lt_AddEdit_General_MD_Ag]"} {html {size 10}} - {help_text "Functional size of the resource"} - {label "Aggregation Level:"} + {help_text "[_ lorsm.lt_Functional_size_of_th]"} + {label "[_ lorsm.Aggregation_Level]"} } {agg_level_s:text,nospell,optional {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -72,19 +72,19 @@ template::list::create \ -name d_gen_aggl \ -multirow d_gen_aggl \ - -no_data "No Aggregation Level Available" \ + -no_data "[_ lorsm.lt_No_Aggregation_Level__1]" \ -html { align right style "width: 100%;" } \ -elements { agg_level_s { - label "Source" + label "[_ lorsm.Source_1]" } agg_level_v { - label "Value" + label "[_ lorsm.Value]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_aggl" {ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record] "} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_cata.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_cata.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_cata.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_cata.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_cata_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\s_md_id] "General MD"] "Edit Catalog-Entry"] - set title "Edit General MD Catalog-Entry" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Catalog-Entry]"] + set title "[_ lorsm.lt_Edit_General_MD_Catal]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\s_md_id] "General MD"] "Add Catalog-Entry"] - set title "Add General MD Catalog-Entry" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Catalog-Entry]"] + set title "[_ lorsm.lt_Add_General_MD_Catalo]" } # Form @@ -36,22 +36,22 @@ ims_md_ge_cata_id:key(ims_md_general_cata_seq) {catalog:text,nospell - {section "Add/Edit General MD Catalog-Entry"} + {section "[_ lorsm.lt_AddEdit_General_MD_Ca]"} {html {size 50}} - {help_text "Name of the catalog"} - {label "Catalog:"} + {help_text "[_ lorsm.Name_of_the_catalog]"} + {label "[_ lorsm.Catalog]"} } {entry_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {entry_s:text,nospell {html {size 50}} - {help_text "Number in the Catalog i.e.: '1.3.1'"} - {label "Entry:"} + {help_text "[_ lorsm.lt_Number_in_the_Catalog]"} + {label "[_ lorsm.Entry]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -79,22 +79,22 @@ template::list::create \ -name d_gen_cata \ -multirow d_gen_cata \ - -no_data "No Catalog Entry Available" \ + -no_data "[_ lorsm.lt_No_Catalog_Entry_Avai]" \ -html { align right style "width: 100%;" } \ -elements { catalog { - label "Catalog" + label "[_ lorsm.Catalog_1]" } entry_l { - label "Language" + label "[_ lorsm.Language_1]" } entry_s { - label "Entry" + label "[_ lorsm.Entry_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_cata" {ims_md_ge_cata_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_cover.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_cover.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_cover.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_cover.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_cove_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\s_md_id] "General MD"] "Edit Coverage"] - set title "Edit General MD Coverage" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Coverage]"] + set title "[_ lorsm.lt_Edit_General_MD_Cover]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\s_md_id] "General MD"] "Add Coverage"] - set title "Add General MD Coverage" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Coverage]"] + set title "[_ lorsm.lt_Add_General_MD_Covera]" } # Form @@ -36,16 +36,16 @@ ims_md_ge_cove_id:key(ims_md_general_cover_seq) {cover_l:text,nospell,optional - {section "Add/Edit General MD Coverage"} + {section "[_ lorsm.lt_AddEdit_General_MD_Co]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {cover_s:text,nospell {html {size 50}} - {help_text "Temporal/spatial characteristics of content"} - {label "Coverage:"} + {help_text "[_ lorsm.lt_Temporalspatial_chara]"} + {label "[_ lorsm.Coverage]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -73,19 +73,19 @@ template::list::create \ -name d_gen_cover \ -multirow d_gen_cover \ - -no_data "No Coverage Available" \ + -no_data "[_ lorsm.lt_No_Coverage_Available]" \ -html { align right style "width: 100%;" } \ -elements { cover_l { - label "Language" + label "[_ lorsm.Language_1]" } cover_s { - label "Coverage" + label "[_ lorsm.Coverage_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_cover" {ims_md_ge_cove_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_desc.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_desc.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_desc_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" ims_md_id] "General MD"] "Edit Description"] - set title "Edit General MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" ims_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Description]"] + set title "[_ lorsm.lt_Edit_General_MD_Descr]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" ims_md_id] "General MD"] "Add Description"] - set title "Add General MD Description" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" ims_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Description]"] + set title "[_ lorsm.lt_Add_General_MD_Descri]" } # Form @@ -36,16 +36,16 @@ ims_md_ge_desc_id:key(ims_md_general_desc_seq) {descrip_l:text,nospell,optional - {section "Add/Edit General MD Description"} + {section "[_ lorsm.lt_AddEdit_General_MD_De]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 5 cols 50}} - {help_text "Describes learning object's content"} - {label "Description:"} + {help_text "[_ lorsm.lt_Describes_learning_ob]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -73,19 +73,19 @@ template::list::create \ -name d_gen_desc \ -multirow d_gen_desc \ - -no_data "No Description Available" \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ -html { align right style "width: 100%;" } \ -elements { descrip_l { - label "Language" + label "[_ lorsm.Language_1]" } descrip_s { - label "Description" + label "[_ lorsm.Description_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_desc" {ims_md_ge_desc_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record] "} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_key.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_key.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_key.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_key.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_key_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\s_md_id] "General MD"] "Edit Keyword"] - set title "Edit General MD Keyword" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Keyword_1]"] + set title "[_ lorsm.lt_Edit_General_MD_Keywo]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\s_md_id] "General MD"] "Add Keyword"] - set title "Add General MD Keyword" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]" ] [list [export_vars -base "../generalmd" im\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Keyword]"] + set title "[_ lorsm.lt_Add_General_MD_Keywor]" } # Form @@ -36,16 +36,16 @@ ims_md_ge_key_id:key(ims_md_general_key_seq) {keyword_l:text,nospell,optional - {section "Add/Edit General MD Keyword"} + {section "[_ lorsm.lt_AddEdit_General_MD_Ke]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {keyword_s:text,nospell {html {size 50}} - {help_text "Keyword description of the resource"} - {label "Keyword:"} + {help_text "[_ lorsm.lt_Keyword_description_o]"} + {label "[_ lorsm.Keyword]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -73,7 +73,7 @@ template::list::create \ -name d_gen_key \ -multirow d_gen_key \ - -no_data "No Keywords Available" \ + -no_data "[_ lorsm.lt_No_Keywords_Available]" \ -html { align right style "width: 100%;" } \ -elements { keyword_l { @@ -85,7 +85,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_key" {ims_md_ge_key_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_lang.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_lang.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_lang.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_lang.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_lang_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\s_md_id] "General MD"] "Edit Language"] - set title "Edit General MD Language" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Language]"] + set title "[_ lorsm.lt_Edit_General_MD_Langu]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\s_md_id] "General MD"] "Add Language"] - set title "Add General MD Language" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Language]"] + set title "[_ lorsm.lt_Add_General_MD_Langua]" } # Form @@ -36,10 +36,10 @@ ims_md_ge_lang_id:key(ims_md_general_lang_seq) {language:text,nospell - {section "Add/Edit General MD Language"} + {section "[_ lorsm.lt_AddEdit_General_MD_La]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -67,16 +67,16 @@ template::list::create \ -name d_gen_lang \ -multirow d_gen_lang \ - -no_data "No Language Available" \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ -html { align right style "width: 100%;" } \ -elements { language { - label "Language" + label "[_ lorsm.Language_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "general_lang" {ims_md_ge_lang_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_struc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_struc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_struc.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_struc.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,8 +18,8 @@ # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" im\\\\s_md_id] "General MD"] "Edit Structure"] -set title "Edit General MD Structure" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" im\\\\s_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Structure]"] +set title "[_ lorsm.lt_Edit_General_MD_Struc]" # Form @@ -29,16 +29,16 @@ -form { {structure_v:text - {section "Add/Edit General MD Structure"} + {section "[_ lorsm.lt_AddEdit_General_MD_St]"} {html {size 10}} - {help_text "Organizational structure of the resource"} - {label "Structure:"} + {help_text "[_ lorsm.lt_Organizational_struct]"} + {label "[_ lorsm.Structure]"} } {structure_s:text,nospell,optional {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -70,15 +70,15 @@ template::list::create \ -name d_gen_struc \ -multirow d_gen_struc \ - -no_data "No Structure Available" \ + -no_data "[_ lorsm.lt_No_Structure_Availabl]" \ -html { align right style "width: 100%;" } \ -elements { structure_s { - label "Source" + label "[_ lorsm.Source_1]" html {align center} } structure_v { - label "Value" + label "[_ lorsm.Value]" html {align center} } } Index: openacs-4/packages/lorsm/www/md/generalmd/general_title.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/generalmd/Attic/general_title.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/generalmd/general_title.tcl 14 Nov 2004 12:50:14 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/generalmd/general_title.tcl 3 Dec 2004 17:52:51 -0000 1.2 @@ -18,12 +18,12 @@ # set context & title if { ![ad_form_new_p -key ims_md_ge_ti_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" ims_md_id] "General MD"] "Edit Titles"] - set title "Edit General MD Title" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" ims_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Edit_Titles]"] + set title "[_ lorsm.lt_Edit_General_MD_Title]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../generalmd" ims_md_id] "General MD"] "Add Titles"] -# set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] "General MD"] - set title "Add General MD Title" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../generalmd" ims_md_id] "[_ lorsm.General_MD]"] "[_ lorsm.Add_Titles]"] +# set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] "[_ lorsm.General_MD]"] + set title "[_ lorsm.Add_General_MD_Title]" } # Form @@ -36,16 +36,16 @@ ims_md_ge_ti_id:key(ims_md_general_title_seq) {title_l:text,nospell,optional - {section "Add/Edit General MD Title"} + {section "[_ lorsm.lt_AddEdit_General_MD_Ti]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {title_s:text,nospell {html {size 50}} - {help_text "Learning object's name"} - {label "Title:"} + {help_text "[_ lorsm.lt_Learning_objects_name]"} + {label "[_ lorsm.Title]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -73,14 +73,14 @@ template::list::create \ -name d_gen_titles \ -multirow d_gen_titles \ - -no_data "No Titles Available" \ + -no_data "[_ lorsm.No_Titles_Available]" \ -html { align right style "width: 100%;" } \ -elements { title_l { - label "Language" + label "[_ lorsm.Language_1]" } title_s { - label "Title(s)" + label "[_ lorsm.Titles_1]" } export { display_eval {\[Edit\]} Index: openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_cont.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/lifecyclemd/Attic/lifecycle_cont.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_cont.tcl 14 Nov 2004 12:50:15 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_cont.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -20,11 +20,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_lf_cont_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] "Life Cycle MD"] "Edit Contributor"] - set title "Edit Lifecycle MD Contributor" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] " [_ lorsm.Life_Cycle_MD]"] "[_ lorsm.Edit_Contributor]"] + set title "[_ lorsm.lt_Edit_Lifecycle_MD_Con]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] "Life Cycle MD"] "Add Contributor"] - set title "Add Lifecycle MD Contributor" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] "[_ lorsm.Life_Cycle_MD]"] "[_ lorsm.Add_Contributor]"] + set title "[_ lorsm.lt_Add_Lifecycle_MD_Cont]" } # Form @@ -37,39 +37,39 @@ ims_md_lf_cont_id:key(ims_md_life_cycle_contrib_seq) {role_s:text,nospell - {section "Add/Edit Lifecycle MD Contributor"} + {section "[_ lorsm.lt_AddEdit_Lifecycle_MD_]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {role_v:text,nospell {html {size 10}} - {help_text "Type of contribution"} - {label "Role:"} + {help_text "[_ lorsm.Type_of_contribution]"} + {label "[_ lorsm.Role_1]"} } {entity:text(textarea),nospell {html {rows 5 cols 50}} - {help_text "Entity or entities involved"} - {label "Entity:"} + {help_text "[_ lorsm.lt_Entity_or_entities_in]"} + {label "[_ lorsm.Entity]"} } {cont_date:text,nospell {html {size 10}} - {help_text "Date of contribution"} - {label "Date:"} + {help_text "[_ lorsm.Date_of_contribution]"} + {label "[_ lorsm.Date]"} } {cont_date_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English (Required if entering Description)"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi_3]"} + {label "[_ lorsm.Language]"} } {cont_date_s:text(textarea),nospell,optional {html {rows 2 cols 50}} - {help_text "Describes contribution"} - {label "Description:"} + {help_text "[_ lorsm.lt_Describes_contributio]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -123,25 +123,25 @@ template::list::create \ -name d_lf_cont \ -multirow d_lf_cont \ - -no_data "No Contributors Available" \ + -no_data "[_ lorsm.lt_No_Contributors_Avail]" \ -html { align right style "width: 100%;" } \ -elements { role { - label "Role" + label "[_ lorsm.Role]" } entity { - label "Entity" + label "[_ lorsm.Entity_1]" } cont_date { - label "Contribution Date" + label "[_ lorsm.Contribution_Date]" } cont_date_ls { - label "Description" + label "[_ lorsm.Description_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "lifecycle_cont" {ims_md_lf_cont_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record] "} html { align center } } } Index: openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_stat.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/lifecyclemd/Attic/lifecycle_stat.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_stat.tcl 14 Nov 2004 12:50:15 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_stat.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] "Life Cycle MD"] "Edit Status"] -set title "Edit Lifecycle MD Status" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../lifecyclemd" im\\\\\\\s_md_id] "[_ lorsm.Life_Cycle_MD]"] "[_ lorsm.Edit_Status]"] +set title "[_ lorsm.lt_Edit_Lifecycle_MD_Sta]" # Form @@ -28,16 +28,16 @@ -form { {status_v:text,nospell - {section "Add/Edit Lifecycle MD Version"} + {section "[_ lorsm.lt_AddEdit_Lifecycle_MD__1]"} {html {size 10}} - {help_text "Learning object's editorial condition"} - {label "Status:"} + {help_text "[_ lorsm.lt_Learning_objects_edit]"} + {label "[_ lorsm.Status]"} } {status_s:text,nospell,optional {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -70,14 +70,14 @@ template::list::create \ -name d_lf_stat \ -multirow d_lf_stat \ - -no_data "No Status Available" \ + -no_data "[_ lorsm.No_Status_Available]" \ -html { align right style "width: 100%;" } \ -elements { status_s { - label "Source" + label "[_ lorsm.Source_1]" } status_v { - label "Value" + label "[_ lorsm.Value]" } } Index: openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_version.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/lifecyclemd/Attic/lifecycle_version.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_version.tcl 14 Nov 2004 12:50:15 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/lifecyclemd/lifecycle_version.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../lifecyclemd" im\\\\\\s_md_id] "Life Cycle MD"] "Edit Version"] -set title "Edit Lifecycle MD Version" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../lifecyclemd" im\\\\\\s_md_id] "[_ lorsm.Life_Cycle_MD]"] "[_ lorsm.Edit_Version]"] +set title "[_ lorsm.lt_Edit_Lifecycle_MD_Ver]" # Form @@ -29,16 +29,16 @@ {version_l:text,nospell,optional - {section "Add/Edit Lifecycle MD Version"} + {section "[_ lorsm.lt_AddEdit_Lifecycle_MD__1]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {version_s:text,nospell {html {size 10}} - {help_text "Edition of the learning object i.e.: '1.0'"} - {label "Version:"} + {help_text "[_ lorsm.lt_Edition_of_the_learni]"} + {label "[_ lorsm.Version]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -73,14 +73,14 @@ template::list::create \ -name d_lf_ver \ -multirow d_lf_ver \ - -no_data "No Structure Available" \ + -no_data "[_ lorsm.lt_No_Structure_Availabl]" \ -html { align right style "width: 100%;" } \ -elements { version_l { - label "Language" + label "[_ lorsm.Language_1]" } version_s { - label "Version" + label "[_ lorsm.Version_1]" } } Index: openacs-4/packages/lorsm/www/md/metamd/meta_cont.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/metamd/Attic/meta_cont.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/metamd/meta_cont.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/metamd/meta_cont.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -20,11 +20,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_md_cont_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../metamd" im\s_\md_id] "Meta Metadata"] "Add Contributor"] - set title "Edit Meta MD Contributor" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../metamd" im\s_\md_id] "[_ lorsm.Meta_Metadata]"] "[_ lorsm.Add_Contributor]"] + set title "[_ lorsm.lt_Edit_Meta_MD_Contribu]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../metamd" im\s_\md_id] "Meta Metadata"] "Add Contributor"] - set title "Add Meta MD Contributor" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../metamd" im\s_\md_id] "[_ lorsm.Meta_Metadata]"] "[_ lorsm.Add_Contributor]"] + set title "[_ lorsm.lt_Add_Meta_MD_Contribut]" } # Form @@ -37,40 +37,40 @@ ims_md_md_cont_id:key(ims_md_metadata_contrib_seq) {role_s:text,nospell - {section "Add/Edit Meta MD Contributor"} + {section "[_ lorsm.lt_AddEdit_Meta_MD_Contr]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {role_v:text,nospell {html {size 10}} - {help_text "Type of contribution"} - {label "Role:"} + {help_text "[_ lorsm.Type_of_contribution]"} + {label "[_ lorsm.Role_1]"} } {entity:text(textarea),nospell {html {rows 5 cols 50}} - {help_text "Entity or entities involved"} - {label "Entity:"} + {help_text "[_ lorsm.lt_Entity_or_entities_in]"} + {label "[_ lorsm.Entity]"} } {cont_date:text,nospell {html {size 10}} - {help_text "Date of contribution"} - {label "Date:"} + {help_text "[_ lorsm.Date_of_contribution]"} + {label "[_ lorsm.Date]"} } {cont_date_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English (Required if entering Description)"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi_3]"} + {label "[_ lorsm.Language]"} } {cont_date_s:text(textarea),nospell,optional {html {rows 2 cols 50}} - {help_text "Describes contribution"} - {label "Description:"} + {help_text "[_ lorsm.lt_Describes_contributio]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -124,25 +124,25 @@ template::list::create \ -name d_md_cont \ -multirow d_md_cont \ - -no_data "No Contributors Available" \ + -no_data "[_ lorsm.lt_No_Contributors_Avail]" \ -html { align right style "width: 100%;" } \ -elements { role { - label "Role" + label "[_ lorsm.Role]" } entity { - label "Entity" + label "[_ lorsm.Entity_1]" } cont_date { - label "Contribution Date" + label "[_ lorsm.Contribution_Date]" } cont_date_ls { - label "Description" + label "[_ lorsm.Description_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "meta_cont" {ims_md_md_cont_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record] "} html { align center } } } Index: openacs-4/packages/lorsm/www/md/metamd/meta_lang.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/metamd/Attic/meta_lang.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/metamd/meta_lang.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/metamd/meta_lang.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../metamd" im\s_\\\md_id] "Meta Metadata"] "Edit Language"] -set title "Edit Meta MD Language" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../metamd" im\s_\\\md_id] "[_ lorsm.Meta_Metadata]"] "[_ lorsm.Edit_Language]"] +set title "[_ lorsm.lt_Edit_Meta_MD_Language]" # Form @@ -28,10 +28,10 @@ -form { {language:text,nospell - {section "Add/Edit Meta MD Language"} + {section "[_ lorsm.lt_AddEdit_Meta_MD_Langu]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -63,11 +63,11 @@ template::list::create \ -name d_md_lang \ -multirow d_md_lang \ - -no_data "No Language Available" \ + -no_data "[_ lorsm.lt_No_Language_Available]" \ -html { align right style "width: 100%;" } \ -elements { language { - label "Language" + label "[_ lorsm.Language_1]" } } Index: openacs-4/packages/lorsm/www/md/metamd/meta_scheme.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/metamd/Attic/meta_scheme.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/metamd/meta_scheme.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/metamd/meta_scheme.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_md_sch_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../metamd" im\s_\\md_id] "Meta Metadata"] "Edit Scheme"] - set title "Edit Meta MD Scheme" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../metamd" im\s_\\md_id] "[_ lorsm.Meta_Metadata]"] "[_ lorsm.Edit_Scheme]"] + set title "[_ lorsm.Edit_Meta_MD_Scheme]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../metamd" im\s_\\md_id] "Meta Metadata"] "Add Scheme"] - set title "Add Meta MD Scheme" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../metamd" im\s_\\md_id] "[_ lorsm.Meta_Metadata]"] "[_ lorsm.Add_Scheme]"] + set title "[_ lorsm.Add_Meta_MD_Scheme]" } # Form @@ -36,10 +36,10 @@ ims_md_md_sch_id:key(ims_md_metadata_scheme_seq) {scheme:text,nospell - {section "Add/Edit Meta MD Scheme"} + {section "[_ lorsm.lt_AddEdit_Meta_MD_Schem]"} {html {size 10}} - {help_text "Structure of meta-data including version i.e.: 'IMSv1.2.1'"} - {label "Scheme:"} + {help_text "[_ lorsm.lt_Structure_of_meta-dat]"} + {label "[_ lorsm.Scheme]"} } {ims_md_id:text(hidden) {value $ims_md_id} } @@ -69,16 +69,16 @@ template::list::create \ -name d_md_scheme \ -multirow d_md_scheme \ - -no_data "No Scheme Available" \ + -no_data "[_ lorsm.No_Scheme_Available]" \ -html { align right style "width: 100%;" } \ -elements { scheme { - label "Scheme" + label "[_ lorsm.Scheme_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "meta_scheme" {ims_md_id ims_md_md_sch_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/relationmd/relation.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -13,15 +13,15 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] "Relation Entry"] -set title "Relation MD" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] "[_ lorsm.Relation_Entry]"] +set title "[_ lorsm.Relation_MD]" # Relation Kind template::list::create \ -name d_re_kind \ -multirow d_re_kind \ - -no_data "No Kind Available" \ - -actions [list "Add Kind" [export_vars -base relation_kind {ims_md_re_re_id ims_md_re_id ims_md_id}] "Add another Kind"] \ + -no_data "[_ lorsm.No_Kind_Available]" \ + -actions [list "[_ lorsm.Add_Kind]" [export_vars -base relation_kind {ims_md_re_re_id ims_md_re_id ims_md_id}] "[_ lorsm.Add_another_Kind]"] \ -html { align right style "width: 100%;" } \ -elements { kind_s { @@ -46,8 +46,8 @@ template::list::create \ -name d_re_ident \ -multirow d_re_ident \ - -actions [list "Add Identifier" [export_vars -base relation_ident {ims_md_re_re_id ims_md_re_id ims_md_id}] "Add another Identifier"] \ - -no_data "No Resource Identifier Available" \ + -actions [list "[_ lorsm.Add_Identifier]" [export_vars -base relation_ident {ims_md_re_re_id ims_md_re_id ims_md_id}] "[_ lorsm.lt_Add_another_Identifie]"] \ + -no_data "[_ lorsm.lt_No_Resource_Identifie]" \ -html { align right style "width: 100%;" } \ -elements { identifier { @@ -68,8 +68,8 @@ template::list::create \ -name d_re_cata \ -multirow d_re_cata \ - -no_data "No Catalog-Entries Available" \ - -actions [list "Add Catalog-Entry" [export_vars -base relation_cata {ims_md_re_re_id ims_md_re_id ims_md_id}] "Add another Catalog-Entry"] \ + -no_data "[_ lorsm.lt_No_Catalog-Entries_Av]" \ + -actions [list "[_ lorsm.Add_Catalog-Entry]" [export_vars -base relation_cata {ims_md_re_re_id ims_md_re_id ims_md_id}] "[_ lorsm.lt_Add_another_Catalog-E]"] \ -html { align right style "width: 100%;" } \ -elements { catalog { @@ -97,8 +97,8 @@ template::list::create \ -name d_re_desc \ -multirow d_re_desc \ - -no_data "No Resource Description Available" \ - -actions [list "Add Description" [export_vars -base relation_desc {ims_md_re_re_id ims_md_re_id ims_md_id}] "Add another Description"] \ + -no_data "[_ lorsm.lt_No_Resource_Descripti]" \ + -actions [list "[_ lorsm.Add_Description]" [export_vars -base relation_desc {ims_md_re_re_id ims_md_re_id ims_md_id}] "[_ lorsm.lt_Add_another_Descripti]"] \ -html { align right style "width: 100%;" } \ -elements { descrip { Index: openacs-4/packages/lorsm/www/md/relationmd/relation_add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation_add.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation_add.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation_add.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] "Add Relation Entry"] -set title "Add Relation MD Entry" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] "[_ lorsm.Add_Relation_Entry]"] +set title "[_ lorsm.lt_Add_Relation_MD_Entry]" # Form ad_form -name relationmd_add \ Index: openacs-4/packages/lorsm/www/md/relationmd/relation_cata.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation_cata.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation_cata.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation_cata.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -21,11 +21,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_re_re_ca_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "Relation Entry"] "Edit Catalog-Entry"] - set title "Edit Relation MD Resource Catalog-Entry" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "[_ lorsm.Relation_Entry]"] "[_ lorsm.Edit_Catalog-Entry]"] + set title "[_ lorsm.lt_Edit_Relation_MD_Reso]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "Relation Entry"] "Add Catalog-Entry"] - set title "Add Relation MD Resource Catalog-Entry" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "[_ lorsm.Relation_Entry]"] "[_ lorsm.Add_Catalog-Entry]"] + set title "[_ lorsm.lt_Add_Relation_MD_Resou]" } # Form @@ -38,22 +38,22 @@ ims_md_re_re_ca_id:key(ims_md_relation_resource_catalog_seq) {catalog:text,nospell - {section "Add/Edit Relation MD Resource Catalog-Entry"} + {section "[_ lorsm.lt_AddEdit_Relation_MD_R]"} {html {size 50}} - {help_text "Name of the catalog"} - {label "Catalog:"} + {help_text "[_ lorsm.Name_of_the_catalog]"} + {label "[_ lorsm.Catalog]"} } {entry_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {entry_s:text,nospell {html {size 50}} - {help_text "Number in the Catalog i.e.: '1.3.1'"} - {label "Entry:"} + {help_text "[_ lorsm.lt_Number_in_the_Catalog]"} + {label "[_ lorsm.Entry]"} } {ims_md_re_re_id:text(hidden) {value $ims_md_re_re_id} @@ -90,7 +90,7 @@ template::list::create \ -name d_re_cata \ -multirow d_re_cata \ - -no_data "No Catalog-Entries Available" \ + -no_data "[_ lorsm.lt_No_Catalog-Entries_Av]" \ -html { align right style "width: 100%;" } \ -elements { catalog { @@ -105,7 +105,7 @@ export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "relation_cata" {ims_md_re_re_ca_id ims_md_re_re_id ims_md_re_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/relationmd/relation_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation_desc.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation_desc.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -19,8 +19,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "Relation Entry"] "Add/Edit Description"] -set title "Edit Relation MD Resource Description" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "[_ lorsm.Relation_Entry]"] "[_ lorsm.AddEdit_Description]"] +set title "[_ lorsm.lt_Edit_Relation_MD_Reso_1]" # Form @@ -32,16 +32,16 @@ ims_md_re_re_id:key(ims_md_relation_resource_seq) {descrip_l:text,nospell - {section "Add/Edit Relation MD Resource Description"} + {section "[_ lorsm.lt_AddEdit_Relation_MD_R_1]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 2 cols 50}} - {help_text "Description of the other resource"} - {label "Description:"} + {help_text "[_ lorsm.lt_Description_of_the_ot]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -68,11 +68,11 @@ template::list::create \ -name d_re_desc \ -multirow d_re_desc \ - -no_data "No Resource Description Available" \ + -no_data "[_ lorsm.lt_No_Resource_Descripti]" \ -html { align right style "width: 100%;" } \ -elements { descrip { - label "Description" + label "[_ lorsm.Description_1]" } } Index: openacs-4/packages/lorsm/www/md/relationmd/relation_ident.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation_ident.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation_ident.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation_ident.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -19,8 +19,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "Relation Entry"] "Add/Edit Resource Identifier"] -set title "Edit Relation MD Resource Identifier" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "[_ lorsm.Relation_Entry]"] "[_ lorsm.lt_AddEdit_Resource_Iden]"] +set title "[_ lorsm.lt_Edit_Relation_MD_Reso_2]" # Form @@ -33,10 +33,10 @@ ims_md_re_re_id:key(ims_md_relation_resource_seq) {identifier:text,nospell - {section "Add/Edit Relation MD Resource Identifier"} + {section "[_ lorsm.lt_AddEdit_Relation_MD_R_2]"} {html {size 50}} - {help_text "Unique identifier of the other resource"} - {label "Identifier:"} + {help_text "[_ lorsm.lt_Unique_identifier_of_]"} + {label "[_ lorsm.Identifier]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -62,11 +62,11 @@ template::list::create \ -name d_re_ident \ -multirow d_re_ident \ - -no_data "No Resource Identifier Available" \ + -no_data "[_ lorsm.lt_No_Resource_Identifie]" \ -html { align right style "width: 100%;" } \ -elements { identifier { - label "Identifier" + label "[_ lorsm.Identifier_1]" } } Index: openacs-4/packages/lorsm/www/md/relationmd/relation_kind.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/relationmd/Attic/relation_kind.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/relationmd/relation_kind.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/relationmd/relation_kind.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -20,8 +20,8 @@ # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../relationmd" ims_md_id] "Relation MD"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "Relation Entry"] "Add/Edit Kind"] -set title "Add/Edit Relation MD Kind" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../relationmd" ims_md_id] "[_ lorsm.Relation_MD]"] [list [export_vars -base "relation" {ims_md_id ims_md_re_id ims_md_re_re_id}] "[_ lorsm.Relation_Entry]"] "[_ lorsm.AddEdit_Kind]"] +set title "[_ lorsm.lt_AddEdit_Relation_MD_K]" # Form @@ -33,16 +33,16 @@ ims_md_re_id:key(ims_md_relation_seq) {kind_s:text,nospell - {section "Add/Edit Relation MD Kind"} + {section "[_ lorsm.lt_AddEdit_Relation_MD_K]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {kind_v:text,nospell {html {size 20}} - {help_text "Nature of the relationship between the resource being described and the one identified by Resource"} - {label "Kind:"} + {help_text "[_ lorsm.lt_Nature_of_the_relatio]"} + {label "[_ lorsm.Kind]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -69,14 +69,14 @@ template::list::create \ -name d_re_kind \ -multirow d_re_kind \ - -no_data "No Kind Available" \ + -no_data "[_ lorsm.No_Kind_Available]" \ -html { align right style "width: 100%;" } \ -elements { kind_s { - label "Source" + label "[_ lorsm.Source_1]" } kind_v { - label "Value" + label "[_ lorsm.Value]" } } Index: openacs-4/packages/lorsm/www/md/rightsmd/rights_caor.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/rightsmd/Attic/rights_caor.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/rightsmd/rights_caor.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/rightsmd/rights_caor.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../rightsmd" ims_md_id] "Rights MD"] "Add/Edit Copyrights or other Restrictions"] -set title "Edit Rights MD Copyright or other Restrictions" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../rightsmd" ims_md_id] "[_ lorsm.Rights_MD]"] " <#_Add/Edit Copyrights or other Restrictions #>"] +set title "[_ lorsm.lt_Edit_Rights_MD_Copyri]" # Form @@ -29,16 +29,16 @@ -form { {caor_s:text,nospell - {section "Add/Edit Rights MD Copyright or other Restrictions"} + {section "[_ lorsm.lt_AddEdit_Rights_MD_Cop]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {caor_v:text,nospell {html {size 10}} - {help_text "Whether copyright or other restrictions apply"} - {label "Copyright or other Restrictions:"} + {help_text "[_ lorsm.lt_Whether_copyright_or_]"} + {label "[_ lorsm.lt_Copyright_or_other_Re]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_ri_caor \ -multirow d_ri_caor \ - -no_data "No Copyright or other Restrictions Available" \ + -no_data "[_ lorsm.lt_No_Copyright_or_other]" \ -html { align right style "width: 100%;" } \ -elements { caor { - label "Copyright Info" + label "[_ lorsm.Copyright_Info]" } } Index: openacs-4/packages/lorsm/www/md/rightsmd/rights_cost.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/rightsmd/Attic/rights_cost.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/rightsmd/rights_cost.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/rightsmd/rights_cost.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../rightsmd" ims_md_id] "Rights MD"] "Add/Edit Cost"] -set title "Add/Edit Rights MD Cost" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../rightsmd" ims_md_id] "[_ lorsm.Rights_MD]"] "[_ lorsm.AddEdit_Cost]"] +set title "[_ lorsm.lt_AddEdit_Rights_MD_Cos]" # Form @@ -29,16 +29,16 @@ -form { {cost_s:text,nospell - {section "Add/Edit Rights MD Cost"} + {section "[_ lorsm.lt_AddEdit_Rights_MD_Cos]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {cost_v:text,nospell {html {size 10}} - {help_text "Whether use of the resource requires payment"} - {label "Cost:"} + {help_text "[_ lorsm.lt_Whether_use_of_the_re]"} + {label "[_ lorsm.Cost]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_ri_cost \ -multirow d_ri_cost \ - -no_data "No Cost Available" \ + -no_data "[_ lorsm.No_Cost_Available]" \ -html { align right style "width: 100%;" } \ -elements { cost { - label "Cost" + label "[_ lorsm.Cost_1]" } } Index: openacs-4/packages/lorsm/www/md/rightsmd/rights_desc.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/rightsmd/Attic/rights_desc.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/rightsmd/rights_desc.tcl 14 Nov 2004 12:50:16 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/rightsmd/rights_desc.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../rightsmd" ims_md_id] "Rights MD"] "Add/Edit Description"] -set title "Edit Rights MD Description" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../rightsmd" ims_md_id] "[_ lorsm.Rights_MD]"] "[_ lorsm.AddEdit_Description]"] +set title "[_ lorsm.lt_Edit_Rights_MD_Descri]" # Form @@ -29,16 +29,16 @@ -form { {descrip_l:text,nospell - {section "Add/Edit Rights MD Description"} + {section "[_ lorsm.lt_AddEdit_Rights_MD_Des]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {descrip_s:text(textarea),nospell {html {rows 2 cols 50}} - {help_text "Conditions of use for the resource"} - {label "Description:"} + {help_text "[_ lorsm.lt_Conditions_of_use_for]"} + {label "[_ lorsm.Description]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_ri_desc \ -multirow d_ri_desc \ - -no_data "No Description Available" \ + -no_data "[_ lorsm.lt_No_Description_Availa]" \ -html { align right style "width: 100%;" } \ -elements { desc { - label "Description" + label "[_ lorsm.Description_1]" } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_dur.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_dur.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_dur.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_dur.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \\\i\\m\\s_md_id] "Technical MD"] "Add/Edit Duration"] -set title "Edit Technical MD Duration" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \\\i\\m\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.AddEdit_Duration]"] +set title "[_ lorsm.lt_Edit_Technical_MD_Dur]" # Form @@ -28,22 +28,22 @@ -form { {duration:text,nospell - {section "Add/Edit Technical MD Duration"} + {section "[_ lorsm.lt_AddEdit_Technical_MD_]"} {html {size 10}} - {help_text "Time the continuous learning object is intended to take (in seconds)"} - {label "Duration:"} + {help_text "[_ lorsm.lt_Time_the_continuous_l]"} + {label "[_ lorsm.Duration] "} } {duration_l:text,nospell,optional {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {duration_s:text,nospell,optional {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -76,17 +76,17 @@ template::list::create \ -name d_te_dur \ -multirow d_te_dur \ - -no_data "No Duration Available" \ + -no_data "[_ lorsm.lt_No_Duration_Available]" \ -html { align right style "width: 100%;" } \ -elements { duration_sec { - label "Duration (Seconds)" + label "[_ lorsm.Duration_Seconds]" } duration_l { - label "Language" + label "[_ lorsm.Language_1]" } duration_s { - label "Source" + label "[_ lorsm.Source_1]" } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_form.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_form.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_form.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_form.tcl 3 Dec 2004 17:52:53 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_te_fo_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" im\s_md_id] "Technical MD"] "Edit Format"] - set title "Edit Technical MD Format" + set context [list [list [export_vars -base ".." ims_md_id] "I[_ lorsm.MS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" im\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Edit_Format]"] + set title "[_ lorsm.lt_Edit_Technical_MD_For]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" im\s_md_id] "Technical MD"] "Add Format"] - set title "Add Technical MD Format" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" im\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Add_Format]"] + set title "[_ lorsm.lt_Add_Technical_MD_Form]" } # Form @@ -36,10 +36,10 @@ ims_md_te_fo_id:key(ims_md_technical_format_seq) {format:text,nospell - {section "Add/Edit Technical MD Format"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__1]"} {html {size 30}} - {help_text "Technical data type of the resource"} - {label "Format:"} + {help_text "[_ lorsm.lt_Technical_data_type_o]"} + {label "[_ lorsm.Format]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -67,16 +67,16 @@ template::list::create \ -name d_te_form \ -multirow d_te_form \ - -no_data "No Format Available" \ + -no_data "[_ lorsm.No_Format_Available]" \ -html { align right style "width: 100%;" } \ -elements { format { - label "Format" + label "[_ lorsm.Format_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "technical_form" {ims_md_te_fo_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_inst.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_inst.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_inst.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_inst.tcl 3 Dec 2004 17:52:54 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \\\im\\s_md_id] "Technical MD"] "Edit Installation Remarks"] -set title "Add/Edit Technical MD Installation Remarks" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \\\im\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.lt_Edit_Installation_Rem]"] +set title "[_ lorsm.lt_AddEdit_Technical_MD__2]" # Form @@ -28,16 +28,16 @@ -form { {instl_rmrks_l:text,nospell - {section "Add/Edit Technical MD Installation Remarks"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__2]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {instl_rmrks_s:text(textarea),nospell {html {rows 5 cols 60}} - {help_text "Information on how to install the resource"} - {label "Installation Remarks:"} + {help_text "[_ lorsm.lt_Information_on_how_to]"} + {label "[_ lorsm.Installation_Remarks]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_te_inst \ -multirow d_te_inst \ - -no_data "No Installation Remarks Available" \ + -no_data "[_ lorsm.lt_No_Installation_Remar]" \ -html { align right style "width: 100%;" } \ -elements { instl_rmrks { - label "Installation Remarks" + label "[_ lorsm.Installation_Remarks_1]" } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_loca.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_loca.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_loca.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_loca.tcl 3 Dec 2004 17:52:54 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_te_lo_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \im\\s_md_id] "Technical MD"] "Edit Location"] - set title "Edit Technical MD Location" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \im\\s_md_id] "[_ lorsm.Technical_MD]"] " [_ lorsm.Edit_Location]"] + set title "[_ lorsm.lt_Edit_Technical_MD_Loc]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \im\\s_md_id] "Technical MD"] "Add Location"] - set title "Add Technical MD Location" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \im\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Add_Location]"] + set title "[_ lorsm.lt_Add_Technical_MD_Loca]" } # Form @@ -36,16 +36,16 @@ ims_md_te_lo_id:key(ims_md_technical_location_seq) {type:text,nospell,optional - {section "Add/Edit Technical MD Location"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__3]"} {html {size 10}} - {help_text "Reference to location. Only TEXT or URI is permitted"} - {label "Type:"} + {help_text "[_ lorsm.lt_Reference_to_location]"} + {label "[_ lorsm.Type_1]"} } {location:text,nospell {html {size 50}} - {help_text "Location of the resource"} - {label "Location:"} + {help_text "[_ lorsm.lt_Location_of_the_resou]"} + {label "[_ lorsm.Location_1]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -76,19 +76,19 @@ template::list::create \ -name d_te_loca \ -multirow d_te_loca \ - -no_data "No Location Available" \ + -no_data "[_ lorsm.lt_No_Location_Available]" \ -html { align right style "width: 100%;" } \ -elements { type { - label "Type" + label "[_ lorsm.Type]" } location { - label "Location" + label "[_ lorsm.Location]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "technical_loca" {ims_md_te_lo_id ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_otr.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_otr.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_otr.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_otr.tcl 3 Dec 2004 17:52:54 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \\\i\m\\s_md_id] "Technical MD"] "Add/Edit Other Platform Requirements"] -set title "Add/Edit Technical MD Other Platform Requirements" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \\\i\m\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.lt_AddEdit_Other_Platfor]"] +set title "[_ lorsm.lt_AddEdit_Technical_MD__4]" # Form @@ -28,16 +28,16 @@ -form { {otr_plt_l:text,nospell - {section "Add/Edit Technical MD Other Platform Requirements"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__4]"} {html {size 10}} - {help_text "i.e.: 'en_AU' for Australian English"} - {label "Language:"} + {help_text "[_ lorsm.lt_ie_en_AU_for_Australi]"} + {label "[_ lorsm.Language]"} } {otr_plt_s:text(textarea),nospell {html {rows 5 cols 60}} - {help_text "Information on other hardware and software requirements"} - {label "Other Platform Requirements:"} + {help_text "[_ lorsm.lt_Information_on_other_]"} + {label "[_ lorsm.lt_Other_Platform_Requir]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -69,11 +69,11 @@ template::list::create \ -name d_te_otr \ -multirow d_te_otr \ - -no_data "No Other Platform Requirements Available" \ + -no_data "[_ lorsm.lt_No_Other_Platform_Req]" \ -html { align right style "width: 100%;" } \ -elements { otr_plt { - label "Other Platform Req." + label "[_ lorsm.Other_Platform_Req]" } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_req.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_req.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_req.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_req.tcl 3 Dec 2004 17:52:54 -0000 1.2 @@ -19,11 +19,11 @@ # set context & title if { ![ad_form_new_p -key ims_md_te_rq_id]} { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \\im\\s_md_id] "Technical MD"] "Edit Requirement"] - set title "Edit Technical MD Requirement" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \\im\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Edit_Requirement]"] + set title "[_ lorsm.lt_Edit_Technical_MD_Req]" } else { - set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \\im\\s_md_id] "Technical MD"] "Add Requirement"] - set title "Add Technical MD Requirement" + set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \\im\\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Add_Requirement]"] + set title "[_ lorsm.lt_Add_Technical_MD_Requ]" } # Form @@ -36,34 +36,34 @@ ims_md_te_rq_id:key(ims_md_technical_requirement_seq) {type_s:text,nospell - {section "Add/Edit Technical MD Requirement"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__5]"} {html {size 10}} - {help_text "Source of vocabulary items i.e.: 'LOMv1.0'"} - {label "Source:"} + {help_text "[_ lorsm.lt_Source_of_vocabulary_]"} + {label "[_ lorsm.Source]"} } {type_v:text,nospell {html {size 20}} - {help_text "Type of requirement"} - {label "Type:"} + {help_text "[_ lorsm.Type_of_requirement]"} + {label "[_ lorsm.Type_1]"} } {name_v:text,nospell {html {size 20}} - {help_text "Name of required item"} - {label "Name:"} + {help_text "[_ lorsm.lt_Name_of_required_item]"} + {label "[_ lorsm.Name_1]"} } {min_version:text,nospell {html {size 10}} - {help_text "Lowest version of the required item"} - {label "Minimum Version:"} + {help_text "[_ lorsm.lt_Lowest_version_of_the]"} + {label "[_ lorsm.Minimum_Version]"} } {max_version:text,nospell {html {size 10}} - {help_text "Highest version of the required item"} - {label "Maximum Version:"} + {help_text "[_ lorsm.lt_Highest_version_of_th]"} + {label "[_ lorsm.Maximum_Version]"} } {ims_md_id:text(hidden) {value $ims_md_id} @@ -104,21 +104,21 @@ -html { align right style "width: 100%;" } \ -elements { type { - label "Type" + label "[_ lorsm.Type]" } name { - label "Name" + label "[_ lorsm.Name]" } min_version { - label "Min Version" + label "[_ lorsm.Min_Version]" } max_version { - label "Max Version" + label "[_ lorsm.Max_Version]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "technical_req" {ims_md_te_rq_id ims_md_id}] } - link_html {title "Edit Record "} + link_html {title "[_ lorsm.Edit_Record] "} html { align center } } } Index: openacs-4/packages/lorsm/www/md/technicalmd/technical_size.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/md/technicalmd/Attic/technical_size.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/lorsm/www/md/technicalmd/technical_size.tcl 14 Nov 2004 12:50:17 -0000 1.1 +++ openacs-4/packages/lorsm/www/md/technicalmd/technical_size.tcl 3 Dec 2004 17:52:54 -0000 1.2 @@ -17,8 +17,8 @@ } # set context & title -set context [list [list [export_vars -base ".." ims_md_id] "IMS Metadata Editor"] [list [export_vars -base "../technicalmd" \im\s_md_id] "Technical MD"] "Edit Size"] -set title "Add/Edit Technical MD Size" +set context [list [list [export_vars -base ".." ims_md_id] "[_ lorsm.IMS_Metadata_Editor]"] [list [export_vars -base "../technicalmd" \im\s_md_id] "[_ lorsm.Technical_MD]"] "[_ lorsm.Edit_Size]"] +set title "[_ lorsm.lt_AddEdit_Technical_MD__6]" # Form @@ -28,10 +28,10 @@ -form { {t_size:text,nospell - {section "Add/Edit Technical MD Size"} + {section "[_ lorsm.lt_AddEdit_Technical_MD__6]"} {html {size 30}} - {help_text "Size of the resource (in bytes)"} - {label "Size:"} + {help_text "[_ lorsm.lt_Size_of_the_resource_]"} + {label "[_ lorsm.Size]"} } {ims_md_id:text(hidden) {value $ims_md_id}} @@ -62,16 +62,16 @@ template::list::create \ -name d_te_size \ -multirow d_te_size \ - -no_data "No Size Available" \ + -no_data "[_ lorsm.No_Size_Available]" \ -html { align right style "width: 100%;" } \ -elements { t_size_bytes { - label "Size" + label "[_ lorsm.Size_1]" } export { display_eval {\[Edit\]} link_url_eval { [export_vars -base "technical_size" {ims_md_id}] } - link_html {title "Edit Record"} + link_html {title "[_ lorsm.Edit_Record]"} html { align center } } } Index: openacs-4/packages/lorsm/www/shared/add-shared-course-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/shared/Attic/add-shared-course-2.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/shared/add-shared-course-2.tcl 27 Oct 2004 07:46:54 -0000 1.2 +++ openacs-4/packages/lorsm/www/shared/add-shared-course-2.tcl 3 Dec 2004 17:52:54 -0000 1.3 @@ -32,7 +32,7 @@ # check if the course is actually shared if {[db_string isshared {select isshared from ims_cp_manifests where man_id = :man_id}] == "f"} { # if it ain't complain and quit - ad_complain "The course you are trying to add to your class is not shared." + ad_complain "[_ lorsm.lt_The_course_you_are_tr]" } @@ -41,7 +41,8 @@ if {![db_0or1row exists {select man_id, lorsm_instance_id from ims_cp_manifest_class where man_id = :man_id \ and lorsm_instance_id = :package_id \ and community_id = :community_id}]} { - ad_complain "The course [lorsm::get_course_name -manifest_id $man_id], is already part of your class" + set var1 [lorsm::get_course_name -manifest_id $man_id] + ad_complain "[_ lorsm.lt_The_course_var1_is_al]" } Index: openacs-4/packages/lorsm/www/shared/add-shared-course.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/shared/Attic/add-shared-course.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/shared/add-shared-course.tcl 27 Oct 2004 07:46:54 -0000 1.2 +++ openacs-4/packages/lorsm/www/shared/add-shared-course.tcl 3 Dec 2004 17:52:54 -0000 1.3 @@ -31,7 +31,7 @@ # check if the course is actually shared if {[db_string isshared {select isshared from ims_cp_manifests where man_id = :man_id}] == "f"} { # if it ain't complain and quit - ad_complain "The course you are trying to add to your class is not shared." + ad_complain "[_ lorsm.lt_The_course_you_are_tr]" } @@ -45,10 +45,10 @@ } -set title "Add Course Confirmation" +set title "[_ lorsm.lt_Add_Course_Confirmati]" set course_name [lorsm::get_course_name -manifest_id $man_id] -set context [list [list [export_vars -base .] "Shared Courses"] [list [export_vars -base course-info {man_id}] "Preview Course: $course_name"] "Confirmation"] +set context [list [list [export_vars -base .] "[_ lorsm.Shared_Courses]"] [list [export_vars -base course-info {man_id}] "[_ lorsm.lt_Preview_Course_course]"] "[_ lorsm.Confirmation]"] set return_url [site_node::get_url_from_object_id -object_id $package_id] Index: openacs-4/packages/lorsm/www/shared/course-info.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/shared/Attic/course-info.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/shared/course-info.adp 29 Nov 2004 17:26:05 -0000 1.2 +++ openacs-4/packages/lorsm/www/shared/course-info.adp 3 Dec 2004 17:52:54 -0000 1.3 @@ -56,9 +56,9 @@ #lorsm.lt_classlist_stylefont-w#- #lorsm.classlist# + class="list" - #lorsm.lt_valigntop_alignleftis# + valign="top" align="left">@isscorm;noquote@Index: openacs-4/packages/lorsm/www/shared/course-info.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/shared/Attic/course-info.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/shared/course-info.tcl 27 Oct 2004 07:46:54 -0000 1.2 +++ openacs-4/packages/lorsm/www/shared/course-info.tcl 3 Dec 2004 17:52:54 -0000 1.3 @@ -19,7 +19,7 @@ set context [list [list [export_vars -base .] "Shared Courses"] "Preview Course"] set community_id [dotlrn_community::get_community_id] -set title "Preview Course" +set title "[_ lorsm.Preview_Course_1]" # Permissions dotlrn::require_user_admin_community -user_id [ad_conn user_id] -community_id $community_id @@ -85,12 +85,12 @@ # Course Name if {[empty_string_p $course_name]} { - set course_name "No course Name" + set course_name "[_ lorsm.No_course_Name]" } # Version if {[empty_string_p $version]} { - set version "No version Available" + set version "[_ lorsm._No]" } # Created By Index: openacs-4/packages/lorsm/www/shared/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/shared/Attic/index.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/lorsm/www/shared/index.tcl 27 Oct 2004 07:46:54 -0000 1.2 +++ openacs-4/packages/lorsm/www/shared/index.tcl 3 Dec 2004 17:52:54 -0000 1.3 @@ -15,8 +15,8 @@ } -errors { } -set title "Shared Courses" -set context [list "Shared Courses"] +set title "[_ lorsm.Shared_Courses]" +set context [list "[_ lorsm.Shared_Courses]"] set community_id [dotlrn_community::get_community_id] Index: openacs-4/packages/lorsm/www/tracking/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/lorsm/www/tracking/Attic/index.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/lorsm/www/tracking/index.tcl 2 Nov 2004 22:25:20 -0000 1.3 +++ openacs-4/packages/lorsm/www/tracking/index.tcl 3 Dec 2004 17:52:54 -0000 1.4 @@ -27,8 +27,8 @@ # Permissions dotlrn::require_user_admin_community -user_id [ad_conn user_id] -community_id $community_id -set title "Student Tracking" -set context {Tracking} +set title "[_ lorsm.Student_Tracking]" +set context {[_ lorsm.Tracking_1]} if {![exists_and_not_null group]} { set group 1 @@ -39,29 +39,29 @@ template::list::create \ -name student_track \ -multirow student_track \ - -actions [list "Summarize" [export_vars -base ".?group=0" {man_id item_id}] "Summarize all students"] \ + -actions [list "[_ lorsm.Summarize]" [export_vars -base ".?group=0" {man_id item_id}] "[_ lorsm.lt_Summarize_all_student]"] \ -key man_id \ -html {width 50%} \ - -no_data "No Students" \ + -no_data "[_ lorsm.No_Students]" \ -elements { student_name { - label "Student Name" + label "[_ lorsm.Student_Name]" display_eval {[person::name -person_id $student_name]} link_url_eval {[acs_community_member_url -user_id $student_name]} - link_html {title "Student's profile"} + link_html {title "[_ lorsm.Students_profile]"} } start_time { - label "Start Course" + label "[_ lorsm.Start_Course]" display_eval {[lc_time_fmt $start_time "%x %T"]} html { align center } } end_time { - label "Exit Course" + label "[_ lorsm.Exit_Course]" display_eval {[lc_time_fmt $end_time "%x %T"]} html { align center } } time_spend { - label "Time Spent" + label "[_ lorsm.Time_Spent]" display_eval {[lorsm::dates_calc -start_date [string range $start_time 0 18] -end_date [string range $end_time 0 18]]} html { align center } } @@ -91,16 +91,16 @@ -multirow object_views \ -elements { title { - label "Title" + label "[_ lorsm.Title_1]" } viewer_name { - label "Viewed By" + label "[_ lorsm.Viewed_By]" } views { - label "Total Views" + label "[_ lorsm.Total_Views]" } last_viewed { - label "Last Viewed On" + label "[_ lorsm.Last_Viewed_On]" display_eval {[lc_time_fmt $last_viewed "%x %X"]} } } @@ -135,9 +135,9 @@ -name student_track \ -multirow student_track \ -key man_id \ - -actions [list "Expand" [export_vars -base ".?group=1" {man_id item_id}] "Expand all students"] \ + -actions [list "[_ lorsm.Expand]" [export_vars -base ".?group=1" {man_id item_id}] "Expand all students"] \ -html {width 50%} \ - -no_data "No Students" \ + -no_data "[_ lorsm.No_Students]" \ -elements { student_name { label "Student Name" @@ -146,11 +146,11 @@ link_html {title "Student's profile"} } counter { - label "Times Viewed" + label "[_ lorsm.Times_Viewed]" html { align center } } time_spent { - label "Time Spent" + label "[_ lorsm.Time_Spent]" html { align center } } } @@ -179,16 +179,16 @@ -multirow object_views \ -elements { title { - label "Title" + label "[_ lorsm.Title_1]" } views { - label "Total Views" + label "[_ lorsm.Total_Views]" } unique_views { - label "Unique Views" + label "[_ lorsm.Unique_Views]" } last_viewed { - label "Last Viewed On" + label "[_ lorsm.Last_Viewed_On]" } }