texlive[53217] Master/texmf-dist: europecv (23dec19)

commits+karl at tug.org commits+karl at tug.org
Mon Dec 23 22:35:00 CET 2019


Revision: 53217
          http://tug.org/svn/texlive?view=revision&revision=53217
Author:   karl
Date:     2019-12-23 22:34:59 +0100 (Mon, 23 Dec 2019)
Log Message:
-----------
europecv (23dec19)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/europecv/CHANGELOG.rst
    trunk/Master/texmf-dist/doc/latex/europecv/CONTRIBUTING.md
    trunk/Master/texmf-dist/doc/latex/europecv/README.md
    trunk/Master/texmf-dist/doc/latex/europecv/europecv.pdf
    trunk/Master/texmf-dist/doc/latex/europecv/europecv.tex
    trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.pdf
    trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.tex
    trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.pdf
    trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.tex
    trunk/Master/texmf-dist/tex/latex/europecv/ecvbg.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvca.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvcs.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvda.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvde.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecven.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecves.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvet.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvfi.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvfr.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvgl.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvgr.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvhu.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvis.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvit.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvlt.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvlv.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvmt.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvnl.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvno.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvpl.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvpt.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvro.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvsk.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvsl.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvsr.def
    trunk/Master/texmf-dist/tex/latex/europecv/ecvsv.def
    trunk/Master/texmf-dist/tex/latex/europecv/europecv.cls

Modified: trunk/Master/texmf-dist/doc/latex/europecv/CHANGELOG.rst
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/CHANGELOG.rst	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/CHANGELOG.rst	2019-12-23 21:34:59 UTC (rev 53217)
@@ -2,6 +2,11 @@
 Changelog for package europecv
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
+2019.12.23
+----------
+* Integrated the nobranding features
+* Contributors: Marc-Andre Hermanns
+
 2019.03.19
 ----------
 * Now you can integrate your YouTube channel into your CV

Modified: trunk/Master/texmf-dist/doc/latex/europecv/CONTRIBUTING.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/CONTRIBUTING.md	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/CONTRIBUTING.md	2019-12-23 21:34:59 UTC (rev 53217)
@@ -47,4 +47,66 @@
 
 In your code:
  - Make sure the coding style of your code follows the style of the file.
+ 
+## Workflow
 
