Index: openacs-4/packages/acs-subsite/catalog/acs-subsite.en_US.ISO-8859-1.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/catalog/acs-subsite.en_US.ISO-8859-1.xml,v
diff -u -r1.35 -r1.36
--- openacs-4/packages/acs-subsite/catalog/acs-subsite.en_US.ISO-8859-1.xml 12 Oct 2003 18:21:21 -0000 1.35
+++ openacs-4/packages/acs-subsite/catalog/acs-subsite.en_US.ISO-8859-1.xml 12 Oct 2003 19:50:30 -0000 1.36
@@ -18,12 +18,18 @@
Your account at %system_name% has been reopened. Welcome back.
Account Reopened
+ Add new application
Admin
+ Administer %subsite_name%
Answer
+ Applications
+ Approve
at
Bad Password
+ Ban
Basic Information
Retrieving password from local authority is not supported.
+ Cannot see the members list
Change language
Change my Password
Change password, email, portrait
@@ -41,11 +47,16 @@
logging in again. </p>
Close your account
+ communities
+ Communities
+ community
Confirm
+ Create new %pretty_name%
Current Password
<p> Your online status is currently not visible to other users. </p>
<p> Your online status is currently visible to other users. </p>
Customize Question
+ Delete
DevAdmin
Developer's Administration
Direct Permissions
@@ -78,8 +89,13 @@
First names
Grant
Grant Permission
+ Invite
+ Join community
Join %group_name%
+ Join this community
Last name
+ Leave community
+ Leave this community
Login or register
Log In
Log in to %system_name%
@@ -130,11 +146,19 @@
from the %system_name% administrator.
Your email is confirmed
Your URL doesn't have the correct form. A valid URL would be something like "%valid_url_example%".
+ Make administrator
+ Make yourself invisible
Make yourself visible
Manage your notifications
+ Members
+ Member State
+ Sorry, but you are not allowed to view the members list.
+ Name
New Password
Not logged in
+ No applications
+ No %pretty_plural%
your portrait
none
Used to indicate that a list of permissions or objects is empty.
@@ -167,11 +191,20 @@
<p> Thank you for registering for %system_name%. An administrator has been notified of your request. </p>
<p> Once you're approved, you'll get an email message and you can return to start using %system_name%. </p>
+ Remove
+ Reject
+ Request membership
+ Request membership of this community
Revoke Checked
+ Role
Screen name
+ Send email to this user
Site-wide administration
Show
Sorry, we can't help you with your forgotten password.
+ subcommunities
+ Subcommunities
+ subcommunity
Thank you.
up to %context_name%
Update
Index: openacs-4/packages/acs-subsite/lib/applications.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/lib/applications.adp,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-subsite/lib/applications.adp 2 Oct 2003 22:04:46 -0000 1.1
+++ openacs-4/packages/acs-subsite/lib/applications.adp 12 Oct 2003 19:50:30 -0000 1.2
@@ -1,5 +1,5 @@
- » Add new application
+ » #acs-subsite.Add_new_app#
Index: openacs-4/packages/acs-subsite/lib/applications.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/lib/applications.tcl,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-subsite/lib/applications.tcl 2 Oct 2003 22:04:46 -0000 1.1
+++ openacs-4/packages/acs-subsite/lib/applications.tcl 12 Oct 2003 19:50:30 -0000 1.2
@@ -6,10 +6,10 @@
list::create \
-name applications \
-multirow applications \
- -no_data "No applications" \
+ -no_data "[_ acs-subsite.No_applications]" \
-elements {
instance_name {
- label "Name"
+ label "[_ acs-subsite.Name]"
link_url_eval {$name/}
}
}
Index: openacs-4/packages/acs-subsite/lib/subsites.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/lib/subsites.adp,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-subsite/lib/subsites.adp 3 Oct 2003 09:08:22 -0000 1.2
+++ openacs-4/packages/acs-subsite/lib/subsites.adp 12 Oct 2003 19:50:30 -0000 1.3
@@ -1,5 +1,5 @@
- » Create new @pretty_name@
+ » #acs-subsite.Create_new_community#
Index: openacs-4/packages/acs-subsite/lib/subsites.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/lib/subsites.tcl,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/acs-subsite/lib/subsites.tcl 3 Oct 2003 09:08:22 -0000 1.5
+++ openacs-4/packages/acs-subsite/lib/subsites.tcl 12 Oct 2003 19:50:30 -0000 1.6
@@ -1,9 +1,9 @@
if { [string equal [ad_conn package_url] "/"] } {
- set pretty_name "community"
- set pretty_plural "communities"
+ set pretty_name [_ acs-subsite.community]
+ set pretty_plural [_ acs-subsite.communities]
} else {
- set pretty_name "subcommunity"
- set pretty_plural "subcommunities"
+ set pretty_name [_ acs-subsite.subcommunity]
+ set pretty_plural [_ acs-subsite.subcommunities]
}
set admin_p [permission::permission_p -object_id [ad_conn package_id] -privilege admin]
@@ -15,14 +15,14 @@
list::create \
-name subsites \
-multirow subsites \
- -no_data "No $pretty_plural" \
+ -no_data "[_ acs-subsite.No_pretty_plural [list pretty_plural $pretty_plural]]" \
-elements {
instance_name {
- label "Name"
+ label "[_ acs-subsite.Name]"
link_url_col url
}
num_members {
- label "\# Members"
+ label "\# [_ acs-subsite.Members]"
html { align right }
}
}
Index: openacs-4/packages/acs-subsite/www/index.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/index.adp,v
diff -u -r1.15 -r1.16
--- openacs-4/packages/acs-subsite/www/index.adp 10 Oct 2003 16:35:03 -0000 1.15
+++ openacs-4/packages/acs-subsite/www/index.adp 12 Oct 2003 19:50:30 -0000 1.16
@@ -5,29 +5,32 @@
- Applications
+ #acs-subsite.Applications#
|
@@ -38,7 +41,7 @@
- » Members
+ » #acs-subsite.Members#
|
Index: openacs-4/packages/acs-subsite/www/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/index.tcl,v
diff -u -r1.14 -r1.15
--- openacs-4/packages/acs-subsite/www/index.tcl 10 Oct 2003 09:02:18 -0000 1.14
+++ openacs-4/packages/acs-subsite/www/index.tcl 12 Oct 2003 19:50:30 -0000 1.15
@@ -55,4 +55,5 @@
set can_join_p [expr !$group_admin_p && $group_member_p == 0 && $user_id != 0 && ![string equal $group_join_policy "closed"]]
-set communities_label [ad_decode $main_site_p 1 "Communities" "Subcommunities"]
+set communities_label [ad_decode $main_site_p 1 "[_ acs-subsite.Communities]" \
+ "[_ acs-subsite.Subcommunities]"]
Index: openacs-4/packages/acs-subsite/www/members/index.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/members/index.adp,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-subsite/www/members/index.adp 10 Oct 2003 16:35:03 -0000 1.4
+++ openacs-4/packages/acs-subsite/www/members/index.adp 12 Oct 2003 19:50:31 -0000 1.5
@@ -16,5 +16,5 @@
@title@
- Sorry, but you are not allowed to view the members list.
+ #acs-subsite.Mem_list_not_allowed#
Index: openacs-4/packages/acs-subsite/www/members/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/members/index.tcl,v
diff -u -r1.7 -r1.8
--- openacs-4/packages/acs-subsite/www/members/index.tcl 10 Oct 2003 16:35:03 -0000 1.7
+++ openacs-4/packages/acs-subsite/www/members/index.tcl 12 Oct 2003 19:50:31 -0000 1.8
@@ -15,7 +15,7 @@
}
}
-set page_title "Members"
+set page_title [_ acs-subsite.Members]
set context [list $page_title]
set group_id [application_group::group_id_from_package_id]
@@ -35,7 +35,7 @@
set show_members_list_p 1
} else {
set show_members_list_p 0
- set title "Cannot see the members list"
+ set title [_ acs-subsite.Cannot_see_memb_list]
}
if { $admin_p } {
@@ -49,7 +49,8 @@
set actions {}
if { $admin_p || [parameter::get -parameter "MembersCanInviteMembersP" -default 0] } {
- set actions { "Invite" member-invite }
+ set actions [_ acs-subsite.Invite]
+ lappend actions { member-invite }
}
# TODO: Pagination
@@ -79,50 +80,50 @@
-actions $actions \
-elements {
name {
- label "Name"
+ label "[_ acs-subsite.Name]"
link_url_eval {[acs_community_member_url -user_id $user_id]}
}
email {
- label "Email"
+ label "[_ acs-subsite.Email]"
link_url_col email_url
- link_html { title "Send email to this user" }
+ link_html { title "[_ acs-subsite.Send_email_to_this_user]" }
}
rel_role {
- label "Role"
+ label "[_ acs-subsite.Role]"
display_template {
@members.rel_role_pretty@
- (Make administrator)
+ (#acs-subsite.Make_administrator#)
- (Make member)
+ (#acs-subsite.Make_member#)
}
}
member_state_pretty {
- label "Member State"
+ label "[_ acs-subsite.Member_State]"
display_template {
@members.member_state_pretty@
- (Approve)
+ (#acs-subsite.Approve#)
- (Reject)
+ (#acs-subsite.Reject#)
- (Ban)
+ (#acs-subsite.Ban#)
- (Delete)
+ (#acs-subsite.Delete#)
- (Remove)
+ (#acs-subsite.Remove#)
}
}
} -filters {
member_state {
- label "Member State"
+ label "[_ acs-subsite.Member_State]"
values $member_state_options
where_clause {
mr.member_state = :member_state
@@ -131,15 +132,15 @@
}
} -orderby {
name {
- label "Name"
+ label "[_ acs-subsite.Name]"
orderby "lower(u.first_names || ' ' || u.last_name)"
}
email {
- label "Email"
+ label "[_ acs-subsite.Email]"
orderby "u.email"
}
rel_role {
- label "Role"
+ label "[_ acs-subsite.Role]"
orderby "role.pretty_name"
}
}
|