Index: openacs-4/contrib/packages/room-reservation/tcl/facilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/tcl/facilities-procs.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/tcl/facilities-procs.tcl 15 Mar 2004 03:39:30 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/tcl/facilities-procs.tcl 22 Apr 2004 06:58:37 -0000 1.2 @@ -18,7 +18,7 @@ } { # We want unique names if {[room-reservation::facilities::name_exists -name $name]} { - ad_return_complaint 1 "" + ad_return_complaint 1 "" ad_script_abort } @@ -42,7 +42,7 @@ # We want unique names set name_exists_p [room-reservation::facilities::name_exists -name $name] if {$name_exists_p && ![string equal $name_exists_p $facility_id]} { - ad_return_complaint 1 "" + ad_return_complaint 1 "" ad_script_abort } set edit_user [ad_conn user_id] Index: openacs-4/contrib/packages/room-reservation/tcl/rooms-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/tcl/rooms-procs.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/tcl/rooms-procs.tcl 15 Mar 2004 03:39:30 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/tcl/rooms-procs.tcl 22 Apr 2004 06:58:37 -0000 1.2 @@ -21,7 +21,7 @@ } { # We want unique names per facility if {[room-reservation::rooms::name_exists -name $name -facility_id $facility_id]} { - ad_return_complaint 1 "" + ad_return_complaint 1 "" ad_script_abort } @@ -48,7 +48,7 @@ # We want unique names per facility set name_exists_p [room-reservation::rooms::name_exists -name $name -facility_id $facility_id] if {$name_exists_p && ![string equal $name_exists_p $room_id]} { - ad_return_complaint 1 "" + ad_return_complaint 1 "" ad_script_abort } set edit_user [ad_conn user_id] Index: openacs-4/contrib/packages/room-reservation/www/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/index.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/index.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/index.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,37 +3,38 @@

-Your reservations: +#room-reservation.Your_reservations#

-Show @filter_list:item@@filter_list:item@ | reservations +#room-reservation.Show# @filter_list:item@@filter_list:item@ | #room-reservation.reservations#

- - - - - - + + + + + + - + - +
@facilities_pretty_name@ Name@rooms_pretty_name@ NameEventDate ReservedStatusAction#room-reservation.lt_facilities_pretty_nam##room-reservation.lt_rooms_pretty_name_Nam##room-reservation.Event##room-reservation.Date_Reserved##room-reservation.Status##room-reservation.Action#
@personal_reservations.facility_name@ @personal_reservations.room_name@ @personal_reservations.name@@personal_reservations.full_start_date@ to
@personal_reservations.full_end_date@
#room-reservation.lt_personal_reservations#
@personal_reservations.full_end_date@
@personal_reservations.status@[ View Details | Edit | Cancel ][ #room-reservation.View_Details# | #room-reservation.Edit# | #room-reservation.Cancel# ]
+ Index: openacs-4/contrib/packages/room-reservation/www/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/index.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/index.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/index.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -23,7 +23,7 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -rooms_pretty_name rooms_pretty_name -rooms_pretty_plural rooms_pretty_plural -set title "Room Reservation" +set title "[_ room-reservation.Room_Reservation]" switch -exact -- $filter_on { {canceled} { Index: openacs-4/contrib/packages/room-reservation/www/reservation-edit.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/reservation-edit.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/reservation-edit.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/reservation-edit.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -31,77 +31,77 @@ set room_id [room-reservation::reservations::get_room_id -reservation_id $reservation_id] set room_full_name [room-reservation::rooms::get_full_name -room_id $room_id] -set title "Edit A Reservation" -set context [list [list "rooms" $rooms_pretty_plural] [list "room-view?room_id=$room_id" "$room_full_name Info"] [list "room-reservations?room_id=$room_id" "$room_full_name Reservations"] [list "reservation-view?reservation_id=$reservation_id" "Reservation Info"] $title] +set title "[_ room-reservation.Edit_A_Reservation]" +set context [list [list "rooms" $rooms_pretty_plural] [list "room-view?room_id=$room_id" "[_ room-reservation.room_full_name_Info]"] [list "room-reservations?room_id=$room_id" "[_ room-reservation.lt_room_full_name_Reserv]"] [list "reservation-view?reservation_id=$reservation_id" "[_ room-reservation.Reservation_Info]"] $title] form create reservation_edit element create reservation_edit reservation_id \ - -label "Reservation ID" \ + -label "[_ room-reservation.Reservation_ID]" \ -datatype integer \ -widget hidden element create reservation_edit room_id \ - -label "Room ID" \ + -label "[_ room-reservation.Room_ID]" \ -datatype integer \ -widget hidden element create reservation_edit room_name \ - -label "Room Name" \ + -label "[_ room-reservation.Room_Name_1]" \ -datatype text \ -widget inform element create reservation_edit name \ - -label "Event Name" \ + -label "[_ room-reservation.Event_Name]" \ -datatype text \ -widget text element create reservation_edit date \ - -label "Date" \ + -label "[_ room-reservation.Date]" \ -datatype date \ -widget date element create reservation_edit start_time \ - -label "Start Time" \ + -label "[_ room-reservation.Start_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" element create reservation_edit end_time \ - -label "End Time" \ + -label "[_ room-reservation.End_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" element create reservation_edit attendees \ - -label "Expected No. of Attendees" \ + -label "[_ room-reservation.lt_Expected_No_of_Attend]" \ -datatype integer \ -widget text element create reservation_edit note \ - -label "Added Instructions / Extra Notes" \ + -label "[_ room-reservation.lt_Added_Instructions__E_1]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ -optional element create reservation_edit contact_person \ - -label "Contact Name" \ + -label "[_ room-reservation.Contact_Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ -optional element create reservation_edit contact_email \ - -label "Contact Email" \ + -label "[_ room-reservation.Contact_Email_1]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ -optional element create reservation_edit contact_phone \ - -label "Contact Phone" \ + -label "[_ room-reservation.Contact_Phone_1]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ @@ -125,27 +125,27 @@ set end_date [calendar::to_sql_datetime -date $date -time $end_time] if {![room-reservation::datetime::check_valid_end_date_p -date $end_date]} { - element set_error reservation_edit date "End date and time has already passed" + element set_error reservation_edit date "[_ room-reservation.lt_End_date_and_time_has]" set form_submit 0 } if {![room-reservation::datetime::check_valid_dates_p -start_date $start_date -end_date $end_date]} { - element set_error reservation_edit date "Start date must be before end date" + element set_error reservation_edit date "[_ room-reservation.lt_Start_date_must_be_be]" set form_submit 0 } if {![room-reservation::datetime::check_valid_year_p -start_date $start_date]} { - element set_error reservation_edit date "Start date must fall within [parameter::get -parameter FutureYears -default 5] years from now" + element set_error reservation_edit date "[_ room-reservation.lt_Start_date_must_fall_]" set form_submit 0 } if {[room-reservation::reservations::check_conflict_p -reservation_id $reservation_id -room_id $room_id -start_date $start_date -end_date $end_date]} { - element set_error reservation_edit date "The reservation you are trying to make conflicts with another reservation" + element set_error reservation_edit date "[_ room-reservation.lt_The_reservation_you_a]" set form_submit 0 } if {![empty_string_p $contact_email] && ![util_email_valid_p $contact_email]} { - element set_error reservation_edit contact_email "Invalid email address format for "contact email" + element set_error reservation_edit contact_email "[_ room-reservation.lt_Invalid_email_address]" set form_submit 0 } } Index: openacs-4/contrib/packages/room-reservation/www/reservation-new.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/reservation-new.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/reservation-new.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/reservation-new.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -25,8 +25,8 @@ set room_full_name [room-reservation::rooms::get_full_name -room_id $room_id] -set title "Reserve A $rooms_pretty_name" -set context [list [list "rooms" $rooms_pretty_plural] [list "room-view?room_id=$room_id" "$room_full_name Info"] [list "room-reservations?room_id=$room_id" "$room_full_name Reservations"] $title] +set title "[_ room-reservation.lt_Reserve_A_rooms_prett]" +set context [list [list "rooms" $rooms_pretty_plural] [list "room-view?room_id=$room_id" "[_ room-reservation.room_full_name_Info]"] [list "room-reservations?room_id=$room_id" "[_ room-reservation.lt_room_full_name_Reserv]"] $title] # let's make sure we have a date and a time set date [calendar::adjust_date -date $date -julian_date $julian_date] @@ -42,66 +42,66 @@ form create reservation element create reservation room_id \ - -label "Room ID" \ + -label "[_ room-reservation.Room_ID]" \ -datatype integer \ -widget hidden element create reservation room_name \ - -label "Room Name" \ + -label "[_ room-reservation.Room_Name_1]" \ -datatype text \ -widget inform element create reservation name \ - -label "Event Name" \ + -label "[_ room-reservation.Event_Name]" \ -datatype text \ -widget text element create reservation date \ - -label "Date" \ + -label "[_ room-reservation.Date]" \ -datatype date \ -widget date element create reservation start_time \ - -label "Start Time" \ + -label "[_ room-reservation.Start_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" element create reservation end_time \ - -label "End Time" \ + -label "[_ room-reservation.End_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" element create reservation attendees \ - -label "Expected No. of Attendees" \ + -label "[_ room-reservation.lt_Expected_No_of_Attend]" \ -datatype integer \ -widget text element create reservation note \ - -label "Added Instructions / Extra Notes" \ + -label "[_ room-reservation.lt_Added_Instructions__E_1]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ -optional element create reservation contact_person \ - -label "Contact Name" \ + -label "[_ room-reservation.Contact_Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ -optional element create reservation contact_email \ - -label "Contact Email" \ + -label "[_ room-reservation.Contact_Email_1]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ -optional element create reservation contact_phone \ - -label "Contact Phone" \ + -label "[_ room-reservation.Contact_Phone_1]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} \ @@ -126,32 +126,32 @@ set end_date [calendar::to_sql_datetime -date $date -time $end_time] if {![room-reservation::datetime::check_valid_end_date_p -date $end_date]} { - element set_error reservation date "End date and time has already passed" + element set_error reservation date "[_ room-reservation.lt_End_date_and_time_has]" set form_submit 0 } if {![room-reservation::datetime::check_valid_dates_p -start_date $start_date -end_date $end_date]} { - element set_error reservation date "Start date must be before end date" + element set_error reservation date "[_ room-reservation.lt_Start_date_must_be_be]" set form_submit 0 } if {![room-reservation::datetime::check_valid_year_p -start_date $start_date]} { - element set_error reservation date "Start date must fall within [parameter::get -parameter FutureYears -default 5] years from now" + element set_error reservation date "[_ room-reservation.lt_Start_date_must_fall_]" set form_submit 0 } if {[room-reservation::reservations::check_conflict_p -room_id $room_id -start_date $start_date -end_date $end_date]} { - set error_string "The reservation you are trying to make conflicts with reservation(s):
" + set error_string "[_ room-reservation.lt_The_reservation_you_a_1]" set conflict_list [room-reservation::reservations::get_conflict_ids -room_id $room_id -start_date $start_date -end_date $end_date] foreach reservation_id $conflict_list { - append error_string "Reservation $reservation_id (view)
" + append error_string "[_ room-reservation.lt_Reservation_reservati]" } element set_error reservation date $error_string set form_submit 0 } if {![empty_string_p $contact_email] && ![util_email_valid_p $contact_email]} { - element set_error reservation contact_email "Invalid email address format for "contact email" + element set_error reservation contact_email "[_ room-reservation.lt_Invalid_email_address]" set form_submit 0 } } Index: openacs-4/contrib/packages/room-reservation/www/reservation-view.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/reservation-view.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/reservation-view.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/reservation-view.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -5,76 +5,77 @@

- + - + - + - - + + - + - + - + - + - + - + - + - + - +
@facilities_pretty_name@ Name:#room-reservation.lt_facilities_pretty_nam_1# @reservation_info.facility_name@
@rooms_pretty_name@ Name:#room-reservation.lt_rooms_pretty_name_Nam_1# @reservation_info.room_name@
Event:#room-reservation.Event_1# @reservation_info.name@
Reservation Date and Time:@reservation_info.full_start_date@ to
@reservation_info.full_end_date@
#room-reservation.lt_Reservation_Date_and_##room-reservation.lt_reservation_infofull_#
@reservation_info.full_end_date@
Reserved by:#room-reservation.Reserved_by_1# @reservation_info.username@
Estimated No. of Attendees:#room-reservation.lt_Estimated_No_of_Atten# @reservation_info.attendees@
Added Instructions / Extra Notes:#room-reservation.lt_Added_Instructions__E# @reservation_info.note@
Contact Person:#room-reservation.Contact_Person# @reservation_info.contact_person@
Contact Email:#room-reservation.Contact_Email# @reservation_info.contact_email@
Contact Phone:#room-reservation.Contact_Phone# @reservation_info.contact_phone@
Status:#room-reservation.Status_1# @reservation_info.status@
Administrator's reason why reservation request was @reservation_info.status@:#room-reservation.lt_Administrators_reason# @reservation_info.reason@
Date when reservation request was @reservation_info.status@:#room-reservation.lt_Date_when_reservation# @reservation_info.full_action_date@

+ Index: openacs-4/contrib/packages/room-reservation/www/room-reservations.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/room-reservations.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/room-reservations.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/room-reservations.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -4,12 +4,12 @@

-
@calendar_navigation;noquote@ @content;noquote@
\ No newline at end of file + Index: openacs-4/contrib/packages/room-reservation/www/room-reservations.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/room-reservations.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/room-reservations.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/room-reservations.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -10,7 +10,7 @@ } { room_id:integer,notnull - {view "list"} + {view "month"} {date ""} {julian_date ""} } -properties { @@ -34,12 +34,6 @@ set item_add_template "(Reserve)" switch -exact -- $view { - {list} { - set content [room-reservation::calendar::list_display -room_id $room_id \ - -date $date \ - -item_template $item_template \ - ] - } {week} { set content [room-reservation::calendar::one_week_display -room_id $room_id \ -date $date \ @@ -59,14 +53,20 @@ -item_add_template "$item_add_template" \ ] } - default { + {day} { set content [room-reservation::calendar::one_day_display -room_id $room_id \ -date $date \ -prev_nav_template "<" \ -next_nav_template ">" \ -item_template $item_template \ ] } + {list} { + set content [room-reservation::calendar::list_display -room_id $room_id \ + -date $date \ + -item_template $item_template \ + ] + } } set calendar_navigation [dt_widget_calendar_navigation "room-reservations" $view $date "room_id=$room_id"] Index: openacs-4/contrib/packages/room-reservation/www/room-search.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/room-search.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/room-search.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/room-search.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -19,7 +19,7 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -rooms_pretty_plural rooms_pretty_plural -set title "Search for $rooms_pretty_plural" +set title "[_ room-reservation.lt_Search_for_rooms_pret]" set context $title form create room_search @@ -32,33 +32,33 @@ -optional element create room_search date_start \ - -label "Start on this date" \ + -label "[_ room-reservation.Start_on_this_date]" \ -datatype date \ -widget date \ -optional element create room_search date_end \ - -label "End on this date" \ + -label "[_ room-reservation.End_on_this_date]" \ -datatype date \ -widget date \ -optional element create room_search start_time \ - -label "Start Time" \ + -label "[_ room-reservation.Start_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" \ -optional element create room_search end_time \ - -label "End Time" \ + -label "[_ room-reservation.End_Time]" \ -datatype date \ -widget date \ -format "HH12:MI AM" \ -optional element create room_search capacity \ - -label "Seating capacity" \ + -label "[_ room-reservation.Seating_capacity]" \ -datatype integer \ -widget text Index: openacs-4/contrib/packages/room-reservation/www/room-view.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/room-view.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/room-view.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/room-view.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -4,37 +4,38 @@

- + - + - + - + - + - - + + - - + +
Room Name:#room-reservation.Room_Name# @room_info.name@
Description:#room-reservation.Description_1# @room_info.description@
Capacity:#room-reservation.Capacity# @room_info.capacity@
Room Name:#room-reservation.Room_Name# @room_info.name@
Phone:#room-reservation.Phone# @room_info.phone@
Needs Approval:YesNo#room-reservation.Needs_Approval##room-reservation.Yes##room-reservation.No#
Enabled:YesNo#room-reservation.Enabled##room-reservation.Yes##room-reservation.No#

+ Index: openacs-4/contrib/packages/room-reservation/www/rooms.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/rooms.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/rooms.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/rooms.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -8,7 +8,8 @@ @facilities_pretty_name@: @rooms.facility_name@ (@rooms.room_count@ @rooms_pretty_plural@)

+ Index: openacs-4/contrib/packages/room-reservation/www/admin/facilities.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facilities.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facilities.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facilities.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -4,32 +4,33 @@

@facilities_pretty_plural@

- + - - - - + + + + - +

Enabled @facilities_pretty_plural@Disabled @facilities_pretty_plural@

#room-reservation.lt_Enabled_facilities_pr##room-reservation.lt_Disabled_facilities_p#
NameDescriptionNo. of roomsAction#room-reservation.Name##room-reservation.Description##room-reservation.No_of_rooms##room-reservation.Action#
@facilities.name@ @facilities.description@ @facilities.roomcount@[ DisableEnable | Edit | View @rooms_pretty_plural@ | Delete][ #room-reservation.Disable##room-reservation.Enable# | #room-reservation.Edit# | #room-reservation.lt_View_rooms_pretty_plu# | #room-reservation.Delete#]
-No @facilities_pretty_plural@ +#room-reservation.lt_No_facilities_pretty_# + Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-delete.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-delete.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-delete.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-delete.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -13,7 +13,7 @@ } if { [catch { room-reservation::facilities::delete -facility_id $facility_id } errmsg] } { - ad_return_error "Delete Error" "This [room-reservation::get_facilities_pretty_name] cannot be deleted due to the following reason:

$errmsg
" + ad_return_error "[_ room-reservation.Delete_Error]" "[_ room-reservation.lt_This_room-reservation]

$errmsg
" } Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,30 +3,31 @@ @context@

-@facility_name@ cannot be disabled if pending and/or approved reservations exist. The conflicting reservations are listed blow. +#room-reservation.lt_facility_name_cannot_#

- - - - - - - + + + + + + + - + - +
FacilityRoomEvent NameReservation DateStatusReserved byAction#room-reservation.Facility##room-reservation.Room##room-reservation.Event_Name##room-reservation.Reservation_Date##room-reservation.Status##room-reservation.Reserved_by##room-reservation.Action#
@reservations_list.facility_name@ @reservations_list.room_name@ @reservations_list.name@@reservations_list.full_start_date@ to
@reservations_list.full_end_date@
#room-reservation.lt_reservations_listfull#
@reservations_list.full_end_date@
@reservations_list.status@ @reservations_list.username@[ View Details | Approve | Reject ][ #room-reservation.View_Details# | #room-reservation.Approve# | #room-reservation.Reject# ]
+ Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-disable.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -35,7 +35,7 @@ room-reservation::get_ui_params -facilities_pretty_plural facilities_pretty_plural - set title "Disable $facility_name" + set title "[_ room-reservation.lt_Disable_facility_name]" set context [list [list "facilities" $facilities_pretty_plural] $title] template::util::list_of_ns_sets_to_multirow -rows $reservations -var_name reservations_list Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -4,3 +4,4 @@ facility.name + Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-edit.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -19,24 +19,24 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -facilities_pretty_plural facilities_pretty_plural -set title "Edit A $facilities_pretty_name" +set title "[_ room-reservation.lt_Edit_A_facilities_pre]" set context [list [list "facilities" $facilities_pretty_plural] $title] form create facility_edit element create facility_edit facility_id \ - -label "Facility ID" \ + -label "[_ room-reservation.Facility_ID]" \ -datatype integer \ -widget hidden element create facility_edit name \ - -label "Name" \ + -label "[_ room-reservation.Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} element create facility_edit description \ - -label "Description" \ + -label "[_ room-reservation.Description]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ @@ -49,7 +49,7 @@ set name_exists_p [room-reservation::facilities::name_exists -name $name] if {$name_exists_p && ![string equal $name_exists_p $facility_id]} { - element set_error facility_edit name "The name you provided is already being used" + element set_error facility_edit name "[_ room-reservation.lt_the_name_you_provided]" } else { set facility_id [room-reservation::facilities::edit -facility_id $facility_id \ -name $name \ Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-new.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-new.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-new.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-new.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -17,24 +17,24 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -facilities_pretty_plural facilities_pretty_plural -set title "Create New $facilities_pretty_name" +set title "[_ room-reservation.lt_Create_New_facilities]" set context [list [list "facilities" $facilities_pretty_plural] $title] form create facility element create facility facility_id \ - -label "Facility ID" \ + -label "[_ room-reservation.Facility_ID]" \ -datatype integer \ -widget hidden element create facility name \ - -label "Name" \ + -label "[_ room-reservation.Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} element create facility description \ - -label "Description" \ + -label "[_ room-reservation.Description]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ @@ -45,7 +45,7 @@ facility_id name description if {[room-reservation::facilities::name_exists -name $name]} { - element set_error facility name "The name you provided is already being used" + element set_error facility name "[_ room-reservation.lt_the_name_you_provided_1]" } else { set facility_id [room-reservation::facilities::new -facility_id $facility_id \ -name $name \ Index: openacs-4/contrib/packages/room-reservation/www/admin/facility-view.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/facility-view.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/facility-view.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/facility-view.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -4,19 +4,20 @@

@facility_name@

-Enabled @rooms_pretty_plural@Disabled @rooms_pretty_plural@ +#room-reservation.lt_Enabled_rooms_pretty_##room-reservation.lt_Disabled_rooms_pretty#

-No @rooms_pretty_plural@ +#room-reservation.lt_No_rooms_pretty_plura# + Index: openacs-4/contrib/packages/room-reservation/www/admin/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/index.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/index.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/index.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -5,7 +5,8 @@ + Index: openacs-4/contrib/packages/room-reservation/www/admin/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/index.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/index.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/index.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -16,6 +16,6 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -facilities_pretty_plural facilities_pretty_plural -rooms_pretty_plural rooms_pretty_plural -set title "Room Reservation Administration" +set title "[_ room-reservation.lt_Room_Reservation_Admi]" ad_return_template Index: openacs-4/contrib/packages/room-reservation/www/admin/params-flush.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/params-flush.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/params-flush.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/params-flush.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,11 +3,12 @@ @context@

-Cached parameters flushed. Here are the new values: +#room-reservation.lt_Cached_parameters_flu#

+ Index: openacs-4/contrib/packages/room-reservation/www/admin/params-flush.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/params-flush.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/params-flush.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/params-flush.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -18,7 +18,7 @@ set package_id [ad_conn package_id] -set title "Flush Cached Parameters" +set title "[_ room-reservation.lt_Flush_Cached_Paramete]" set context [list [list "params" "Manage Package Parameters"] $title] room-reservation::flush_parameters Index: openacs-4/contrib/packages/room-reservation/www/admin/params.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/params.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/params.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/params.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,7 +3,8 @@ {@context@} + Index: openacs-4/contrib/packages/room-reservation/www/admin/reservations.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/reservations.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/reservations.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/reservations.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,17 +3,17 @@ @context@

-Show @filter_list:item@@filter_list:item@ | reservations +#room-reservation.Show# @filter_list:item@@filter_list:item@ | #room-reservation.reservations#

- - - - - - - + + + + + + + @@ -24,12 +24,13 @@ - + - +
@facilities_pretty_name@ Name@rooms_pretty_name@ NameEvent NameReservation DateStatusReserved byAction#room-reservation.lt_facilities_pretty_nam##room-reservation.lt_rooms_pretty_name_Nam##room-reservation.Event_Name##room-reservation.Reservation_Date##room-reservation.Status##room-reservation.Reserved_by##room-reservation.Action#
@all_reservations.facility_name@ @all_reservations.room_name@ @all_reservations.name@@all_reservations.full_start_date@ to
@all_reservations.full_end_date@
#room-reservation.lt_all_reservationsfull_#
@all_reservations.full_end_date@
@all_reservations.status@ @all_reservations.username@[ View Details | Approve | Reject ][ #room-reservation.View_Details# | #room-reservation.Approve# | #room-reservation.Reject# ]
+ Index: openacs-4/contrib/packages/room-reservation/www/admin/reservations.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/reservations.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/reservations.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/reservations.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -19,7 +19,7 @@ room-reservation::get_ui_params -facilities_pretty_name facilities_pretty_name -rooms_pretty_name rooms_pretty_name -rooms_pretty_plural rooms_pretty_plural -set title "Reservations" +set title "[_ room-reservation.Reservations]" set context $title switch -exact -- $filter_on { Index: openacs-4/contrib/packages/room-reservation/www/admin/room-delete.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-delete.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-delete.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-delete.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -14,7 +14,7 @@ } if { [catch { room-reservation::rooms::delete -room_id $room_id } errmsg] } { - ad_return_error "Delete Error" "This [room-reservation::get_rooms_pretty_name] cannot be deleted due to the following reason:

$errmsg
" + ad_return_error "[_ room-reservation.Delete_Error]" "[_ room-reservation.lt_This_room-reservation_1]

$errmsg
" } Index: openacs-4/contrib/packages/room-reservation/www/admin/room-disable.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-disable.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-disable.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-disable.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,26 +3,27 @@ @context@

-@room_full_name@ cannot be disabled if pending and/or approved reservations exist. The conflicting reservations are listed blow. +#room-reservation.lt_room_full_name_cannot#

- - - - - + + + + + - + - +
Event NameReservation DateStatusReserved byAction#room-reservation.Event_Name##room-reservation.Reservation_Date##room-reservation.Status##room-reservation.Reserved_by##room-reservation.Action#
@reservations_list.name@@reservations_list.full_start_date@ to
@reservations_list.full_end_date@
#room-reservation.lt_reservations_listfull#
@reservations_list.full_end_date@
@reservations_list.status@ @reservations_list.username@[ View Details | Approve | Reject ][ #room-reservation.View_Details# | #room-reservation.Approve# | #room-reservation.Reject# ]
+ Index: openacs-4/contrib/packages/room-reservation/www/admin/room-edit.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-edit.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-edit.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-edit.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -22,54 +22,54 @@ set facility_name [room-reservation::facilities::get_name -facility_id $facility_id] set room_full_name [room-reservation::rooms::get_full_name -room_id $room_id] -set title "Edit $rooms_pretty_name Properties" +set title "[_ room-reservation.lt_Edit_rooms_pretty_nam]" set context [list [list "facilities" $facilities_pretty_plural] [list "facility-view?facility_id=$facility_id" "$facility_name $rooms_pretty_plural"] [list "room-view?room_id=$room_id" $room_full_name] $title] form create room_edit element create room_edit room_id \ - -label "Room ID" \ + -label "[_ room-reservation.Room_ID]" \ -datatype integer \ -widget hidden element create room_edit facility_id \ - -label "Facility ID" \ + -label "[_ room-reservation.Facility_ID]" \ -datatype integer \ -widget hidden element create room_edit return_url \ - -label "Return URL" \ + -label "[_ room-reservation.Return_URL]" \ -datatype text \ -widget hidden element create room_edit name \ - -label "Name" \ + -label "[_ room-reservation.Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} element create room_edit description \ - -label "Description" \ + -label "[_ room-reservation.Description]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ -optional element create room_edit capacity \ - -label "Capacity" \ + -label "[_ room-reservation.Capacity_1]" \ -datatype integer \ -html {size 5} \ -widget text element create room_edit phone \ - -label "Phone" \ + -label "[_ room-reservation.Phone_1]" \ -datatype text \ -widget text \ -html {size 20 maxlength 50} \ -optional element create room_edit approval_needed_p \ - -label "Needs approval to reserve" \ + -label "[_ room-reservation.lt_Needs_approval_to_res]" \ -datatype text \ -widget select \ -options {{Yes t} {No f}} @@ -80,7 +80,7 @@ set name_exists_p [room-reservation::rooms::name_exists -name $name -facility_id $facility_id] if {$name_exists_p && ![string equal $name_exists_p $room_id]} { - element set_error room_edit name "The name you provided is already being used." + element set_error room_edit name "[_ room-reservation.lt_the_name_you_provided]" } else { set room_id [room-reservation::rooms::edit -room_id $room_id \ -name $name \ Index: openacs-4/contrib/packages/room-reservation/www/admin/room-history.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-history.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-history.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-history.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,10 +3,11 @@ @context@

-Reservation History for @room_full_name@ +#room-reservation.lt_Reservation_History_f#

+ Index: openacs-4/contrib/packages/room-reservation/www/admin/room-history.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-history.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-history.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-history.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -22,7 +22,7 @@ set facility_name [room-reservation::facilities::get_name -facility_id $facility_id] set room_full_name [room-reservation::rooms::get_full_name -room_id $room_id] -set title "Reservation History" +set title "[_ room-reservation.Reservation_History]" set context [list [list "facilities" $facilities_pretty_plural] [list "facility-view?facility_id=$facility_id" "$facility_name $rooms_pretty_plural"] [list "room-view?room_id=$room_id" "$room_full_name Info"] $title] db_multirow all_reservations get_room_history {} Index: openacs-4/contrib/packages/room-reservation/www/admin/room-new.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-new.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-new.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-new.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -20,54 +20,54 @@ set facility_name [room-reservation::facilities::get_name -facility_id $facility_id] -set title "Create New $rooms_pretty_name" +set title "[_ room-reservation.lt_Create_New_rooms_pret]" set context [list [list "facilities" $facilities_pretty_plural] [list "facility-view?facility_id=$facility_id" "$facility_name $rooms_pretty_plural"] $title] form create room element create room room_id \ - -label "Room ID" \ + -label "[_ room-reservation.Room_ID]" \ -datatype integer \ -widget hidden element create room facility_id \ - -label "Facility ID" \ + -label "[_ room-reservation.Facility_ID]" \ -datatype integer \ -widget hidden element create room return_url \ - -label "Return URL" \ + -label "[_ room-reservation.Return_URL]" \ -datatype text \ -widget hidden element create room name \ - -label "Name" \ + -label "[_ room-reservation.Name]" \ -datatype text \ -widget text \ -html {size 60 maxlength 200} element create room description \ - -label "Description" \ + -label "[_ room-reservation.Description]" \ -datatype text \ -widget textarea \ -html {cols 60 rows 10 wrap soft} \ -optional element create room capacity \ - -label "Capacity" \ + -label "[_ room-reservation.Capacity_1]" \ -datatype integer \ -html {size 5} \ -widget text element create room phone \ - -label "Phone" \ + -label "[_ room-reservation.Phone_1]" \ -datatype text \ -widget text \ -html {size 20 maxlength 50} \ -optional element create room approval_needed_p \ - -label "Needs approval to reserve" \ + -label "[_ room-reservation.lt_Needs_approval_to_res]" \ -datatype text \ -widget select \ -options {{Yes t} {No f}} @@ -77,7 +77,7 @@ room_id facility_id return_url name description capacity phone approval_needed_p if {[room-reservation::rooms::name_exists -name $name -facility_id $facility_id]} { - element set_error room name "The name you provided is already being used." + element set_error room name "[_ room-reservation.lt_the_name_you_provided]" } else { set room_id [room-reservation::rooms::new -room_id $room_id \ -name $name \ Index: openacs-4/contrib/packages/room-reservation/www/admin/room-view.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-view.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-view.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-view.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -3,41 +3,42 @@ @context@

-Back +#room-reservation.Back#

- + - + - + - + - + - - + + - - + +
Room Name:#room-reservation.Room_Name# @room_info.name@
Description:#room-reservation.Description_1# @room_info.description@
Capacity:#room-reservation.Capacity# @room_info.capacity@
Room Name:#room-reservation.Room_Name# @room_info.name@
Phone:#room-reservation.Phone# @room_info.phone@
Needs Approval:YesNo#room-reservation.Needs_Approval##room-reservation.Yes##room-reservation.No#
Enabled:YesNo#room-reservation.Enabled##room-reservation.Yes##room-reservation.No#
+ Index: openacs-4/contrib/packages/room-reservation/www/admin/room-view.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/room-view.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/room-view.tcl 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/room-view.tcl 22 Apr 2004 06:58:38 -0000 1.2 @@ -22,7 +22,7 @@ set facility_id [room-reservation::rooms::get_facility_id -room_id $room_id] set facility_name [room-reservation::facilities::get_name -facility_id $facility_id] -set title "$room_full_name Info" +set title "[_ room-reservation.room_full_name_Info]" set context [list [list "facilities" $facilities_pretty_plural] [list "facility-view?facility_id=$facility_id" "$facility_name $rooms_pretty_plural"] $title] room-reservation::rooms::get -room_id $room_id -array room_info Index: openacs-4/contrib/packages/room-reservation/www/admin/rooms.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/room-reservation/www/admin/rooms.adp,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/room-reservation/www/admin/rooms.adp 15 Mar 2004 03:39:31 -0000 1.1 +++ openacs-4/contrib/packages/room-reservation/www/admin/rooms.adp 22 Apr 2004 06:58:38 -0000 1.2 @@ -5,10 +5,11 @@

@rooms_pretty_plural@

-@facilities_pretty_name@: @rooms.facility_name@ [ Add a @rooms_pretty_name@ ] +@facilities_pretty_name@: @rooms.facility_name@ [ #room-reservation.lt_Add_a_rooms_pretty_na# ]

+