+### Stable branch: `master`
+
+The `master` branch is stable and **should not receive new features**. Only **bug fixes** are accepted.
+
+This is the typical workflow to fix a bug in the master branch.
+
+* Identify a bug that does not require breaking changes of the API/ABI.
+* Open an issue on github.
+* Add some label (FIXME which label?).
+* Assign the issue to yourself.
+* Create a new branch starting from the `master` branch:
+
+```
+git fetch origin
+git checkout -b <branch_name> origin/master
+```
+
+* Fix the bug and make one or more commits.
+* [Push the branch on your fork and create a pull request](https://help.github.com/categories/collaborating-on-projects-using-pull-requests/).
+* Wait for someone else to review your fix and merge your pull request.
+* Your fix is now in the `master` branch, now you need to port it to the `devel`
+  branch.
+* Ensure that your branches are in sync with `origin`:
+
+```
+git checkout master
+git pull --rebase origin master
+git checkout devel
+git pull --rebase origin devel
+```
+
+  * Merge master into devel and eventually fix the conflicts.
+
+```
+git merge master
+```
+
+##### Work in progress PR
+As final note, in case you need to start a PR but you deem it still **work-in-progress** and don't want anyone to merge it by mistake, do the following:
+- Put `[WIP]` at the beginning of the PR title.
+- Mark the PR with the label `"Status: In Progress"`.
+
+Once you're happy about your work, just remove the `[WIP]` tag as well as the label, and drop a message within the PR to notify the community that reviews are welcome and merging is now possible.
+
+### Development branch: `dev`
+
+
+We use the branch `dev` to collect the ongoing work, which is given in terms of **new features** and **bug fixes**.
+
+When we introduce a new feature that will cause downstream projects to be aware of such update, we do increase the tweak number (always sticking to _odd numbers_).
+
+When we decide to publish these new features in a new software release (roughly each _3 months_), we merge the new modifications into `master`, doing:
+
+```sh
+git checkout master
+git merge --no-ff devel
+git push origin master
+```
+
+

Modified: trunk/Master/texmf-dist/doc/latex/europecv/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/README.md	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/README.md	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,4 +1,4 @@
-[![All Contributors](https://img.shields.io/badge/all_contributors-19-orange.svg?style=flat-square)](#contributors)
+[![All Contributors](https://img.shields.io/badge/all_contributors-20-orange.svg?style=flat-square)](#contributors)
 [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
 [![first-timers-only](https://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat-square)](https://www.firsttimersonly.com/)
 

Modified: trunk/Master/texmf-dist/doc/latex/europecv/europecv.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/europecv/europecv.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/europecv.tex	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/europecv.tex	2019-12-23 21:34:59 UTC (rev 53217)
@@ -51,7 +51,7 @@
     Department of Engineering\\
     University of Sannio in Benevento, Italy\\
 }
-\date{March 19, 2019}
+\date{December 23, 2019}
 
 
 \begin{document}
@@ -67,7 +67,11 @@
 	
 As of 11 March 2002 the European Commission has defined a common format for curricula vit\ae. This class is an unofficial \LaTeX\ implementation of that format. Although primarily intended for users in the European Union, the class can be used for any kind of curriculum vit\ae.
 
-To simplify the package distribution and its improvements, a GitHub repository has been opened. Such repository is available at the link \url{https://github.com/gsilano/EuropeCV}. Please, feel free to open an issue if you find mistakes or errors. At the same time, if you want you can collaborate as a developer: your name will be added to the list of contributors.
+To simplify the package distribution and its improvements, a GitHub repository has been opened. 
+Such repository is available at the link \url{https://github.com/gsilano/EuropeCV}. Please, feel 
+free to open an issue if you find mistakes or errors. At the same time, you can collaborate as a 
+developer making the LaTeX packages even better. In this case, your name will be added to the 
+contributors list (at the end of the manual).
 	
 \end{abstract}
 
@@ -80,7 +84,12 @@
 
 The Europass~CV defines both the content and the layout of a curriculum vit\ae. The \textsf{europecv} class provides support for the latter, and for the former as far as personal information and spoken languages are concerned. If you want to know how the content of a Europass~CV must be structured you must read the documentation provided by the Europass website.\footnote{\url{http://europass.cedefop.eu.int/htm/index.htm}.}
 
-This class tries to be as close as possible to the standard model without sacrificing flexibility. Although it is primarily intended for users of the European Union, the class can be used for any kind of curriculum vit\ae\ (possibly with the options \texttt{notitle} and \texttt{nologo}, see below), or even for other kinds of documents: for example, this documentation file has been typeset using the \textsf{europecv} class. The source files are included in the package.
+This class tries to be as close as possible to the standard model without sacrificing flexibility. 
+Although it is primarily intended for users of the European Union, the class can be used for any 
+kind of curriculum vit\ae\ (possibly with the options \texttt{notitle}, \texttt{nobranding} and 
+\texttt{nologo}, see below), or even for other kinds of documents: for example, this documentation 
+file has been typeset using the \textsf{europecv} class. The source files are included in the 
+package.
 \medskip
 
 A minimal (empty) curriculum vit\ae, quite similar to the official one, can be obtained with the following code:
@@ -115,7 +124,8 @@
 
 The following options can be used with the \texttt{\textbackslash documentclass} command, e.g.
 \begin{quote}
-	\texttt{\textbackslash documentclass[latin1,helvetica,narrow,italian,logo,notitle,totpages]\{europecv\}}
+	\texttt{\textbackslash 
+	documentclass[latin1,helvetica,narrow,italian,logo,notitle,nobranding,totpages]\{europecv\}}
 \end{quote}
 \renewcommand*{\ecvtitle}{}
 \renewcommand*{\draweuropasslogo}{}
@@ -190,8 +200,12 @@
 	\ecvitem{Notes}{The \textsf{graphicx} package must be included in your document for the Europass logo to be drawn.}
 	
 	\section{Title option}
-	\ecvitem[15pt]{\texttt{notitle}}{Omits the title (``Europass Curriculum Vit\ae'') at the beginning of the curriculum vit\ae.}
-	\ecvitem{Notes}{Users outside the European Community who might want to use the \textsf{europecv} class may specify \texttt{notitle} and \texttt{nologo} among the class options.}
+	\ecvitem[15pt]{\texttt{notitle}}{Omits the title (``Europass Curriculum Vit\ae'') at the 
+	beginning of the curriculum vit\ae.}
+	\ecvitem[15pt]{\texttt{nobranding}}{Turns off the ``Europass'' branding text.}
+	\ecvitem{Notes}{Users outside the European Community who might want to use the 
+	\textsf{europecv} class may specify \texttt{notitle}, \texttt{nobranding} and \texttt{nologo} 
+	among the class options.}
 	
 	\section{Page numbering}
 	\ecvitem[15pt]{\texttt{totpages}}{Prints the total number of pages on each page.}
@@ -251,7 +265,7 @@
 For example, consider the following document:
 \begin{quote}
 	\begin{verbatim}
-	\documentclass[helvetica,notitle,nologo]{europecv}
+	\documentclass[helvetica,notitle,nobranding,nologo]{europecv}
 	\usepackage{graphicx}
 	
 	% Define personal data
@@ -313,7 +327,7 @@
 If you do not want to use so much space, you may add some negative space with \ecv{space} in order to raise the personal information block. In this case, the picture should be put at the rightmost position. The following is an example that shows how to put your personal picture on the side of the personal information block:
 \begin{quote}
 	\begin{verbatim}
-	\documentclass[helvetica,notitle,nologo]{europecv}
+	\documentclass[helvetica,notitle,nobranding,nologo]{europecv}
 	\usepackage{graphicx}
 	
 	\ecvname{Alan Touring}
@@ -688,7 +702,8 @@
 \textbf{J\"urgen Spitzm\"uller} and \textbf{lgelmi} for fixing the bugs into the 2018.07.22 and 
 2018.09.02 package releases, respectively. Thanks to \textbf{redlulz} and \textbf{Emil 
 Gardstr\"{o}m} for fixing the German (2018.10.12) and Swedish (2019.01.25) translation, 
-respectively. Thanks to \textbf{JPSPLeite} for improving the Portuguese translation.
+respectively. Thanks to \textbf{JPSPLeite} for improving the Portuguese translation. Thanks to 
+\textbf{Marc-Andre Hermanns} for adding the \texttt{nobranding} feature.
 
 \vspace{0.5cm}
 \textbf{\large{8\hspace{0.5cm}Disclaimer}}

Modified: trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.tex	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_academic_en.tex	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,4 +1,4 @@
-\documentclass[totpages,helvetica,openbib,english,nologo,notitle,totpages]{europecv}
+\documentclass[totpages,helvetica,openbib,english,nologo,nobranding,notitle,totpages]{europecv}
 \usepackage[T1]{fontenc}
 \usepackage{graphicx} 
 \usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}
@@ -105,7 +105,7 @@
 \pdfbookmark{Research areas}{Research areas}
 \section{Research areas}
 
-\ecvitem{}{Autonomous systems; distributed control and optimization over networks; nonsmooth systems; picewise quadratic stability.}
+\ecvitem{}{Autonomous systems; distributed control and optimization over networks; nonsmooth systems; piecewise quadratic stability.}
 
 \pdfbookmark{Personal skills and~competences}{Personal skills and~competences}
 \section{Personal skills and~competences}
@@ -188,7 +188,7 @@
 \section{Research activities}
 
 \ecvitem{}{\textbf{Stability of piecewise-linear systems}}
-\ecvitem{}{Something related to the picewise-linear systems \refconferencesPublications[FirstPubLabel], \refconferencesPublications[SecondPubLabel] ad \refconferencesPublications[ThirdPubLabel].}
+\ecvitem{}{Something related to the piecewise-linear systems \refconferencesPublications[FirstPubLabel], \refconferencesPublications[SecondPubLabel] ad \refconferencesPublications[ThirdPubLabel].}
 
 \pdfbookmark{Publications}{Publications}
 \section{Publications}

Modified: trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.tex	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/doc/latex/europecv/templates/cv_template_en.tex	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,4 +1,4 @@
-\documentclass[totpages,helvetica,openbib,english,nologo,notitle,totpages]{europecv}
+\documentclass[totpages,helvetica,openbib,english,nologo,nobranding,notitle,totpages]{europecv}
 \usepackage[T1]{fontenc}
 \usepackage{graphicx} 
 \usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvbg.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvbg.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvbg.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvbg.def}[europecv Bulgarian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Лична информация}}
@@ -39,6 +39,7 @@
 \def\ecv at cefindepkey{\ecv at utf{Ниво на владеене - самостоятелно}}
 \def\ecv at cefprofkey{\ecv at utf{Ниво на владеене - свободно}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{а\ecv at kern в\ecv at kern т\ecv at kern о\ecv at kern б\ecv at kern и\ecv at kern о\ecv at kern г\ecv at kern р\ecv at kern а\ecv at kern ф\ecv at kern и\ecv at kern я}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvca.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvca.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvca.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvca.def}[europecv Catalan definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informaci\'o personal}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvcs.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvcs.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvcs.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvcs.def}[europecv Czech definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Osobn{\'\i} {\'u}daje}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Samostatn{\'y} u{\v z}ivatel}}
 \def\ecv at cefprofkey{\ecv at utf{Zku{\v s}en{\'y} u{\v z}ivatel}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{{\v z}\ecv at kern i\ecv at kern v\ecv at kern o\ecv at kern
 t\ecv at kern o\ecv at kern p\ecv at kern i\ecv at kern s}}}
 

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvda.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvda.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvda.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvda.def}[europecv Danish definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Personlige oplysninger}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Selvst\ae ndig sprogbruger}}
 \def\ecv at cefprofkey{\ecv at utf{Kompetent sprogbruger}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern \ae\ecv at kern i\ecv at kern s\ecv at kern k}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{c\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern
 i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern
 i\ecv at kern t\ecv at kern a\ecv at kern e}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvde.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvde.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvde.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvde.def}[europecv German definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Angaben zur Person}}
@@ -39,7 +39,8 @@
 \def\ecv at cefindepkey{\ecv at utf{Selbst\"andige Sprachverwendung}}
 \def\ecv at cefprofkey{\ecv at utf{Kompetente Sprachverwendung}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{L\ecv at kern e\ecv at kern b\ecv at kern e\ecv at kern
 n\ecv at kern s\ecv at kern l\ecv at kern a\ecv at kern u\ecv at kern f\ecv at kern}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecven.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecven.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecven.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecven.def}[europecv English definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Personal information}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Independent user}}
 \def\ecv at cefprofkey{\ecv at utf{Proficient user}}
 
-\providecommand*{\ecvtitle}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\providecommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\providecommand*{\ecvtitle}{\ecvbranding\ecv at utf{
 \Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern
 i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern V\ecv at kern
-i\ecv at kern t\ecv at kern a\ecv at kern e}}}
\ No newline at end of file
+i\ecv at kern t\ecv at kern a\ecv at kern e}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecves.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecves.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecves.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecves.def}[europecv Spanish definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informaci\'on personal}}
@@ -39,7 +39,7 @@
 \def\ecv at cefindepkey{\ecv at utf{Usuario independiente}}
 \def\ecv at cefprofkey{\ecv at utf{Usuario competente}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e}\\[5pt]
-\Large\textbf{E\ecv at kern u\ecv at kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
 r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}}}
+\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e}}\ecvbranding}
 

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvet.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvet.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvet.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvet.def}[europecv Estonian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Isikuandmed}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Iseseisev  keelekasutus}}
 \def\ecv at cefprofkey{\ecv at utf{Vaba keelekasutus}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s\ecv at kern i}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{c\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern
 i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern
 i\ecv at kern t\ecv at kern a\ecv at kern e}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvfi.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvfi.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvfi.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvfi.def}[europecv Finnish definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Henkil\"otiedot}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Itsen\"aisen kielenk\"aytt\"aj\"an kielitaito}}
 \def\ecv at cefprofkey{\ecv at utf{Taitavan kielenk\"aytt\"aj\"an kielitaito}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s\ecv at kern}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{a\ecv at kern n\ecv at kern s\ecv at kern i\ecv at kern
 o\ecv at kern l\ecv at kern u\ecv at kern e\ecv at kern t\ecv at kern t\ecv at kern
 e\ecv at kern l\ecv at kern o\ecv at kern m\ecv at kern a\ecv at kern l\ecv at kern

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvfr.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvfr.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvfr.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvfr.def}[europecv French definitions]
 % Informations personnelles
 \def\ecv at infosectionkey{\ecv at utf{Informations personnelles}}
@@ -39,6 +39,7 @@
 \def\ecv at cefindepkey{\ecv at utf{Utilisateur Ind\'ependant}}
 \def\ecv at cefprofkey{\ecv at utf{Utilisateur exp\'eriment\'e}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e}\\[5pt]
-\Large\textbf{E\ecv at kern u\ecv at kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
 r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}}}
+\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e
+}}\ecvbranding}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvgl.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvgl.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvgl.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvgl.def}[europecv Galician definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informaci\'on persoal}}
@@ -39,7 +39,8 @@
 \def\ecv at cefindepkey{\ecv at utf{Usuario \mbox{independente}}}
 \def\ecv at cefprofkey{\ecv at utf{Usuario \mbox{competente}}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e}\\[5pt]
-\Large\textbf{E\ecv at kern u\ecv at kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
 r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}}}
