revegen ramp up. here we go!

This commit is contained in:
2024-11-04 16:19:43 -06:00
parent 4a6c05c37f
commit d559e51e6e
249 changed files with 31328 additions and 0 deletions

View File

@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
br.xsl
Parameters for Brazilian resumes.
Copyright (c) 2002 Felipe Leme
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: br.xsl,v 1.4 2002/11/26 18:39:27 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">Curriculum Vitae</xsl:param>
<xsl:param name="page.word">p&#x00e1;gina</xsl:param>
<!-- Word to use for "Contact Information" -->
<xsl:param name="contact.word">Dados para Contato</xsl:param>
<xsl:param name="objective.word">Objetivo Profissional</xsl:param>
<!-- Word to use for "Employment History" -->
<xsl:param name="history.word">Experi&#x00ea;ncia Profissional</xsl:param>
<xsl:param name="academics.word">Forma&#x00e7;&#x00e3;o Acad&#x00ea;mica</xsl:param>
<xsl:param name="publications.word">Publica&#x00e7;&#x00f5;es</xsl:param>
<xsl:param name="interests.word">Interesses</xsl:param>
<xsl:param name="security-clearances.word">Autoriza&#x00e7;&#x00f5;es</xsl:param>
<xsl:param name="awards.word">Pr&#x00E8;mios</xsl:param>
<xsl:param name="miscellany.word">Diversos</xsl:param>
<!-- Word to use for "in", as in "bachelor degree *in* political science" -->
<xsl:param name="in.word">em</xsl:param>
<!-- Word to use for "and", as in "Minors in political science,
English, *and* business" -->
<xsl:param name="and.word">e</xsl:param>
<!-- Word to use for "Copyright (c)" -->
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<!-- Word to use for "by", as in "Copyright by Joe Doom" -->
<xsl:param name="by.word">por</xsl:param>
<!-- Word to use for "present", as in "Period worked: August 1999-Present" -->
<xsl:param name="present.word">presente data</xsl:param>
<xsl:param name="achievements.word">Realiza&#x00e7;&#x00f5;es:</xsl:param>
<xsl:param name="projects.word">Projetos:</xsl:param>
<!-- Word to use for "minor" (lesser area of study), singluar and plural. -->
<xsl:param name="minor.word">minorit&#x00E1;rio</xsl:param>
<xsl:param name="minors.word">minorit&#x00E1;rios</xsl:param>
<xsl:param name="referees.word">Refer&#x00ea;ncias</xsl:param>
<!-- Word to use for "Overall GPA", as in "*Overall GPA*: 3.3" -->
<xsl:param name="overall-gpa.word">M&#x00E9;dia Geral</xsl:param>
<!-- Word to use for "GPA in Major", as in "*GPA in Major*: 3.3" -->
<xsl:param name="major-gpa.word">M&#x00E9;dia Principal</xsl:param>
<!-- Text to use for "out of", as in "GPA: 3.71* out of *4.00" -->
<xsl:param name="out-of.word">de um total de</xsl:param>
<!-- Phrase to display when referees are hidden. -->
<xsl:param name="referees.hidden.phrase">Dispon&#x00ED;vel sob pedido.</xsl:param>
<xsl:param name="last-modified.phrase">&#x00DA;ltima modifica&#x00e7;&#x00f5;</xsl:param>
<xsl:param name="phone.word">Telefone</xsl:param>
<xsl:param name="fax.word">Fax</xsl:param>
<xsl:param name="pager.word">Pager</xsl:param>
<xsl:param name="email.word">Endere&#x00e7;o Eletr&#x00f4;nico</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<!-- Words for phone and fax locations, as in "Home Phone", or "Work Fax" -->
<xsl:param name="phone.home.phrase"><xsl:value-of select="$phone.word"/> Residencial</xsl:param>
<xsl:param name="phone.work.phrase"><xsl:value-of select="$phone.word"/> Comercial</xsl:param>
<xsl:param name="phone.mobile.phrase"><xsl:value-of select="$phone.word"/> Celular</xsl:param>
<xsl:param name="fax.home.phrase"><xsl:value-of select="$fax.word"/> Residencial</xsl:param>
<xsl:param name="fax.work.phrase"><xsl:value-of select="$fax.word"/> Comercial</xsl:param>
<!-- Instant messenger service names -->
<!-- (When you add or remove a service here, don't forget to update
../../lib/common.xsl and element.instantMessage.xml in the user guide.)
-->
<xsl:param name="im.aim.service">AIM</xsl:param>
<xsl:param name="im.icq.service">ICQ</xsl:param>
<xsl:param name="im.irc.service">IRC</xsl:param>
<xsl:param name="im.jabber.service">Jabber</xsl:param>
<xsl:param name="im.msn.service">MSN Messenger</xsl:param>
<xsl:param name="im.yahoo.service">Yahoo! Messenger</xsl:param>
<!-- default is European address formatting. For countries other -->
<!-- than France (e.g. Canada) "standard" formatting may be more correct. -->
<xsl:param name="address.format">european</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
de.xsl
Parameters for German resumes.
Copyright (c) 2001 Sean Kelly
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: de.xsl,v 1.2 2002/11/15 18:54:53 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">Lebenslauf</xsl:param>
<xsl:param name="page.word">Seite</xsl:param>
<xsl:param name="contact.word">Personalien</xsl:param>
<xsl:param name="objective.word">Ziele</xsl:param>
<xsl:param name="history.word">Ausge<EFBFBD>bte T<>tigkeiten</xsl:param>
<xsl:param name="academics.word">Akademische Ausbildung</xsl:param>
<xsl:param name="publications.word">Ver<EFBFBD>ffentlichungen</xsl:param>
<xsl:param name="interests.word">Interessen</xsl:param>
<xsl:param name="security-clearances.word">Leumundszeugnis</xsl:param>
<xsl:param name="awards.word">Preise</xsl:param>
<xsl:param name="miscellany.word">Verschiedenes</xsl:param>
<xsl:param name="in.word">in</xsl:param>
<xsl:param name="and.word">und</xsl:param>
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<xsl:param name="by.word"></xsl:param>
<xsl:param name="present.word">Gegenwart</xsl:param>
<xsl:param name="achievements.word">Erreichte Ziele:</xsl:param>
<xsl:param name="projects.word">Projekte:</xsl:param>
<!-- Word to use for "minor" (lesser area of study), singluar and plural. -->
<xsl:param name="minor.word">Nebenfach</xsl:param>
<xsl:param name="minors.word">Nebenf<EFBFBD>cher</xsl:param>
<xsl:param name="referees.word">Referenzen</xsl:param>
<!-- Word to use for "Overall GPA", as in "*Overall GPA*: 3.3" -->
<xsl:param name="overall-gpa.word">Notendurchschnitt</xsl:param>
<!-- Word to use for "GPA in Major", as in "*GPA in Major*: 3.3" -->
<xsl:param name="major-gpa.word">Notendurchschnitt der Hauptf<74>cher</xsl:param>
<!-- Text to use for "out of", as in "GPA: 3.71* out of *4.00" -->
<xsl:param name="out-of.word">von</xsl:param>
<!-- Phrase to display when referees are hidden. -->
<xsl:param name="referees.hidden.phrase">Referenzen werden gerne auf Anfrage genannt.</xsl:param>
<xsl:param name="last-modified.phrase">Letzte Aktualisierung:</xsl:param>
<xsl:param name="phone.word">Telefon</xsl:param>
<xsl:param name="fax.word">Fax</xsl:param>
<xsl:param name="phone.home.phrase"><xsl:value-of select="$phone.word"/> Privat</xsl:param>
<xsl:param name="phone.work.phrase"><xsl:value-of select="$phone.word"/> Gesch<63>ft</xsl:param>
<xsl:param name="phone.mobile.phrase"><xsl:value-of select="$phone.word"/> Mobil</xsl:param>
<xsl:param name="fax.home.phrase"><xsl:value-of select="$fax.word"/> Privat</xsl:param>
<xsl:param name="fax.work.phrase"><xsl:value-of select="$fax.word"/> Gesch<63>ft</xsl:param>
<xsl:param name="pager.word">Pager</xsl:param>
<xsl:param name="email.word">Email</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<!-- Instant messenger service names -->
<!-- (When you add or remove a service here, don't forget to update -->
<!-- ../../lib/common.xsl and element.instantMessage.xml in the user guide.) -->
<xsl:param name="im.aim.service">AIM</xsl:param>
<xsl:param name="im.icq.service">ICQ</xsl:param>
<xsl:param name="im.irc.service">IRC</xsl:param>
<xsl:param name="im.jabber.service">Jabber</xsl:param>
<xsl:param name="im.msn.service">MSN Messenger</xsl:param>
<xsl:param name="im.yahoo.service">Yahoo! Messenger</xsl:param>
<!-- default is European address formatting. For countries other -->
<!-- than France (e.g. Canada) "standard" formatting may be more correct. -->
<xsl:param name="address.format">european</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="iso-8859-15"?>
<!--
es.xsl
Parameters for Spanish resumes.
Copyright (c) 2002 Miguel Coca <mcoca@users.sourceforge.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: es.xsl,v 1.3 2002/11/18 23:05:03 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">Curriculum Vitae</xsl:param>
<xsl:param name="page.word">p&aacute;gina</xsl:param>
<xsl:param name="contact.word">Informaci<EFBFBD>n de contacto</xsl:param>
<xsl:param name="objective.word">Objetivo</xsl:param>
<xsl:param name="history.word">Experiencia</xsl:param>
<xsl:param name="academics.word">Formaci<EFBFBD>n</xsl:param>
<xsl:param name="publications.word">Publicaciones</xsl:param>
<xsl:param name="miscellany.word">Otros</xsl:param>
<xsl:param name="in.word">en</xsl:param>
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<xsl:param name="by.word">por</xsl:param>
<xsl:param name="present.word">Actualidad</xsl:param>
<xsl:param name="phone.word">Tel&eacute;fono</xsl:param>
<xsl:param name="fax.word">Fax</xsl:param>
<xsl:param name="phone.home.phrase"><xsl:value-of select="$phone.word"/></xsl:param>
<xsl:param name="phone.work.phrase"><xsl:value-of select="$phone.word"/> del Trabajo</xsl:param>
<xsl:param name="phone.mobile.phrase"><xsl:value-of select="$phone.word"/> M&oacute;vil</xsl:param>
<xsl:param name="fax.home.phrase"><xsl:value-of select="$fax.word"/></xsl:param>
<xsl:param name="fax.work.phrase"><xsl:value-of select="$fax.word"/> del Trabajo</xsl:param>
<xsl:param name="email.word">Email</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<xsl:param name="achievements.word">Logros:</xsl:param>
<xsl:param name="projects.word">Proyectos:</xsl:param>
<!-- default to European address formatting -->
<xsl:param name="address.format">european</xsl:param>
<xsl:param name="and.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="awards.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.aim.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.icq.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.irc.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.jabber.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.msn.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.yahoo.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="interests.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="last-modified.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="major-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minor.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minors.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="out-of.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="overall-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="pager.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.hidden.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="security-clearances.word">TRANSLATION NEEDED</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
fr.xsl
Parameters for French resumes.
Copyright (c) 2001-2002 Sean Kelly
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: fr.xsl,v 1.5 2002/11/18 21:04:25 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- French language notes (correct us if we're wrong:
* Not all the words are capitalized in titles, only the first one.
* It's T<>l<EFBFBD>phone priv<69>, not priv<69> T<>l<EFBFBD>phone
-->
<xsl:param name="resume.word">Curriculum Vitae</xsl:param>
<xsl:param name="page.word">page</xsl:param>
<xsl:param name="contact.word">Information de Contact</xsl:param>
<xsl:param name="objective.word">Objectif professionnel</xsl:param>
<xsl:param name="history.word">Exp&#x00e9;rience professionnelle</xsl:param>
<xsl:param name="academics.word">Formation</xsl:param>
<xsl:param name="publications.word">Publications</xsl:param>
<xsl:param name="miscellany.word">Divers</xsl:param>
<xsl:param name="in.word">en</xsl:param>
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<xsl:param name="by.word">par</xsl:param>
<xsl:param name="present.word">pr&#x00e9;sent</xsl:param>
<xsl:param name="phone.word">T&#x00e9;l&#x00e9;phone</xsl:param>
<xsl:param name="fax.word">Facsimile</xsl:param>
<xsl:param name="phone.mobile.phrase">GSM</xsl:param>
<xsl:param name="phone.home.phrase"><xsl:value-of select="$phone.word"/> priv&#x00e9;</xsl:param>
<xsl:param name="fax.home.phrase"><xsl:value-of select="$fax.word"/> priv&#x00e9;</xsl:param>
<xsl:param name="email.word">Courrier &#x00e9;lectronique</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<xsl:param name="achievements.word">R&#x00e9;alisations:</xsl:param>
<xsl:param name="projects.word">Projets:</xsl:param>
<xsl:param name="referees.word">R&#x00e9;f&#x00e9;rences</xsl:param>
<xsl:param name="awards.word">R&#x00e9;compenses</xsl:param>
<!-- default is European address formatting. For countries other -->
<!-- than France (e.g. Canada) "standard" formatting may be more correct. -->
<xsl:param name="address.format">european</xsl:param>
<xsl:param name="and.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.aim.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.icq.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.irc.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.jabber.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.msn.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.yahoo.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="interests.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="last-modified.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="major-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minor.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minors.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="out-of.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="overall-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="pager.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.hidden.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="security-clearances.word">TRANSLATION NEEDED</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
it.xsl
Parameters for Italian resumes.
Copyright (c) 2001-2002 Stewart Evans
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: it.xsl,v 1.4 2002/11/18 21:04:25 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">Curriculum Vitae</xsl:param>
<xsl:param name="page.word">page</xsl:param>
<xsl:param name="contact.word">Contatti</xsl:param>
<xsl:param name="objective.word">Obiettivo</xsl:param>
<xsl:param name="history.word">Esperienze Professionali</xsl:param>
<xsl:param name="academics.word">Istruzione</xsl:param>
<xsl:param name="publications.word">Documenti</xsl:param>
<xsl:param name="miscellany.word">Varie</xsl:param>
<xsl:param name="in.word">in</xsl:param>
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<xsl:param name="by.word">di</xsl:param>
<xsl:param name="present.word">presente</xsl:param>
<xsl:param name="phone.word">Telefono</xsl:param>
<xsl:param name="phone.home.phrase"><xsl:value-of select="$phone.word"/> in casa</xsl:param>
<xsl:param name="email.word">Email</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<xsl:param name="achievements.word">Conseguimenti</xsl:param>
<xsl:param name="projects.word">Progetti</xsl:param>
<xsl:param name="referees.word">Riferimenti</xsl:param>
<!-- default to Italian address formatting -->
<xsl:param name="address.format">italian</xsl:param>
<xsl:param name="and.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="awards.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.home.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.aim.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.icq.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.irc.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.jabber.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.msn.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.yahoo.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.hidden.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="security-clearances.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="interests.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minor.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minors.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="overall-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="major-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="out-of.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="last-modified.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.mobile.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="pager.word">TRANSLATION NEEDED</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
nl-params.xsl
Parameters for Dutch resumes courtesy of Andre van Dijk
<andre@unseen.demon.nl>
Copyright (c) 2002 Sean Kelly
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: nl.xsl,v 1.2 2002/11/18 21:04:25 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">Curriculum Vitae</xsl:param>
<xsl:param name="page.word">bladzijde</xsl:param>
<xsl:param name="contact.word">Contactinformatie</xsl:param>
<xsl:param name="objective.word">Profesionele Doelstelling</xsl:param>
<xsl:param name="history.word">Werkervaring</xsl:param>
<xsl:param name="academics.word">Studies</xsl:param>
<xsl:param name="publications.word">Publicaties</xsl:param>
<xsl:param name="miscellany.word">Overigen</xsl:param>
<xsl:param name="in.word">in</xsl:param>
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<xsl:param name="by.word">door</xsl:param>
<xsl:param name="present.word">heden</xsl:param>
<xsl:param name="phone.word">Telefoon</xsl:param>
<xsl:param name="email.word">E-mail</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<xsl:param name="achievements.word">Prestaties:</xsl:param>
<xsl:param name="projects.word">Projecten:</xsl:param>
<xsl:param name="referees.word">Referenties</xsl:param>
<!-- default is European address formatting. For countries other -->
<!-- than France (e.g. Canada) "standard" formatting may be more correct. -->
<xsl:param name="address.format">european</xsl:param>
<xsl:param name="and.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="awards.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.home.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.aim.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.icq.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.irc.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.jabber.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.msn.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.yahoo.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="interests.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="last-modified.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="major-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minor.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minors.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="out-of.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="overall-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="pager.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.home.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.mobile.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.hidden.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="security-clearances.word">TRANSLATION NEEDED</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,47 @@
#!/bin/sh
SOURCE=us.xsl
# propogate-translations.sh
# By Mark Miller, though he is not proud of it.
#
# This is a quick and VERY DIRTY way to add any new params defined
# in us.xsl (or $SOURCE) to the rest of the country.xsl stylesheets
# with a \"TRANSLATION NEEDED\" message. It also checks for outdated
# params existing in other country.xsl files but not in $SOURCE
#
# IMPORTANT: After running this script, you must manually edit each
# .xsl file and make sure that all the xsl:param tags are INSIDE the
# <xsl:stylesheet> tags. This script does NOT do that for you.
#
# WARNING: This script is by no means fool-proof, and only included
# to make life slightly easier for developers. Please manually edit
# each .xsl file after running to be sure that the script has not
# screwed anything up. "
echo "======== Checking Files for outdated params..."
for country in `ls -1 *.xsl`; do
for param in `grep '<xsl:param' $country | \
perl -p -e 's/.*name=\"(.*)\"\>.*\<\/xsl:param\>/$1/g`;
do
exists=`grep -c $param $SOURCE`
if [ "0" = $exists ]; then
echo "Param $param in file $country does not exist in $SOURCE."
fi
done
done
echo "======== Adding params in $SOURCE to other files as necessary..."
for country in `ls -1 *.xsl`; do
for param in `grep '<xsl:param' $SOURCE | \
perl -p -e 's/.*name=\"(.*)\"\>.*\<\/xsl:param\>/$1/g`;
do
translated=`grep -c $param $country`
if [ "0" = $translated ];
then
echo "Adding param $param to $country"
echo " <xsl:param name=\"$param\">TRANSLATION NEEDED</xsl:param>" >> $country
fi
done
done
echo "Done."

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
uk.xsl
Parameters for UK resumes.
Copyright (c) 2001 Sean Kelly
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: uk.xsl,v 1.2 2002/11/18 21:04:25 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- In the UK, it's a CV (curricula vita). And perhaps it's a
"Telephone", not a "Phone". -->
<xsl:param name="resume.word">CV</xsl:param>
<xsl:param name="phone.word">Telephone</xsl:param>
<xsl:param name="referees.word">Referees</xsl:param>
<xsl:param name="academics.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="achievements.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="and.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="awards.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="by.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="contact.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="copyright.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="email.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.home.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="fax.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="history.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.aim.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.icq.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.irc.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.jabber.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.msn.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="im.yahoo.service">TRANSLATION NEEDED</xsl:param>
<xsl:param name="in.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="interests.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="last-modified.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="major-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minor.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="minors.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="miscellany.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="objective.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="out-of.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="overall-gpa.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="page.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="pager.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.home.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.mobile.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="phone.work.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="present.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="projects.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="publications.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="referees.hidden.phrase">TRANSLATION NEEDED</xsl:param>
<xsl:param name="security-clearances.word">TRANSLATION NEEDED</xsl:param>
<xsl:param name="url.word">TRANSLATION NEEDED</xsl:param>
</xsl:stylesheet>

View File

@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
us.xsl
Parameters for U.S. resumes.
Copyright (c) 2001-2002 Sean Kelly
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
$Id: us.xsl,v 1.4 2002/11/04 10:36:39 brandondoyle Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="resume.word">R&#x00e9;sum&#x00e9;</xsl:param>
<xsl:param name="page.word">page</xsl:param>
<!-- Word to use for "Contact Information" -->
<xsl:param name="contact.word">Contact Information</xsl:param>
<xsl:param name="objective.word">Professional Objective</xsl:param>
<!-- Word to use for "Employment History" -->
<xsl:param name="history.word">Employment History</xsl:param>
<xsl:param name="academics.word">Education</xsl:param>
<xsl:param name="publications.word">Publications</xsl:param>
<xsl:param name="interests.word">Interests</xsl:param>
<xsl:param name="security-clearances.word">Security Clearances</xsl:param>
<xsl:param name="awards.word">Awards</xsl:param>
<xsl:param name="miscellany.word">Miscellany</xsl:param>
<!-- Word to use for "in", as in "bachelor degree *in* political science" -->
<xsl:param name="in.word">in</xsl:param>
<!-- Word to use for "and", as in "Minors in political science, English, *and*
business" -->
<xsl:param name="and.word">and</xsl:param>
<!-- Word to use for "Copyright (c)" -->
<xsl:param name="copyright.word">Copyright &#169;</xsl:param>
<!-- Word to use for "by", as in "Copyright by Joe Doom" -->
<xsl:param name="by.word">by</xsl:param>
<!-- Word to use for "present", as in "Period worked: August 1999-Present" -->
<xsl:param name="present.word">Present</xsl:param>
<xsl:param name="achievements.word">Achievements:</xsl:param>
<xsl:param name="projects.word">Projects:</xsl:param>
<!-- Word to use for "minor" (lesser area of study), singluar and plural. -->
<xsl:param name="minor.word">minor</xsl:param>
<xsl:param name="minors.word">minors</xsl:param>
<xsl:param name="referees.word">References</xsl:param>
<!-- Word to use for "Overall GPA", as in "*Overall GPA*: 3.3" -->
<xsl:param name="overall-gpa.word">Overall GPA</xsl:param>
<!-- Word to use for "GPA in Major", as in "*GPA in Major*: 3.3" -->
<xsl:param name="major-gpa.word">GPA in Major</xsl:param>
<!-- Text to use for "out of", as in "GPA: 3.71* out of *4.00" -->
<xsl:param name="out-of.word"> out of </xsl:param>
<!-- Phrase to display when referees are hidden. -->
<xsl:param name="referees.hidden.phrase">Available upon request.</xsl:param>
<xsl:param name="last-modified.phrase">Last modified</xsl:param>
<xsl:param name="phone.word">Phone</xsl:param>
<xsl:param name="fax.word">Fax</xsl:param>
<xsl:param name="phone.home.phrase">Home <xsl:value-of select="$phone.word"/></xsl:param>
<xsl:param name="phone.work.phrase">Work <xsl:value-of select="$phone.word"/></xsl:param>
<xsl:param name="phone.mobile.phrase">Mobile <xsl:value-of select="$phone.word"/></xsl:param>
<xsl:param name="fax.home.phrase">Home <xsl:value-of select="$fax.word"/></xsl:param>
<xsl:param name="fax.work.phrase">Work <xsl:value-of select="$fax.word"/></xsl:param>
<xsl:param name="pager.word">Pager</xsl:param>
<xsl:param name="email.word">Email</xsl:param>
<xsl:param name="url.word">URL</xsl:param>
<!-- Instant messenger service names -->
<!-- (When you add or remove a service here, don't forget to update
../../lib/common.xsl and element.instantMessage.xml in the user guide.)
-->
<xsl:param name="im.aim.service">AIM</xsl:param>
<xsl:param name="im.icq.service">ICQ</xsl:param>
<xsl:param name="im.irc.service">IRC</xsl:param>
<xsl:param name="im.jabber.service">Jabber</xsl:param>
<xsl:param name="im.msn.service">MSN Messenger</xsl:param>
<xsl:param name="im.yahoo.service">Yahoo! Messenger</xsl:param>
</xsl:stylesheet>