1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4us.xsl
5Parameters for U.S. resumes.
6
7Copyright (c) 2001-2002 Sean Kelly
8All rights reserved.
9
10Redistribution and use in source and binary forms, with or without
11modification, are permitted provided that the following conditions are
12met:
13
141. Redistributions of source code must retain the above copyright
15   notice, this list of conditions and the following disclaimer.
162. Redistributions in binary form must reproduce the above copyright
17   notice, this list of conditions and the following disclaimer in the
18   documentation and/or other materials provided with the
19   distribution.
20
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
25BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
30OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
31IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33$Id: us.xsl,v 1.4 2002/11/04 10:36:39 brandondoyle Exp $
34-->
35
36<xsl:stylesheet version="1.0"
37  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
38
39  <xsl:param name="resume.word">R&#x00e9;sum&#x00e9;</xsl:param>
40  <xsl:param name="page.word">page</xsl:param>
41  <!-- Word to use for "Contact Information" -->
42  <xsl:param name="contact.word">Contact Information</xsl:param>
43  <xsl:param name="objective.word">Professional Objective</xsl:param>
44  <!-- Word to use for "Employment History" -->
45  <xsl:param name="history.word">Employment History</xsl:param>
46  <xsl:param name="academics.word">Education</xsl:param>
47  <xsl:param name="publications.word">Publications</xsl:param>
48  <xsl:param name="interests.word">Interests</xsl:param>
49  <xsl:param name="security-clearances.word">Security Clearances</xsl:param>
50  <xsl:param name="awards.word">Awards</xsl:param>
51  <xsl:param name="miscellany.word">Miscellany</xsl:param>
52  <!-- Word to use for "in", as in "bachelor degree *in* political science" -->
53  <xsl:param name="in.word">in</xsl:param>
54  <!-- Word to use for "and", as in "Minors in political science, English, *and*
55  business" -->
56  <xsl:param name="and.word">and</xsl:param>
57  <!-- Word to use for "Copyright (c)" -->
58  <xsl:param name="copyright.word">Copyright &#169;</xsl:param>
59  <!-- Word to use for "by", as in "Copyright by Joe Doom" -->
60  <xsl:param name="by.word">by</xsl:param>
61  <!-- Word to use for "present", as in "Period worked: August 1999-Present" -->
62  <xsl:param name="present.word">Present</xsl:param>
63  <xsl:param name="achievements.word">Achievements:</xsl:param>
64  <xsl:param name="projects.word">Projects:</xsl:param>
65  <!-- Word to use for "minor" (lesser area of study), singluar and plural. -->
66  <xsl:param name="minor.word">minor</xsl:param>
67  <xsl:param name="minors.word">minors</xsl:param>
68  <xsl:param name="referees.word">References</xsl:param>
69  <!-- Word to use for "Overall GPA", as in "*Overall GPA*: 3.3" -->
70  <xsl:param name="overall-gpa.word">Overall GPA</xsl:param>
71  <!-- Word to use for "GPA in Major", as in "*GPA in Major*: 3.3" -->
72  <xsl:param name="major-gpa.word">GPA in Major</xsl:param>
73  <!-- Text to use for "out of", as in "GPA: 3.71* out of *4.00" -->
74  <xsl:param name="out-of.word"> out of </xsl:param>
75
76  <!-- Phrase to display when referees are hidden. -->
77  <xsl:param name="referees.hidden.phrase">Available upon request.</xsl:param>
78  <xsl:param name="last-modified.phrase">Last modified</xsl:param>
79
80  <xsl:param name="phone.word">Phone</xsl:param>
81  <xsl:param name="fax.word">Fax</xsl:param>
82  <xsl:param name="phone.home.phrase">Home <xsl:value-of select="$phone.word"/></xsl:param>
83  <xsl:param name="phone.work.phrase">Work <xsl:value-of select="$phone.word"/></xsl:param>
84  <xsl:param name="phone.mobile.phrase">Mobile <xsl:value-of select="$phone.word"/></xsl:param>
85  <xsl:param name="fax.home.phrase">Home <xsl:value-of select="$fax.word"/></xsl:param>
86  <xsl:param name="fax.work.phrase">Work <xsl:value-of select="$fax.word"/></xsl:param>
87
88  <xsl:param name="pager.word">Pager</xsl:param>
89  <xsl:param name="email.word">Email</xsl:param>
90  <xsl:param name="url.word">URL</xsl:param>
91
92  <!-- Instant messenger service names -->
93  <!-- (When you add or remove a service here, don't forget to update
94  ../../lib/common.xsl and element.instantMessage.xml in the user guide.)
95  -->
96  <xsl:param name="im.aim.service">AIM</xsl:param>
97  <xsl:param name="im.icq.service">ICQ</xsl:param>
98  <xsl:param name="im.irc.service">IRC</xsl:param>
99  <xsl:param name="im.jabber.service">Jabber</xsl:param>
100  <xsl:param name="im.msn.service">MSN Messenger</xsl:param>
101  <xsl:param name="im.yahoo.service">Yahoo! Messenger</xsl:param>
102
103</xsl:stylesheet>
104