+\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern v\ecv at kern i\ecv at kern t\ecv at kern a\ecv at kern e
+\ecvbranding}}}
 

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvgr.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvgr.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvgr.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -3,7 +3,7 @@
 % WARNING: Requires the babel package loaded with options
 % [english,greek] (at least) for \foreignlanguage
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvgr.def}[europecv Greek definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{\foreignlanguage{greek}{Προσωπικές πληροφορίες}}}
@@ -42,5 +42,6 @@
 \def\ecv at cefindepkey{\ecv at utf{\foreignlanguage{greek}{Ανεξάρτητος χρήστης}}}
 \def\ecv at cefprofkey{\ecv at utf{\foreignlanguage{greek}{Αυτάρκης χρήστης}}}
 
+\renewcommand*\ecvbranding{\ecv at utf{\Large\textbf{\foreignlanguage{english}{Europass}}}}
 \renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{\foreignlanguage{greek}{Β\ecv at kern ι\ecv at kern ο\ecv at kern γ\ecv at kern ρ\ecv at kern α\ecv at kern φ\ecv at kern ι\ecv at kern κ\ecv at kern ό}}\\[5pt]
-\Large\textbf{\foreignlanguage{greek}{σ\ecv at kern η\ecv at kern μ\ecv at kern ε\ecv at kern ί\ecv at kern ω\ecv at kern μ\ecv at kern α} \foreignlanguage{english}{Europass}}}}
+\Large\textbf{\foreignlanguage{greek}{σ\ecv at kern η\ecv at kern μ\ecv at kern ε\ecv at kern ί\ecv at kern ω\ecv at kern μ\ecv at kern α}}}\ecvbranding}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvhu.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvhu.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvhu.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvhu.def}[europecv Hungarian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Szem\'elyi adatok}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{\"on\'all\'o nyelvhaszn\'al\'o}}
 \def\ecv at cefprofkey{\ecv at utf{mesterfok\'u nyelvhaszn\'al\'o}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{\"O\ecv at kern n\ecv at kern \'e\ecv at kern l\ecv at kern
 e\ecv at kern t\ecv at kern r\ecv at kern a\ecv at kern j\ecv at kern z}}}
 

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvis.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvis.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvis.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvis.def}[europecv Icelandic definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Pers{\'o}nulegar uppl{\'y}singar}}
@@ -39,7 +39,8 @@
 \def\ecv at cefindepkey{\ecv at utf{Lengra komin(n)}}
 \def\ecv at cefprofkey{\ecv at utf{Leikinn m{\'a}lnotandi}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{\ae\ecv at kern v\ecv at kern i\ecv at kern \'a\ecv at kern
 g\ecv at kern r\ecv at kern i\ecv at kern p}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvit.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvit.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvit.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvit.def}[europecv Italian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informazioni personali}}
@@ -41,8 +41,9 @@
 
 
 
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}}}
 \renewcommand*{\ecvtitle}{\ecv at utf{%
 \Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern
 i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern V\ecv at kern
-i\ecv at kern t\ecv at kern a\ecv at kern e}\\[5pt]
-\Large\textbf{E\ecv at kern u\ecv at kern r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}}}
+i\ecv at kern t\ecv at kern a\ecv at kern e}}\ecvbranding}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvlt.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvlt.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvlt.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvlt.def}[europecv Lithuanian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Asmenin{\.e} informacija}}
@@ -39,8 +39,9 @@
 \def\ecv at cefindepkey{\ecv at utf{Pa{\v z}eng{\k e}s vartotojas}}
 \def\ecv at cefprofkey{\ecv at utf{{\k I}gud{\k e}s vartotojas}}
 
