| 1 |
<!-- |
|---|
| 2 |
Licensed to Jasig under one or more contributor license |
|---|
| 3 |
agreements. See the NOTICE file distributed with this work |
|---|
| 4 |
for additional information regarding copyright ownership. |
|---|
| 5 |
Jasig licenses this file to you under the Apache License, |
|---|
| 6 |
Version 2.0 (the "License"); you may not use this file |
|---|
| 7 |
except in compliance with the License. You may obtain a |
|---|
| 8 |
copy of the License at: |
|---|
| 9 |
|
|---|
| 10 |
http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 11 |
|
|---|
| 12 |
Unless required by applicable law or agreed to in writing, |
|---|
| 13 |
software distributed under the License is distributed on |
|---|
| 14 |
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|---|
| 15 |
KIND, either express or implied. See the License for the |
|---|
| 16 |
specific language governing permissions and limitations |
|---|
| 17 |
under the License. |
|---|
| 18 |
--> |
|---|
| 19 |
<xsl:stylesheet |
|---|
| 20 |
version="1.0" |
|---|
| 21 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 22 |
xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 23 |
|
|---|
| 24 |
<!-- LOCALE SETTINGS --> |
|---|
| 25 |
<!-- A place for javascript strings and locale specific javascript overrides --> |
|---|
| 26 |
|
|---|
| 27 |
<xsl:template name="bedeworkSchedulingStrings"> |
|---|
| 28 |
<script type="text/javascript"> |
|---|
| 29 |
var bwAttendeeRoleChair = "CHAIR"; |
|---|
| 30 |
var bwAttendeeRoleRequired = "REQ-PARTICIPANT"; |
|---|
| 31 |
var bwAttendeeRoleOptional = "OPT-PARTICIPANT"; |
|---|
| 32 |
var bwAttendeeRoleNonParticipant = "NON-PARTICIPANT"; |
|---|
| 33 |
var bwAttendeeStatusNeedsAction = "NEEDS-ACTION"; |
|---|
| 34 |
var bwAttendeeStatusAccepted = "ACCEPTED"; |
|---|
| 35 |
var bwAttendeeStatusDeclined = "DECLINED"; |
|---|
| 36 |
var bwAttendeeStatusTentative = "TENTATIVE"; |
|---|
| 37 |
var bwAttendeeStatusDelegated = "DELEGATED"; |
|---|
| 38 |
var bwAttendeeStatusCompleted = "COMPLETED"; |
|---|
| 39 |
var bwAttendeeStatusInProcess = "IN-PROCESS"; |
|---|
| 40 |
var bwAttendeeTypePerson = "person"; |
|---|
| 41 |
var bwAttendeeTypeLocation = "location"; |
|---|
| 42 |
var bwAttendeeTypeResource = "resource"; |
|---|
| 43 |
|
|---|
| 44 |
// display strings for the values above |
|---|
| 45 |
// should be put with other internationalized strings |
|---|
| 46 |
// can be translated |
|---|
| 47 |
var bwAttendeeDispRoleChair = "chair"; |
|---|
| 48 |
var bwAttendeeDispRoleRequired = "required participant"; |
|---|
| 49 |
var bwAttendeeDispRoleOptional = "optional participant"; |
|---|
| 50 |
var bwAttendeeDispRoleNonParticipant = "non-participant"; |
|---|
| 51 |
var bwAttendeeDispStatusNeedsAction = "needs action"; |
|---|
| 52 |
var bwAttendeeDispStatusAccepted = "accepted"; |
|---|
| 53 |
var bwAttendeeDispStatusDeclined = "declined"; |
|---|
| 54 |
var bwAttendeeDispStatusTentative = "tentative"; |
|---|
| 55 |
var bwAttendeeDispStatusDelegated = "delegated"; |
|---|
| 56 |
var bwAttendeeDispStatusCompleted = "completed"; |
|---|
| 57 |
var bwAttendeeDispStatusInProcess = "in-process"; |
|---|
| 58 |
var bwAttendeeDispTypePerson = "person"; |
|---|
| 59 |
var bwAttendeeDispTypeLocation = "location"; |
|---|
| 60 |
var bwAttendeeDispTypeResource = "resource"; |
|---|
| 61 |
|
|---|
| 62 |
var bwFreeBusyDispTypeBusy = "BUSY"; |
|---|
| 63 |
var bwFreeBusyDispTypeTentative = "TENTATIVE"; |
|---|
| 64 |
var bwAddAttendeeDisp = "add attendee..."; |
|---|
| 65 |
var bwAddDisp = "add"; |
|---|
| 66 |
var bwAttendeeExistsDisp = "attendee exists"; |
|---|
| 67 |
var bwAddAttendeeRoleDisp = "Role:"; |
|---|
| 68 |
var bwAddAttendeeTypeDisp = "Type:"; |
|---|
| 69 |
var bwAddAttendeeBookDisp = "Book:"; |
|---|
| 70 |
var bwEventSubmitMeetingDisp = "send"; |
|---|
| 71 |
var bwEventSubmitDisp = "save"; |
|---|
| 72 |
|
|---|
| 73 |
var bwReqParticipantDisp = "required"; |
|---|
| 74 |
var bwOptParticipantDisp = "optional"; |
|---|
| 75 |
var bwChairDisp = "chair"; |
|---|
| 76 |
var bwNonParticipant = "non-participant"; |
|---|
| 77 |
var bwNeedsAction = "needs action"; |
|---|
| 78 |
var bwAccepted = "accepted"; |
|---|
| 79 |
var bwDeclined = "declined"; |
|---|
| 80 |
var bwTentative = "tentative"; |
|---|
| 81 |
var bwDelegated = "delegated"; |
|---|
| 82 |
|
|---|
| 83 |
var bwErrorAttendees = "Error: attendees not returned"; |
|---|
| 84 |
|
|---|
| 85 |
</script> |
|---|
| 86 |
</xsl:template> |
|---|
| 87 |
</xsl:stylesheet> |
|---|