-\renewcommand*\ecvtitle{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
-r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv at utf{\Large\textbf{E\ecv at kern u\ecv at kern
+r\ecv at kern o\ecv at kern p\ecv at kern a\ecv at kern s\ecv at kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv at utf{
 \Large\textbf{G\ecv at kern y\ecv at kern v\ecv at kern e\ecv at kern
 n\ecv at kern i\ecv at kern m\ecv at kern o \ecv at kern \ecv at kern a\ecv at kern p\ecv at kern
 r\ecv at kern a\ecv at kern {\v s}\ecv at kern y\ecv at kern m\ecv at kern a\ecv at kern s}}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvlv.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvlv.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvlv.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvlv.def}[europecv Latvian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Personas dati}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvmt.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvmt.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvmt.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvmt-utf8.def}[europecv Maltese definitions]
 \inputencoding{utf8x}
 % Personal information

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvnl.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvnl.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvnl.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvnl.def}[europecv Dutch definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Persoonsgegevens}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvno.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvno.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvno.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2018/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvno.def}[europecv Norwegian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Personlige opplysninger}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvpl.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvpl.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvpl.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvpl.def}[europecv Polish definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Dane osobowe}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvpt.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvpt.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvpt.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvpt.def}[europecv Portuguese definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informa\c{c}\~ao pessoal}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvro.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvro.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvro.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvro.def}[europecv Romanian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Informa{\c t}ii personale}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvsk.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvsk.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvsk.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvsk.def}[europecv Slovak definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Osobn{\'e} {\'u}daje}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvsl.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvsl.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvsl.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvsl.def}[europecv Slovenian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Osebni podatki}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvsr.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvsr.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvsr.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
 \ProvidesFile{ecvsr.def}[europecv Serbian definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Li{\v c}ni podaci}}
@@ -39,7 +39,7 @@
 \def\ecv at cefindepkey{\ecv at utf{Samostalni korisnik}}
 \def\ecv at cefprofkey{\ecv at utf{Osposobljeni korisnik}}
 
-\providecommand*{\ecvtitle}{\ecv at utf{\Large\textbf{E\ecv at kern v\ecv at kern
+\renewcommand*{\ecvtitle}{\ecv at utf{\Large\textbf{E\ecv at kern v\ecv at kern
 r\ecv at kern o\ecv at kern p\ecv at kern s\ecv at kern k\ecv at kern i}\\[5pt]
 \Large\textbf{C\ecv at kern u\ecv at kern r\ecv at kern r\ecv at kern
 i\ecv at kern c\ecv at kern u\ecv at kern l\ecv at kern u\ecv at kern m \ecv at kern

Modified: trunk/Master/texmf-dist/tex/latex/europecv/ecvsv.def
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/ecvsv.def	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/ecvsv.def	2019-12-23 21:34:59 UTC (rev 53217)
@@ -1,6 +1,6 @@
 %!TEX encoding = UTF-8 Unicode
 %
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
 \ProvidesFile{ecvsv.def}[europecv Swedish definitions]
 % Personal information
 \def\ecv at infosectionkey{\ecv at utf{Personuppgifter}}

Modified: trunk/Master/texmf-dist/tex/latex/europecv/europecv.cls
===================================================================
--- trunk/Master/texmf-dist/tex/latex/europecv/europecv.cls	2019-12-23 20:32:38 UTC (rev 53216)
+++ trunk/Master/texmf-dist/tex/latex/europecv/europecv.cls	2019-12-23 21:34:59 UTC (rev 53217)
@@ -6,7 +6,7 @@
 % See  https://ctan.mirror.garr.it/mirrors/CTAN/help/Catalogue/licenses.lppl.html
 % for the details of that license
 \NeedsTeXFormat{LaTeX2e}
-\ProvidesClass{europecv}[2019/03/19 (Unicode TeX detection) European curriculum vitae class]
+\ProvidesClass{europecv}[12/23/2019 (Unicode TeX detection) European curriculum vitae class]
 
 % CV models and instructions:
 %   http://europass.cedefop.eu.int/htm/index.htm
@@ -248,6 +248,13 @@
   \AtEndOfPackage{\renewcommand*\ecvtitle{}}%
 }
 
+% The nobranding function was created by Marc-Andre Hermanns 
+
+% No branding (i.e., "Europass" logotype)
+\DeclareOption{nobranding}{%
+  \AtEndOfPackage{\renewcommand*\ecvbranding{}}%
+}
+
 % Europass logo
 \DeclareOption{logo}{%
 \providecommand*\draweuropasslogo{%



More information about the tex-live-commits mailing list