summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/biblatex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-11-30 23:38:12 +0000
committerKarl Berry <karl@freefriends.org>2012-11-30 23:38:12 +0000
commitfc70142f1e5e5eed2679e2b020b1d0ad711c7b96 (patch)
treea680d75a64fe634189272c2fb5d00332ff5c8210 /Master/texmf-dist/tex/latex/biblatex
parent527b9f18549ea63f103d64d47eb40d7b086a5e59 (diff)
biblatex 2.4 (27nov12)
git-svn-id: svn://tug.org/texlive/trunk@28404 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/biblatex')
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/biblatex.def37
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/biblatex.sty8
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/biblatex1.sty63
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/biblatex2.sty144
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/blx-dm.def7
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/lbx/catalan.lbx255
-rw-r--r--Master/texmf-dist/tex/latex/biblatex/lbx/czech.lbx404
7 files changed, 730 insertions, 188 deletions
diff --git a/Master/texmf-dist/tex/latex/biblatex/biblatex.def b/Master/texmf-dist/tex/latex/biblatex/biblatex.def
index 055f73791cd..f408c11c066 100644
--- a/Master/texmf-dist/tex/latex/biblatex/biblatex.def
+++ b/Master/texmf-dist/tex/latex/biblatex/biblatex.def
@@ -165,7 +165,8 @@
% Some length registers which may be used to fine-tune the
% (high-level) layout of the bibliography.
-\setlength{\bibhang}{\parindent}
+% Default \bibhang to 1em if \parindent is 0 for some reason
+\setlength{\bibhang}{\ifnumequal{\parindent}{0}{1em}{\parindent}}
\setlength{\biblabelsep}{2\labelsep}
\setlength{\bibitemsep}{\itemsep}
\setlength{\bibnamesep}{0pt}
@@ -952,7 +953,7 @@
% Driver sourcemaps
% ------------------------------------------------------------------
-\DeclareDefaultSourcemap[datatype=bibtex]{
+\DeclareDriverSourcemap[datatype=bibtex]{
\map{
\step[typesource=conference, typetarget=inproceedings]
\step[typesource=electronic, typetarget=online]
@@ -982,7 +983,7 @@
}
}
-\DeclareDefaultSourcemap[datatype=endnotexml]{
+\DeclareDriverSourcemap[datatype=endnotexml]{
\map{
\step[typesource={Aggregated Database}, typetarget=misc]
\step[typesource={Ancient Text}, typetarget=misc]
@@ -1105,7 +1106,7 @@
\step[fieldsource={titles/tertiary-title}, fieldtarget={titles/series}]
}
}
-\DeclareDefaultSourcemap[datatype=ris]{
+\DeclareDriverSourcemap[datatype=ris]{
\map{
\step[typesource=ART, typetarget=artwork]
\step[typesource=BILL, typetarget=jurisdiction]
@@ -1164,7 +1165,7 @@
\step[fieldsource=L1, fieldtarget=file]
}
}
-\DeclareDefaultSourcemap[datatype=zoterordfxml]{
+\DeclareDriverSourcemap[datatype=zoterordfxml]{
\map{
\step[typesource=conferencePaper, typetarget=inproceedings]
\step[typesource=bookSection, typetarget=inbook]
@@ -1270,21 +1271,24 @@
% ------------------------------------------------------------------
\DeclareLabelname{%
- shortauthor,
- author,
- shorteditor,
- editor,
- translator}
+ \field{shortauthor}
+ \field{author}
+ \field{shorteditor}
+ \field{editor}
+ \field{translator}
+}
\DeclareLabelyear{%
- year,
- eventyear,
- origyear,
- urlyear}
+ \field{year}
+ \field{eventyear}
+ \field{origyear}
+ \field{urlyear}
+}
\DeclareLabeltitle{%
- shorttitle,
- title}
+ \field{shorttitle}
+ \field{title}
+}
% ------------------------------------------------------------------
% LABELALPHA TEMPLATE
@@ -1622,6 +1626,7 @@
\noinherit{options}
\noinherit{presort}
\noinherit{related}
+ \noinherit{relatedoptions}
\noinherit{relatedstring}
\noinherit{relatedtype}
\noinherit{shorthand}
diff --git a/Master/texmf-dist/tex/latex/biblatex/biblatex.sty b/Master/texmf-dist/tex/latex/biblatex/biblatex.sty
index fe3d920786c..981eea02a56 100644
--- a/Master/texmf-dist/tex/latex/biblatex/biblatex.sty
+++ b/Master/texmf-dist/tex/latex/biblatex/biblatex.sty
@@ -3,8 +3,8 @@
%%
% Set up the version strings here, so they are the same for both branches
-\def\abx@date{2012/10/29}
-\def\abx@version{2.3}
+\def\abx@date{2012/11/27}
+\def\abx@version{2.4}
\def\abx@bbxid{\abx@date\space v\abx@version\space biblatex bibliography style (PK/JW/AB)}
\def\abx@cbxid{\abx@date\space v\abx@version\space biblatex citation style (PK/JW/AB)}
\def\abx@lbxid{\abx@date\space v\abx@version\space biblatex localization (PK/JW/AB)}
@@ -12,7 +12,7 @@
% This is not updated by build script as the controlfile version
% does not necessarily change with the package version.
% This is used when writing the .bcf
-\def\blx@bcfversion{2.1}
+\def\blx@bcfversion{2.2}
% This is not updated by build script as the bbl version
% does not necessarily change with the package version.
% This is used when checking the .bbl
@@ -77,7 +77,7 @@
\fi
{%
% A few things not defined by v1 so has to be handled if using v1
- \protected\long\def\DeclareDefaultSourcemap[#1]#2{}%
+ \protected\long\def\DeclareDriverSourcemap[#1]#2{}%
\protected\long\def\DeclareLabelalphaTemplate#1{}%
\protected\long\def\DeclareLabeltitle#1{}%
\protected\long\def\abx@dointernalfields{}%
diff --git a/Master/texmf-dist/tex/latex/biblatex/biblatex1.sty b/Master/texmf-dist/tex/latex/biblatex/biblatex1.sty
index ef59ba0505b..fc4a1ba33ec 100644
--- a/Master/texmf-dist/tex/latex/biblatex/biblatex1.sty
+++ b/Master/texmf-dist/tex/latex/biblatex/biblatex1.sty
@@ -3146,8 +3146,7 @@
\blx@initunit}
\protected\def\blx@finentry@usedrv{%
- \unspace\blx@initunit
-}
+ \blx@setunit\relax}
\protected\def\blx@finentry@inset{%
\blx@setunit\entrysetpunct
@@ -4396,6 +4395,7 @@
\do{december}%
\do{langamerican}%
\do{langbrazilian}%
+ \do{langcatalan}%
\do{langcroatian}%
\do{langdanish}%
\do{langdutch}%
@@ -4413,6 +4413,7 @@
\do{langswedish}%
\do{fromamerican}%
\do{frombrazilian}%
+ \do{fromcatalan}%
\do{fromcroatian}%
\do{fromdanish}%
\do{fromdutch}%
@@ -9358,31 +9359,49 @@
% [<type,type,...>]{<field,field,...>}
\newrobustcmd*{\DeclareLabelname}[2][]{%
- \blx@defmvalue{labelnamespec}{#1}{#2}}
+ \begingroup
+ \let\blx@tempa\@empty
+ \def\blx@tempb{labelnamespec}%
+ \let\field\blx@ordered@field
+ \ifblank{#1}
+ {\global\cslet{blx@bcf@labelnamespec}\@empty}
+ {\def\blx@tempa{#1}%
+ \do{\global\cslet{blx@bcf@labelnamespec@##1}\@empty}%
+ \docsvlist{#1}}%
+ #2%
+ \endgroup}
\@onlypreamble\DeclareLabelname
\newrobustcmd*{\DeclareLabelyear}[2][]{%
- \blx@defmvalue{labelyearspec}{#1}{#2}}
-\@onlypreamble\Declarelabelyear
-
-\def\blx@defmvalue#1#2#3{%
- \ifblank{#2}
- {\expandafter\blx@defmvalue@ii\csname blx@bcf@#1\endcsname{#3}}
- {\forcsvlist{\blx@defmvalue@i{#1}{#3}}{#2}}}
-
-\def\blx@defmvalue@i#1#2#3{%
- \blx@addtypeopt{#3}%
- \expandafter\blx@defmvalue@ii\csname blx@bcf@#1@#3\endcsname{#2}}
-
-\def\blx@defmvalue@ii#1#2{%
\begingroup
- \global\let#1\@empty
- \blx@tempcnta\z@
- \def\do##1{%
- \advance\blx@tempcnta\@ne
- \xappto#1{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{##1}}}%
- \docsvlist{#2}%
+ \let\blx@tempa\@empty
+ \def\blx@tempb{labelyearspec}%
+ \let\field\blx@ordered@field
+ \ifblank{#1}
+ {\global\cslet{blx@bcf@labelyearspec}\@empty}
+ {\def\blx@tempa{#1}%
+ \do{\global\cslet{blx@bcf@labelyearspec@##1}\@empty}%
+ \docsvlist{#1}}%
+ #2%
\endgroup}
+\@onlypreamble\DeclareLabelyear
+
+\newcommand*{\blx@ordered@field}[2][]{%
+ \let\blx@tempc\@empty
+ \ifblank{#1}
+ {}
+ {\setkeys{blx@ordered@field}{#1}}%
+ \advance\blx@tempcnta\@ne
+ \ifdefempty{\blx@tempa}
+ {\csxappto{blx@bcf@\blx@tempb}{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{\blx@tempc}{#2}}}
+ {\def\do{\blx@addtypeopt{##1}%
+ \csxappto{blx@bcf@\blx@tempb @##1}{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{\blx@tempc}{#2}}}%
+ \docsvlist{\blx@tempa}}}
+
+\define@key{blx@ordered@field}{form}{%
+ \appto\blx@tempc{ form="#1"}}
+\define@key{blx@ordered@field}{lang}{%
+ \appto\blx@tempc{ lang="#1"}}
% experimental
diff --git a/Master/texmf-dist/tex/latex/biblatex/biblatex2.sty b/Master/texmf-dist/tex/latex/biblatex/biblatex2.sty
index 841261f358a..378a7caf98f 100644
--- a/Master/texmf-dist/tex/latex/biblatex/biblatex2.sty
+++ b/Master/texmf-dist/tex/latex/biblatex/biblatex2.sty
@@ -20,6 +20,7 @@
\RequirePackage{logreq}
\RequirePackage{ifthen}
\RequirePackage{url}
+%\RequirePackage{trace}
\@ifpackagelater{etoolbox}{2010/11/29}
{}
@@ -2967,8 +2968,7 @@
\blx@initunit}
\protected\def\blx@finentry@usedrv{%
- \unspace\blx@initunit
-}
+ \blx@setunit\relax}
\protected\def\blx@finentry@inset{%
\blx@setunit\entrysetpunct
@@ -4214,6 +4214,7 @@
\do{december}%
\do{langamerican}%
\do{langbrazilian}%
+ \do{langcatalan}%
\do{langcroatian}%
\do{langdanish}%
\do{langdutch}%
@@ -4231,6 +4232,7 @@
\do{langswedish}%
\do{fromamerican}%
\do{frombrazilian}%
+ \do{fromcatalan}%
\do{fromcroatian}%
\do{fromdanish}%
\do{fromdutch}%
@@ -5045,7 +5047,7 @@
{\expandonce\NewValue}}}}
-% {<name>}{<itemcount>}{<value>}
+% {<name>}{<itemcount>}{<nameoptions>}{<value>}
\protected\def\blx@bbl@namedef#1#2#3#4{%
\def\NewCount{#2}%
@@ -8613,8 +8615,9 @@
~~~~<bcf:option type="#1">\blx@nl
#2%
~~~~</bcf:option>\blx@nl}
-\xdef\blx@xml@ordered#1#2{%
- ~~~~~~<bcf:value order="#1">#2</bcf:value>\blx@nl}
+\xdef\blx@xml@ordered#1#2#3{%
+ ~~~~~~<bcf:value order="#1"#2%
+ >#3</bcf:value>\blx@nl}
\xdef\blx@xml@sourcemap#1{%
~~<bcf:sourcemap>\blx@nl
@@ -8852,6 +8855,7 @@
\blx@xml@comment{SOURCEMAP}%
\blx@xml@sourcemap{%
\ifcsdef{blx@biber@sourcemap@user}{\csuse{blx@biber@sourcemap@user}}{}%
+ \ifcsdef{blx@biber@sourcemap@user}{\csuse{blx@biber@sourcemap@style}}{}%
\ifcsdef{blx@biber@sourcemap@defaults@bibtex}{\csuse{blx@biber@sourcemap@defaults@bibtex}}{}%
\ifcsdef{blx@biber@sourcemap@defaults@biblatexml}{\csuse{blx@biber@sourcemap@defaults@biblatexml}}{}%
\ifcsdef{blx@biber@sourcemap@defaults@endnotexml}{\csuse{blx@biber@sourcemap@defaults@endnotexml}}{}%
@@ -8977,14 +8981,25 @@
\newrobustcmd*{\DeclareSourcemap}[1]{%
\booltrue{sourcemap}%
\begingroup
- \let\maps\blx@sourcemap@maps
+ \let\maps\blx@usersourcemap@maps
\let\blx@tempa\@empty
#1%
\csxdef{blx@biber@sourcemap@user}{\blx@tempa}%
\endgroup}
\@onlypreamble\DeclareSourcemap
-\newrobustcmd*{\DeclareDefaultSourcemap}[2][]{%
+\newrobustcmd*{\DeclareStyleSourcemap}[1]{%
+ \booltrue{sourcemap}%
+ \begingroup
+ \let\maps\blx@stylesourcemap@maps
+ \let\blx@tempa\@empty
+ #1%
+ \csxdef{blx@biber@sourcemap@style}{\blx@tempa}%
+ \endgroup}
+
+\@onlypreamble\DeclareStyleSourcemap
+
+\newrobustcmd*{\DeclareDriverSourcemap}[2][]{%
\booltrue{sourcemap}%
\begingroup
\let\blx@tempa\@empty
@@ -8994,21 +9009,32 @@
\let\map\blx@sourcemap@map
#2%
\ifblank{#1}
- {\setkeys{blx@sourcemap@maps}{datatype=bibtex, defaults=true}}
- {\setkeys{blx@sourcemap@maps}{#1, defaults=true}}%
+ {\setkeys{blx@sourcemap@maps}{datatype=bibtex, level=driver}}
+ {\setkeys{blx@sourcemap@maps}{#1, level=driver}}%
\eappto\blx@tempa{%
\blx@xml@sourcemap@maps{\blx@tempb}{\blx@tempc}}%
\csxdef{blx@biber@sourcemap@defaults@\blx@tempd}{\blx@tempa}%
\endgroup}
-\@onlypreamble\DeclareDefaultSourcemap
+\@onlypreamble\DeclareDriverSourcemap
-\newcommand*{\blx@sourcemap@maps}[2][]{%
+\newcommand*{\blx@usersourcemap@maps}[2][]{%
\let\blx@tempb\@empty
\let\blx@tempc\@empty
\let\map\blx@sourcemap@map
\ifblank{#1}
- {}
- {\setkeys{blx@sourcemap@maps}{#1}}%
+ {\setkeys{blx@sourcemap@maps}{level=user}}
+ {\setkeys{blx@sourcemap@maps}{#1, level=user}}%
+ #2%
+ \eappto\blx@tempa{%
+ \blx@xml@sourcemap@maps{\blx@tempb}{\blx@tempc}}}
+
+\newcommand*{\blx@stylesourcemap@maps}[2][]{%
+ \let\blx@tempb\@empty
+ \let\blx@tempc\@empty
+ \let\map\blx@sourcemap@map
+ \ifblank{#1}
+ {\setkeys{blx@sourcemap@maps}{level=style}}
+ {\setkeys{blx@sourcemap@maps}{#1, level=style}}%
#2%
\eappto\blx@tempa{%
\blx@xml@sourcemap@maps{\blx@tempb}{\blx@tempc}}}
@@ -9020,10 +9046,8 @@
\ifstrequal{#1}{true}
{\appto\blx@tempb{ map\string_overwrite="1"}}
{}}
-\define@key{blx@sourcemap@maps}{defaults}[true]{% true|false
- \ifstrequal{#1}{true}
- {\appto\blx@tempb{ driver\string_defaults="1"}}
- {}}
+\define@key{blx@sourcemap@maps}{level}{% user|style|driver
+ \appto\blx@tempb{ level="#1"}}
\newcommand*{\blx@sourcemap@map}[2][]{%
\let\blx@tempd\@empty
@@ -9126,7 +9150,7 @@
\global\cslet{blx@biber@labelalphatemplate@#2}\blx@tempa}%
\endgroup}
-\newcommand{\blx@latem@element}[1]{%
+\newcommand*{\blx@latem@element}[1]{%
\advance\blx@tempcnta\@ne
\let\blx@tempb\@empty
#1%
@@ -9148,6 +9172,8 @@
% script form - original | translated | romanised | uniform
\define@key{blx@latem@field}{form}{%
\appto\blx@tempc{ form="#1"}}
+\define@key{blx@latem@field}{lang}{%
+ \appto\blx@tempc{ lang="#1"}}
\define@key{blx@latem@field}{uppercase}[true]{% true|false
\ifstrequal{#1}{true}
{\appto\blx@tempc{ uppercase="1"}}
@@ -9219,7 +9245,7 @@
% {<source>}{<target>}{<options>}
-\newcommand{\blx@inherit@except}[3]{%
+\newcommand*{\blx@inherit@except}[3]{%
\let\blx@tempc\@empty
\ifblank{#3}
{}
@@ -9257,7 +9283,7 @@
% [<options>]{<source>}{<target>}
-\newcommand{\blx@inherit@field}[3][]{%
+\newcommand*{\blx@inherit@field}[3][]{%
\let\blx@tempc\@empty
\ifblank{#1}
{}
@@ -9265,7 +9291,7 @@
\eappto\blx@tempb{%
\blx@xml@inherit@field{#2}{#3}{\blx@tempc}}}
-\newcommand{\blx@inherit@block}[1]{%
+\newcommand*{\blx@inherit@block}[1]{%
\eappto\blx@tempb{\blx@xml@inherit@block{#1}}}
\define@key{blx@inherit@field}{override}[true]{% true|false
@@ -9294,7 +9320,7 @@
\endgroup}
\@onlypreamble\DeclareSortingScheme
-\newcommand{\blx@sortdef@sort}[2][]{%
+\newcommand*{\blx@sortdef@sort}[2][]{%
\advance\blx@tempcnta\@ne
\blx@tempcntb\z@
\let\blx@tempb\@empty
@@ -9336,6 +9362,8 @@
% script form - original | translated | romanised | uniform
\define@key{blx@sortdef@field}{form}{%
\appto\blx@tempd{ form="#1"}}
+\define@key{blx@sortdef@field}{lang}{%
+ \appto\blx@tempd{ lang="#1"}}
\define@key{blx@sortdef@field}{padside}{% left|right
\ifstrequal{#1}{right}
{\eappto\blx@tempd{ pad\string_side="right"}}
@@ -9395,35 +9423,63 @@
% [<type,type,...>]{<field,field,...>}
\newrobustcmd*{\DeclareLabelname}[2][]{%
- \blx@defmvalue{labelnamespec}{#1}{#2}}
+ \begingroup
+ \let\blx@tempa\@empty
+ \def\blx@tempb{labelnamespec}%
+ \let\field\blx@ordered@field
+ \ifblank{#1}
+ {\global\cslet{blx@bcf@labelnamespec}\@empty}
+ {\def\blx@tempa{#1}%
+ \def\do##1{\global\cslet{blx@bcf@labelnamespec@##1}\@empty}%
+ \expandafter\docsvlist\expandafter{#1}}%
+ #2%
+ \endgroup}
\@onlypreamble\DeclareLabelname
\newrobustcmd*{\DeclareLabeltitle}[2][]{%
- \blx@defmvalue{labeltitlespec}{#1}{#2}}
+ \begingroup
+ \let\blx@tempa\@empty
+ \def\blx@tempb{labeltitlespec}%
+ \let\field\blx@ordered@field
+ \ifblank{#1}
+ {\global\cslet{blx@bcf@labeltitlespec}\@empty}
+ {\def\blx@tempa{#1}%
+ \def\do##1{\global\cslet{blx@bcf@labeltitlespec@##1}\@empty}%
+ \expandafter\docsvlist\expandafter{#1}}%
+ #2%
+ \endgroup}
\@onlypreamble\DeclareLabeltitle
\newrobustcmd*{\DeclareLabelyear}[2][]{%
- \blx@defmvalue{labelyearspec}{#1}{#2}}
+ \begingroup
+ \let\blx@tempa\@empty
+ \def\blx@tempb{labelyearspec}%
+ \let\field\blx@ordered@field
+ \ifblank{#1}
+ {\global\cslet{blx@bcf@labelyearspec}\@empty}
+ {\def\blx@tempa{#1}%
+ \def\do##1{\global\cslet{blx@bcf@labelyearspec@##1}\@empty}%
+ \expandafter\docsvlist\expandafter{#1}}%
+ #2%
+ \endgroup}
\@onlypreamble\DeclareLabelyear
-\def\blx@defmvalue#1#2#3{%
- \ifblank{#2}
- {\expandafter\blx@defmvalue@ii\csname blx@bcf@#1\endcsname{#3}}
- {\forcsvlist{\blx@defmvalue@i{#1}{#3}}{#2}}}
-
-\def\blx@defmvalue@i#1#2#3{%
- \blx@addtypeopt{#3}%
- \expandafter\blx@defmvalue@ii\csname blx@bcf@#1@#3\endcsname{#2}}
+\newcommand*{\blx@ordered@field}[2][]{%
+ \let\blx@tempc\@empty
+ \ifblank{#1}
+ {}
+ {\setkeys{blx@ordered@field}{#1}}%
+ \advance\blx@tempcnta\@ne
+ \ifdefempty{\blx@tempa}
+ {\csxappto{blx@bcf@\blx@tempb}{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{\blx@tempc}{#2}}}
+ {\def\do##1{\blx@addtypeopt{##1}%
+ \csxappto{blx@bcf@\blx@tempb @##1}{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{\blx@tempc}{#2}}}%
+ \expandafter\docsvlist\expandafter{\blx@tempa}}}
-\def\blx@defmvalue@ii#1#2{%
- \begingroup
- \global\let#1\@empty
- \blx@tempcnta\z@
- \def\do##1{%
- \advance\blx@tempcnta\@ne
- \xappto#1{\noexpand\blx@xml@ordered{\the\blx@tempcnta}{##1}}}%
- \docsvlist{#2}%
- \endgroup}
+\define@key{blx@ordered@field}{form}{%
+ \appto\blx@tempc{ form="#1"}}
+\define@key{blx@ordered@field}{lang}{%
+ \appto\blx@tempc{ lang="#1"}}
%% Package options
@@ -9444,8 +9500,8 @@
{\ifdef\blx@opts@type
{\ifinlist{#1}{\blx@opts@type}
{}
- {\listadd\blx@opts@type{#1}}}
- {\listadd\blx@opts@type{#1}}}
+ {\listgadd\blx@opts@type{#1}}}
+ {\listgadd\blx@opts@type{#1}}}
{}}
% load-time only
diff --git a/Master/texmf-dist/tex/latex/biblatex/blx-dm.def b/Master/texmf-dist/tex/latex/biblatex/blx-dm.def
index dcee0112012..6456e06b0b8 100644
--- a/Master/texmf-dist/tex/latex/biblatex/blx-dm.def
+++ b/Master/texmf-dist/tex/latex/biblatex/blx-dm.def
@@ -378,8 +378,8 @@
pagetotal,
part,
related,
- relatedtype,
relatedstring,
+ relatedtype,
reprinttitle,
series,
shorthand,
@@ -492,7 +492,7 @@
\DeclareDatamodelFields[type=field, datatype=uri]{url}
\DeclareDatamodelFields[type=field, datatype=csv]{keywords}
-\DeclareDatamodelFields[type=field, datatype=csv, skipout]{options}
+\DeclareDatamodelFields[type=field, datatype=csv, skipout]{options, relatedoptions}
\DeclareDatamodelFields[type=field, datatype=range]{pages}
\DeclareDatamodelFields[type=field, datatype=code]{execute}
@@ -537,8 +537,9 @@
pagination,
presort,
related,
- relatedtype,
+ relatedoptions,
relatedstring,
+ relatedtype,
shortauthor,
shorteditor,
shorthand,
diff --git a/Master/texmf-dist/tex/latex/biblatex/lbx/catalan.lbx b/Master/texmf-dist/tex/latex/biblatex/lbx/catalan.lbx
index 4a4d425a8aa..fc8d96d2c59 100644
--- a/Master/texmf-dist/tex/latex/biblatex/lbx/catalan.lbx
+++ b/Master/texmf-dist/tex/latex/biblatex/lbx/catalan.lbx
@@ -1,8 +1,11 @@
-% -*- latex -*-
+3% -*- latex -*-
\ProvidesFile{catalan.lbx}
% Changes:
-% 2012-4-23 Translation by Sebastià Vila-Marta
+% 2012-4-23 Translation (Sebastià Vila-Marta)
+% 2012-10-23 Added to biblatex project (Sebastià Vila-Marta)
+% 2012-11-4 All strings translated (Sebastià Vila-Marta)
+
\DeclareRedundantLanguages{catalan}{catalan}
@@ -16,11 +19,7 @@
\@tempcnta0#1\relax\number\@tempcnta
\ifcase\@tempcnta x\or er\or n\or er\or rt\else \`e\fi
\endgroup}%
- \protected\def\mkbibordinalf#1{%
- \begingroup
- \@tempcnta0#1\relax\number\@tempcnta
- \ifcase\@tempcnta x\or era\or na\or era\else a\fi
- \endgroup}%
+ \protected\def\mkbibordinalf#1{#1a}%
\protected\def\mkbibmascord#1{\mkbibordinalm{#1}}%
\protected\def\mkbibfemord#1{\mkbibordinalf{#1}}%
\protected\def\mkbibdatelong#1#2#3{%
@@ -80,8 +79,8 @@
shorthands = {{Llista de abreviatures}{Abreviatures}},
editor = {{editor}{ed\adddot}},
editors = {{editors}{eds\adddot}},
- compiler = {{compilador}{comp\adddot}},
- compilers = {{compiladors}{comps\adddot}},
+ compiler = {{compilador}{comp\adddot}}, % Revisar
+ compilers = {{compiladors}{comps\adddot}}, % Revisar
redactor = {{redactor}{red\adddot}},
redactors = {{redactors}{reds\adddot}},
reviser = {{revisor}{rev\adddot}},
@@ -96,8 +95,8 @@
translators = {{traductors}{trads\adddot}},
commentator = {{comentarista}{com\adddot}},
commentators = {{comentaristes}{coms\adddot}},
- annotator = {{autor de les notes}{autor de les notes}},
- annotators = {{autors de les notes}{autors de les notes}},
+ annotator = {{anotador}{anot\adddot}},
+ annotators = {{anotadors}{anots\adddot}},
commentary = {{comentari}{com\adddot}},
annotations = {{notes}{notes}},
introduction = {{introducci\'o}{intr\adddot}},
@@ -107,70 +106,128 @@
editorstr = {{editors i traductors}{eds\adddotspace i trads\adddot}},
editorco = {{editor i comentarista}{ed\adddotspace i com\adddot}},
editorsco = {{editors i comentaristes}{eds\adddotspac i coms\adddot}},
- editoran = {{editor i autor de les notes}{ed\adddotspace i autor de les notes}},
- editorsan = {{editors i autors de les notes}{eds\adddotspace i autors de les notes}},
+ editoran = {{editor i anotador}{ed\adddotspace i anot\adddot}},
+ editorsan = {{editors i anotadors}{eds\adddotspace i anots\adddot}},
editorin = {{editor i autor de la introducci\'o}{ed\adddotspace i autor de la intr\addot}},
editorsin = {{editors i autors de la introducci\'o}{eds\adddotspace i autors de la intr\adddot}},
- editorfo = {{editor i autor del pròleg}{ed\adddotspace i autor del pr\`ol\addot}},
- editorsfo = {{editors i autors del pròleg}{eds\adddotspace i autors del pr\`ol\addot}},
-% editoraf = {{}{}}, % FIXME: missing
-% editorsaf = {{}{}}, % FIXME: missing
-% editortrco = {{}{}}, % FIXME: missing
-% editorstrco = {{}{}}, % FIXME: missing
-% editortran = {{}{}}, % FIXME: missing
-% editorstran = {{}{}}, % FIXME: missing
-% editortrin = {{}{}}, % FIXME: missing
-% editorstrin = {{}{}}, % FIXME: missing
-% editortrfo = {{}{}}, % FIXME: missing
-% editorstrfo = {{}{}}, % FIXME: missing
-% editortraf = {{}{}}, % FIXME: missing
-% editorstraf = {{}{}}, % FIXME: missing
-% editorcoin = {{}{}}, % FIXME: missing
-% editorscoin = {{}{}}, % FIXME: missing
-% editorcofo = {{}{}}, % FIXME: missing
-% editorscofo = {{}{}}, % FIXME: missing
-% editorcoaf = {{}{}}, % FIXME: missing
-% editorscoaf = {{}{}}, % FIXME: missing
-% editoranin = {{}{}}, % FIXME: missing
-% editorsanin = {{}{}}, % FIXME: missing
-% editoranfo = {{}{}}, % FIXME: missing
-% editorsanfo = {{}{}}, % FIXME: missing
-% editoranaf = {{}{}}, % FIXME: missing
-% editorsanaf = {{}{}}, % FIXME: missing
-% editortrcoin = {{}{}}, % FIXME: missing
-% editorstrcoin = {{}{}}, % FIXME: missing
-% editortrcofo = {{}{}}, % FIXME: missing
-% editorstrcofo = {{}{}}, % FIXME: missing
-% editortrcoaf = {{}{}}, % FIXME: missing
-% editorstrcoaf = {{}{}}, % FIXME: missing
-% editortranin = {{}{}}, % FIXME: missing
-% editorstranin = {{}{}}, % FIXME: missing
-% editortranfo = {{}{}}, % FIXME: missing
-% editorstranfo = {{}{}}, % FIXME: missing
-% editortranaf = {{}{}}, % FIXME: missing
-% editorstranaf = {{}{}}, % FIXME: missing
-% translatorco = {{}{}}, % FIXME: missing
-% translatorsco = {{}{}}, % FIXME: missing
-% translatoran = {{}{}}, % FIXME: missing
-% translatorsan = {{}{}}, % FIXME: missing
-% translatorin = {{}{}}, % FIXME: missing
-% translatorsin = {{}{}}, % FIXME: missing
-% translatorfo = {{}{}}, % FIXME: missing
-% translatorsfo = {{}{}}, % FIXME: missing
-% translatoraf = {{}{}}, % FIXME: missing
-% translatorsaf = {{}{}}, % FIXME: missing
-% translatorcoin = {{}{}}, % FIXME: missing
-% translatorscoin = {{}{}}, % FIXME: missing
-% translatorcofo = {{}{}}, % FIXME: missing
-% translatorscofo = {{}{}}, % FIXME: missing
-% translatorcoaf = {{}{}}, % FIXME: missing
-% translatorscoaf = {{}{}}, % FIXME: missing
-% translatoranin = {{}{}}, % FIXME: missing
-% translatorsanin = {{}{}}, % FIXME: missing
-% translatoranfo = {{}{}}, % FIXME: missing
-% translatorsanfo = {{}{}}, % FIXME: missing
-% translatoranaf = {{}{}}, % FIXME: missing
-% translatorsanaf = {{}{}}, % FIXME: missing
+ editorfo = {{editor i autor del pr\`oleg}{ed\adddotspace i autor del pr\`ol\addot}},
+ editorsfo = {{editors i autors del pr\`oleg}{eds\adddotspace i autors del pr\`ol\addot}},
+ editoraf = {{editor i autor de l'ep{\´\i}leg} %
+ {ed\adddotspace i aut\adddot de l'ep{\`\i]\adddot}},
+ editorsaf = {{editors i autors de l'ep{\´\i}leg} %
+ {eds\adddotspace i auts\adddotspace de l'ep{\`\i]\adddot}},
+ editortrco = {{editor, traductor i comentarista}
+ {ed.,\addabbrvspace trad\adddot i com\adddot}},
+ editorstrco = {{editors, traductors i comentaristes}
+ {eds.,\addabbrvspace trads\adddot i coms\adddot}},
+ editortran = {{editor, traductor i anotador}
+ {ed.,\addabbrvspace trad\adddot i anot\adddot}},
+ editorstran = {{editors, traductors i anotadors}
+ {eds.,\addabbrvspace trads\adddot i anots\adddot}},
+ editortrin = {{editor, traductor i autor de la introducci\´o}
+ {ed.,\addabbrvspace trad\adddot i aut\adddot de la intr\adddot}},
+ editorstrin = {{editors, traductors i autors de la introducci\´o}
+ {eds.,\addabbrvspace trads\adddot i auts\adddot de la intr\adddot}},
+ editortrfo = {{editor, traductor i autor del pr\`oleg}
+ {ed.,\addabbrvspace trad\adddot i aut\adddot del pr\`ol\adddot}},
+ editorstrfo = {{editors, traductors i autors del pr\`oleg}
+ {eds.,\addabbrvspace trads\adddot i auts\adddot del pr\`ol\adddot}},
+ editortraf = {{editor, traductor i autor de l'ep{\´\i}leg}
+ {ed.,\addabbrvspace trad\adddot i aut\adddot de l'ep{\´\i}l\adddot}},
+ editorstraf = {{editors, traductors i autors de l'ep{\´\i}leg}
+ {eds.,\addabbrvspace trads\adddot i auts\adddot de l'ep{\´\i}l\adddot}},
+ editorcoin = {{editor, comentarista i autor de la introducci\´o}
+ {ed.,\addabbrvspace com\adddot i aut\adddot de la intr\adddot}},
+ editorscoin = {{editors, comentaristes i autors de la introducci\´o}
+ {eds.,\addabbrvspace coms\adddot i auts\adddot de la intr\adddot}},
+ editorcofo = {{editor, comentarista i autor del pr\`oleg}
+ {ed.,\addabbrvspace com\adddotspace i aut\adddotspace del pr\`ol\adddot}},
+ editorscofo = {{editors, comentaristes i autors del pr\`oleg}
+ {eds.,\addabbrvspace coms\adddotspace i auts\adddotspace del pr\`ol\adddot}},
+ editorcoaf = {{editor, comentarista i autor de l'ep{\`\i}leg}
+ {ed.,\addabbrvspace com\adddotspace i aut\adddotspace de l'ep{\´\i}l\adddot}},
+ editorscoaf = {{editors, comentaristes i autors de l'ep{\`\i}leg}
+ {eds.,\addabbrvspace coms\adddotspace i auts\adddotspace de l'ep{\´\i}l\adddot}},
+ editoranin = {{editor, anotador i autor de la introducci\´o}
+ {ed.,\addabbrvspace anot\adddotspace i aut\adddotspace de la intr\adddot}},
+ editorsanin = {{editors, anotadors i autors de la introducci\`o}
+ {eds.,\addabbrvspace anots\adddotspace i auts\adddotspace de la intr\adddot}},
+ editoranfo = {{editor, anotador i autor del pr\`oleg}
+ {ed.,\addabbrvspace anot\adddotspace i aut\adddotspace del pr\`ol\adddot}},
+ editorsanfo = {{editors, anotadors i autors del pr\`oleg}
+ {eds.,\addabbrvspace anots\adddotspace i auts\adddotspace del pr\`ol\adddot}},
+ editoranaf = {{editor, anotador i autor de l'ep{\`\i}leg}
+ {ed.,\addabbrvspace anot\adddotspace i aut\adddotspace de l'ep{\`\i}l\adddot}},
+ editorsanaf = {{editors, anotadors i autors de l'ep{\`\i}leg}
+ {eds.,\addabbrvspace anots\adddotspace i auts\adddotspace de l'ep{\`\i}l\adddot}},
+ editortrcoin = {{editor, traductor, comentarista i autor de la introducci\´o}
+ {ed.,\addabbrevspace trad.,\addabbrevspace com\adddotspace i aut\adddotspace de la intr\adddot}},
+ editorstrcoin = {{editors, traductors, comentaristes i autors de la introducci\´o}
+ {eds.,\addabbrevspace trads.,\addabbrevspace coms\adddotspace i aut\adddotspace de la intr\adddot}},
+ editortrcofo = {{editor, traductor, comentarista i autor del pr\`oleg}
+ {ed.,\addabbrvspace trad.,\addabbrevspace com\adddotspace i aut\adddotspace del pr\`ol\adddot }},
+ editorstrcofo = {{editors, traductors, comentaristes i autors del pr\`oleg}
+ {eds.,\addabbrvspace trads.,\addabbrevspace coms\adddotspace i auts\adddotspace del pr\`ol\adddot }},
+ editortrcoaf = {{editor, traductor, comentarista i autor de l'ep{\´\i}leg}
+ {ed,.\addabbrevspace trad.,\addabbrevspace com\adddotspace i aut\adddotspace de l'ep{\´\i}l\adddot}},
+ editorstrcoaf = {{editors, traductors, comentaristes i autors de l'ep{\´\i}leg}
+ {eds,.\addabbrevspace trads.,\addabbrevspace coms\adddotspace i auts\adddotspace de l'ep{\´\i}l\adddot}},
+ editortranin = {{editor, traductor, anotador i autor de la introducci\´o}
+ {ed.,\addabbrevspace trad.,\addabbrevspace anot\adddotspace i aut\adddotspace de la intr\adddot}},
+ editorstranin = {{editors, traductors, anotadors i autors de la introducci\´o}
+ {eds.,\addabbrevspace trads.,\addabbrevspace anots\adddotspace i auts\adddotspace de la intr\adddot}},
+ editortranfo = {{editor, traductor, anotador i autor del pr\`oleg}
+ {ed.,\addabrevspace trad.,\addabbrevspace anot\adddotspace i aut\adddotspace de pr\`ol\adddot}},
+ editorstranfo = {{editors, traductors, anotadors i autors del pr\`oleg}
+ {eds.,\addabrevspace trads.,\addabbrevspace anots\adddotspace i auts\adddotspace de pr\`ol\adddot}},
+ editortranaf = {{editor, traductor, anotador i autor de l'ep{\´\i}eg}
+ {ed.,\addabbrevspace trad.,\addabbrevspace anot\adddotspace i aut\adddotspace de l'ep{\´\i}l\addot}},
+ editorstranaf = {{editors, traductors, anotadors i autors de l'ep{\´\i}eg}
+ {eds.,\addabbrevspace trads.,\addabbrevspace anots\adddotspace i auts\adddotspace de l'ep{\´\i}l\addot}},
+ translatorco = {{traductor i comentarista}
+ {trad\adddotspace i com\adddot}},
+ translatorsco = {{traductors i comentaristes}
+ {trads\adddotspace i coms\adddot}},
+ translatoran = {{traductor i anotador}
+ {trad\adddotspace i anot\adddot}},
+ translatorsan = {{traductors i anotadors}
+ {trads\adddotspace i anots\adddot}},
+ translatorin = {{traductor i autor de la introducci\´o}
+ {trad\adddotspace i aut\adddotspace de la intr\adddot}},
+ translatorsin = {{traductors i autors de la introducci\´o}
+ {trads\adddotspace i auts\adddotspace de la intr\adddot}},
+ translatorfo = {{traductor i autor del pr\`oleg}
+ {trad\adddotspace i aut\adddotspace del pr\`ol\adddot}},
+ translatorsfo = {{traductors i autors del pr\`oleg}
+ {trads\adddotspace i auts\adddotspace del pr\`ol\adddot}},
+ translatoraf = {{traductor i autor de l'ep{\´\i}leg}
+ {trad\adddotspace i aut\adddotspace de l'ep{\´\i}l\adddot}},
+ translatorsaf = {{traductors i autors de l'ep{\´\i}leg}
+ {trads\adddotspace i auts\adddotspace de l'ep{\´\i}l\adddot}},
+ translatorcoin = {{traductor, comentarista i autor de la introducci\´o}
+ {trad.,\addabbrevspace com\adddotspace i aut\adddotspace de la intr\adddotspace}},
+ translatorscoin = {{traductors, comentaristes i autors de la introducci\´o}
+ {trads.,\addabbrevspace coms\adddotspace i auts\adddotspace de la intr\adddotspace}},
+ translatorcofo = {{traductor, comentarista i autor del pr\`oleg}
+ {trad.,\addabbrevspace com\adddotspace i aut\adddotspace del pr\`ol\adddot}},
+ translatorscofo = {{traductors, comentaristes i autors del pr\`oleg}
+ {trads.,\addabbrevspace coms\adddotspace i auts\adddotspace del pr\`ol\adddot}},
+ translatorcoaf = {{traductor, comentarista i autor de l'ep{\´\i}leg}
+ {trad.,\addabbrevspace com\adddotspace i aut\adddotspace de l'ep{\´\i}l\adddot}},
+ translatorscoaf = {{traductors, comentaristes i autors de l'ep{\´\i}leg}
+ {trads.,\addabbrevspace coms\adddotspace i auts\adddotspace de l'ep{\´\i}l\adddot}},
+ translatoranin = {{traductor, anotador i autor de la introducci\´o}
+ {trad.,\addabbrevspace anot\adddotspace i aut\adddotspace de la intr\adddot}},
+ translatorsanin = {{traductors, anotadors i autors de la introducci\´o}
+ {trads.,\addabbrevspace anots\adddotspace i auts\adddotspace de la intr\adddot}},
+ translatoranfo = {{traductor, anotador i autor del pr\`oleg}
+ {trad.,\addabbrevspace anot\adddotspace i aut\adddotspace del pr\`ol\adddot}},
+ translatorsanfo = {{traductors, anotadors i autors del pr\`oleg}
+ {trads.,\addabbrevspace anots\adddotspace i auts\adddotspace del pr\`ol\adddot}},
+ translatoranaf = {{traductor, anotador i autor de l'ep{\´\i}leg}
+ {trad.,\addabbrevspace anot\adddotspace i aut\adddotspace de l'ep{\´\i}l\adddot}},
+ translatorsanaf = {{traductors, anotadors i autors de l'ep{\´\i}leg}
+ {trads.,\addabbrevspace anots\adddotspace i auts\adddotspace de l'ep{\´\i}l\adddot}},
byauthor = {{per}{per}},
byeditor = {{edici\´o a cura de}{ed\adddotspace de}},
bycompiler = {{compilaci\'o a cura de}{comp\adddotspace de}},
@@ -184,7 +241,7 @@
byannotator = {{notes a cura de}{notes de}},
withcommentator = {{amb comentaris a cura de}{amb com\adddotspace a cura de}},
withannotator = {{amb notes a cura de}{amb notes de}},
- withintroduction = {{amb l'introducci\'o a cura de}{amb l'intr\adddotspace de}},
+ withintroduction = {{amb la introducci\'o a cura de}{amb la intr\adddotspace de}},
withforeword = {{amb el pr\`oleg a cura de}{amb el pr\`ol\adddotspace de}},
withafterword = {{amb l'ep\'{\i}leg a cura de}{amb l'ep\'{\i}l\adddotspace de}},
byeditortr = {{edici\'o i traducci\'o \lbx@fromlang\ a cura de}%
@@ -214,19 +271,19 @@
byeditorcofo = {{edici\'o, comentaris i pr\`oleg a cura de}
{ed\adddot com\adddotspace i pr\`ol\adddotspace de}},
byeditorcoaf = {{edici\'o, comentaris i ep\'{\i}leg a cura de}%
- {ed\adddot, com\adddotspace y epil\adddotspace de}},
+ {ed\adddot, com\adddotspace i epil\adddotspace de}},
byeditoranin = {{edici\'o, notes i introducci\'o a cura de}%
{ed\adddot, not\adddotspace i introd\adddotspace de}},
- byeditoranfo = {{edici\'o, notes y pr\`oleg a cura de}%
+ byeditoranfo = {{edici\'o, notes i pr\`oleg a cura de}%
{ed.,\addabbrvspace not\adddotspace ì pr\'ol\adddotspace de}},
byeditoranaf = {{edici\'o, notes i ep\'{\i}leg a cura de}%
- {ed.,\addabbrvspace not\adddotspace y ep\'{\i}l\adddotspace de}},
+ {ed.,\addabbrvspace not\adddotspace i ep\'{\i}l\adddotspace de}},
byeditortrcoin = {{edici\'o, traducció \lbx@fromlang, comentaris i introducci\'o a cura de}%
{ed.,\addabbrvspace trad\adddotspace \lbx@fromlang, com\adddotspace i intr\adddotspace de}},
byeditortrcofo = {{edici\'o, traducció \lbx@fromlang, comentaris i pr\`oleg a cura de}%
{ed.,\addabbrvspace trad\adddotspace \lbx@fromlang, com\adddotspace i pr\`ol\adddotspace de}},
byeditortrcoaf = {{edici\´o, traducci\´o \lbx@fromlang, comentaris i ep\´{\i}leg a cura de}%
- {ed.,\addabbrvspace trad\adddot\ \lbx@fromlang, com\adddot\ y ep\´{i}l\adddot\ de}},
+ {ed.,\addabbrvspace trad\adddot\ \lbx@fromlang, com\adddot\ i ep\´{i}l\adddot\ de}},
byeditortranin = {{edici\´o, traducci\´o \lbx@fromlang, notes i introducci\´o a cura de}%
{ed.,\addabbrvspace trad\adddot\ \lbx@fromlang, not\adddot\ i intr\adddot\ de}},
byeditortranfo = {{edici\´o, traducci\´o \lbx@fromlang, notes i pr\`oleg a cura de}%
@@ -245,28 +302,28 @@
{trad\adddot\ \lbx@fromlang\ i ep\´{\i}l\adddot\ de}},
bytranslatorcoin = {{traducci\´o \lbx@fromlang, comentaris i introducci\´o a cura de}%
{trad\adddot\ \lbx@fromlang, com\adddot\ i introd\adddot\ de}},
- bytranslatorcofo = {{traducci\´o \lbx@fromlang, comentaris y pr\`oleg a cura de}%
- {trad\adddot\ \lbx@fromlang, com\adddot\ y pr\`ol\adddot\ de}},
+ bytranslatorcofo = {{traducci\´o \lbx@fromlang, comentaris i pr\`oleg a cura de}%
+ {trad\adddot\ \lbx@fromlang, com\adddot\ i pr\`ol\adddot\ de}},
bytranslatorcoaf = {{traducci\´o \lbx@fromlang, comentaris i ep\´{\i}leg a cura de}%
- {trad\adddot\ \lbx@fromlang, com\adddot\ y ep\´{\i}l\adddot\ de}},
+ {trad\adddot\ \lbx@fromlang, com\adddot\ i ep\´{\i}l\adddot\ de}},
bytranslatoranin = {{traducci\´o \lbx@fromlang, notes i introducci\´o a cura de}%
{trad\adddot\ \lbx@fromlang, anot\adddot\ i introd\adddot\ de}},
bytranslatoranfo = {{traducci\´o \lbx@fromlang, notes i pr\`oleg a cura de}%
{trad\adddot\ \lbx@fromlang, not\adddot\ i pr\'ol\adddot\ de}},
bytranslatoranaf = {{traducci\´o \lbx@fromlang, notes i ep\´{\i}leg a cura de}%
- {trad\adddot\ \lbx@fromlang, not\adddot\ y ep\´{\i}l\adddot\ de}},
+ {trad\adddot\ \lbx@fromlang, not\adddot\ i ep\´{\i}l\adddot\ de}},
and = {{i}{i}},
- andothers = {{i d'altres\adddot}{i d'altres\adddot}},
- andmore = {{\textit{et al.}}{\textit{et al.}}},
+ andothers = {{et al\adddot}{et al\adddot}},
+ andmore = {i m\´es}{i m\´es}},
volume = {{volum}{vol\adddot}},
volumes = {{volums}{vols\adddot}},
jourvol = {{volum}{vol\adddot}},
- jourser = {{\`epoca}{\`ep\adddot}},
+ jourser = {{s\`erie}{s\`er\adddot}},
book = {{llibre}{llib\addot}},
part = {{part}{part}},
issue = {{n\´umero}{n\´um\adddot}},
- newseries = {{nova \`epoca}{n\adddotspace\`ep\adddot}},
- oldseries = {{antiga \`epoca}{ant\adddotspace\`ep\adddot}},
+ newseries = {{nova s\`erie}{n\adddotspace s\`er\adddot}},
+ oldseries = {{antiga s\`erie}{ant\adddotspace s\`er\adddot}},
edition = {{edici\'o}{ed\adddot}},
reprint = {{reimpressi\'o}{reimpr\adddot}},
reprintof = {{reimpressi\'o de}{reimpr\adddotspace de}},
@@ -294,7 +351,7 @@
techreport = {{informe t\`ecnic}{inf\adddotspace t\`ec\adddot}},
software = {{programari}{prog\adddot}},
datacd = {{CD de dades}{CD de dades}},
- audiocd = {{CD d'audio}{CD d'audio}},
+ audiocd = {{CD d'\`audio}{CD d'\`audio}},
version = {{versi\'o}{ver\adddot}},
url = {{adreça}{adr\adddot}},
urlseen = {{visitat \ifthenelse{\thefield{urlday}=1}{l'}{el\space}}{vis\adddotspace}},
@@ -321,16 +378,16 @@
sequens = {{s\adddot}{s\adddot}},
sequentes = {{ss\adddot}{ss\adddot}},
passim = {{p\`assim}{p\`assim}},
- see = {{vegeu}{vegeu}},
+ see = {{vegeu}{veg\adddot}},
seealso = {{vegeu tamb\'e}{veg\adddotspace tamb\'e}},
backrefpage = {{vegeu la p\`agina}{veg\adddotspace la p\`ag\adddot}},
backrefpages = {{vegeu les p\`agines}{veg\adddotspace les p\`ag\adddot}},
january = {{gener}{gen\adddot}},
february = {{febrer}{feb\adddot}},
- march = {{març}{març}},
+ march = {{març}{mar\adddot}},
april = {{abril}{abr\adddot}},
- may = {{maig}{maig}},
- june = {{juny}{juny}},
+ may = {{maig}{mai\adddot}},
+ june = {{juny}{jun\adddot}},
july = {{juliol}{jul\adddot}},
august = {{agost}{ago\adddot}},
september = {{setembre}{set\adddot}},
@@ -340,11 +397,11 @@
langamerican = {{angl\`es americ\`a}{ang\adddotspace amer\adddot}},
langbrazilian = {{portugu\`es brasiler}{port\adddotspace bras\adddot}},
langcroatian = {{croat}{croat}},
-% langcatalan = {{catal\`a}{catal\`a}},
+ langcatalan = {{catal\`a}{catal\`a}},
langdanish = {{dan\`es}{dan\adddot}},
langdutch = {{neerland\`es}{neerland\`es}},
langenglish = {{angl\`es}{ang\adddot}},
- langfinish = {{fin\`es}{fin\`es}},
+ langfinnish = {{fin\`es}{fin\`es}},
langfrench = {{franc\`es}{fran\adddot}},
langgerman = {{alemany}{alem\adddot}},
langgreek = {{grec}{grec}},
@@ -358,11 +415,11 @@
fromamerican = {{de l'anglès americ\`a}{de l'ang\adddotspace amer\adddot}},
frombrazilian = {{del portugu\`es brasiler}{del port\adddot bras\adddot}},
fromcroatian = {{del croat}{del croat}},
-% fromcatalan = {{del catal\`a}{del catal\`a}},
+ fromcatalan = {{del catal\`a}{del catal\`a}},
fromdanish = {{del dan\`es}{del dan\ès}},
fromdutch = {{del neerland\`es}{del neerl\adddot}},
fromenglish = {{de l'angl\`es}{de l'ang\adddot}},
- fromfinish = {{del fin\`es}{del fin\`es}},
+ fromfinnish = {{del fin\`es}{del fin\`es}},
fromfrench = {{del franc\`es}{del fran\adddot}},
fromgerman = {{de l'alemany}{de l'alem\adddot}},
fromgreek = {{del grec}{del grec}},
@@ -373,7 +430,7 @@
fromrussian = {{del rus}{del rus}},
fromspanish = {{del castell\`a}{del cast\adddot}},
fromswedish = {{del suec}{del suec}},
-% countryca = {{Catalunya}{CAT}},
+% countryca = {{Catalunya}{CAT}},
countryde = {{Alemanya}{DE}},
countryeu = {{Uni\'o Europea}{UE}},
countryep = {{Uni\'o Europea}{UE}},
@@ -391,10 +448,10 @@
patreqeu = {{so\l.licitud de patent europea}{so\l.l\adddotspace de pat\adddot\ eur\adddot}},
patreqfr = {{so\l.licitud de patent francesa}{so\l.l\adddotspace de pat\adddot\ fran\adddot}},
patrequk = {{so\l.licitud de patent brit\`anica}{so\l.l\adddotspace de pat\adddot\ brit\adddot}},
- patrequs = {{so\l.licitud de patent americana}{so\l. l\adddotspace de pat\adddot\ amer\adddot}},
+ patrequs = {{so\l.licitud de patent americana}{so\l.l\adddotspace de pat\adddot\ amer\adddot}},
file = {{fitxer}{fitx\adddot}},
library = {{biblioteca}{bibl\adddot}},
abstract = {{resum}{resum}},
- annotation = {{anotaci\´o}{anot\adddot}},
+ annotation = {{nota}{not\adddot}},
}
\endinput
diff --git a/Master/texmf-dist/tex/latex/biblatex/lbx/czech.lbx b/Master/texmf-dist/tex/latex/biblatex/lbx/czech.lbx
new file mode 100644
index 00000000000..50cf0cd0796
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/biblatex/lbx/czech.lbx
@@ -0,0 +1,404 @@
+\ProvidesFile{czech.lbx}
+
+\InheritBibliographyExtras{english}
+\InheritBibliographyStrings{english}
+
+%Turabian calls for mostly abbreviated bibstrings in the footnotes, but mostly long forms in the bibliography. Here the entire list of bibstrings from the english.lbx file is redefined to select strings by bibliography vs. footnote environment, rather than long vs. short.
+
+\DeclareBibliographyExtras{
+ \protected\def\mkbibordinal#1{
+ \ifnumequal{#1}{1}{Prvn\'i}{%
+ \ifnumequal{#1}{2}{Druh\'e}{%
+ \ifnumequal{#1}{3}{T\v{r}et\'i}{%
+ #1\adddot}}}}
+ \renewcommand\finalandcomma{}
+ %\protected\def\nameprint#1#2{#2\space#1}
+}
+
+\DeclareBibliographyStrings{%
+ edition={{vyd\'an\'i}{vyd\adddot}},
+ page={{strana}{s\adddot}},
+ pages={{strany}{s\adddot}},
+ andothers={{a dal\v{s}\'i}{aj\adddot}},
+ volume={{ro\v{c}n\'ik}{ro\v{c}\adddot}},
+ jourvol={{ro\v{c}n\'ik}{ro\v{c}\adddot}},
+ number={{\v{c}\'islo}{\v{c}\adddot}},
+ urlseen={{citov\'ano}{cit\adddot}},
+ url = {{Dostupn\'y z WWW}{WWW}},
+ %urlcited = {{citov\'ano},{cit\adddot}}
+ bibliography = {{Bibliografie}{Bibliografie}},
+ references = {{Odkazy}{Odkazy}},
+ shorthands = {{Seznam zkratek}{Zkratky}},
+ editor = {{editor}{ed\adddot}},
+ editors = {{edotoři}{ed\adddot}},
+ compiler = {{sestavil}{sest\adddot}},
+ compilers = {{sestavili}{sest\adddot}},
+ redactor = {{redaktor}{red\adddot}},
+ redactors = {{redaktoři}{red\adddot}},
+ founder = {{zakladatel}{zakl\adddot}},
+ founders = {{zakladatelé}{zakl\adddot}},
+ continuator = {{pokračující}{pok\adddot}}, % FIXME: unsure
+ continuators = {{continued}{cont\adddot}}, % FIXME: unsure
+ collaborator = {{spolupracovník}{spoluprac\adddot}}, % FIXME: unsure
+ collaborators = {{spolupracovníci}{spoluprac\adddot}}, % FIXME: unsure
+ translator = {{překladatel}{překl\adddot}},
+ translators = {{překladatelé}{překl\adddot}},
+ commentator = {{komentátor}{kom\adddot}},
+ commentators = {{komentátoři}{kom\adddot}},
+ annotator = {{anotátor}{anot\adddot}},
+ annotators = {{anotátoři}{anot\adddot}},
+ commentary = {{commentary}{comm\adddot}},
+ annotations = {{anotatace}{anot\adddot}},
+ introduction = {{úvod}{úv\adddot}},
+ foreword = {{předmluva}{předml\adddot}},
+ afterword = {{doslov}{dosl\adddot}},
+ editortr = {{editor a překladatel}%
+ {ed\adddotspace a překl\adddot}},
+ editorstr = {{editoři a překladatelé}%
+ {ed\adddotspace a překl\adddot}},
+ editorco = {{editor a komentátor}%
+ {ed\adddotspace a kom\adddot}},
+ editorsco = {{editor a komentátoři}%
+ {ed\adddotspace a kom\adddot}},
+ editoran = {{editor a anotátor}%
+ {ed\adddotspace a anot\adddot}},
+ editorsan = {{editor a anotátoři}%
+ {ed\adddotspace a anot\adddot}},
+ editorin = {{editor a úvod}%
+ {ed\adddotspace úv\adddot}},
+ editorsin = {{editoři a úvod}%
+ {ed\adddotspace a úv\adddot}},
+ editorfo = {{editor a předmluva}%
+ {ed\adddotspace a forew\adddot}},
+ editorsfo = {{editoři a předmluva}%
+ {ed\adddotspace a forew\adddot}},
+ editoraf = {{editor a afterword}%
+ {ed\adddotspace a afterw\adddot}},
+ editorsaf = {{editoři a doslov}%
+ {ed\adddotspace a afterw\adddot}},
+ editortrco = {{editor, translator\ a komentátor}%
+ {ed.,\addabbrvspace překl\adddot\ a comm\adddot}},
+ editorstrco = {{editors, translators\ a komentátoři}%
+ {eds.,\addabbrvspace překl\adddot\ a comm\adddot}},
+ editortran = {{editor, translator\ a annotator}%
+ {ed.,\addabbrvspace překl\adddot\ a anot\adddot}},
+ editorstran = {{editors, translators\ a annotators}%
+ {ed.,\addabbrvspace překl\adddot\ a anot\adddot}},
+ editortrin = {{editor, translator\ a úvod}%
+ {ed.,\addabbrvspace překl\adddot\ a introd\adddot}},
+ editorstrin = {{editors, translators\ a úvod}%
+ {ed.,\addabbrvspace překl\adddot\ a introd\adddot}},
+ editortrfo = {{editor, translator\ a předmluva}%
+ {ed.,\addabbrvspace překl\adddot\ a forew\adddot}},
+ editorstrfo = {{editors, translators\ a předmluva}%
+ {ed.,\addabbrvspace překl\adddot\ a forew\adddot}},
+ editortraf = {{editor, translator\ a doslov}%
+ {ed.,\addabbrvspace překl\adddot\ a afterw\adddot}},
+ editorstraf = {{editors, translators\ a doslov}%
+ {ed.,\addabbrvspace překl\adddot\ a afterw\adddot}},
+ editorcoin = {{editor, commentator\ a úvod}%
+ {ed.,\addabbrvspace comm\adddot\ a introd\adddot}},
+ editorscoin = {{editors, commentators\ a úvod}%
+ {ed.,\addabbrvspace comm\adddot\ a introd\adddot}},
+ editorcofo = {{editor, commentator\ a předmluva}%
+ {ed.,\addabbrvspace comm\adddot\ a forew\adddot}},
+ editorscofo = {{editors, commentators\ a předmluva}%
+ {ed.,\addabbrvspace comm\adddot\ a forew\adddot}},
+ editorcoaf = {{editor, commentator\ a doslov}%
+ {ed.,\addabbrvspace comm\adddot\ a dosl\adddot}},
+ editorscoaf = {{editors, commentators\ a doslov}%
+ {ed.,\addabbrvspace comm\adddot\ a dosl\adddot}},
+ editoranin = {{editor, annotator\ a úvod}%
+ {ed.,\addabbrvspace anot\adddot\ a introd\adddot}},
+ editorsanin = {{editors, annotators\ a úvod}%
+ {ed.,\addabbrvspace anot\adddot\ a introd\adddot}},
+ editoranfo = {{editor, annotator\ a předmluva}%
+ {ed.,\addabbrvspace anot\adddot\ a forew\adddot}},
+ editorsanfo = {{editors, annotators\ a předmluva}%
+ {ed.,\addabbrvspace anot\adddot\ a forew\adddot}},
+ editoranaf = {{editor, annotator\ a doslov}%
+ {ed.,\addabbrvspace anot\adddot\ a dosl\adddot}},
+ editorsanaf = {{editors, annotators\ a doslov}%
+ {ed.,\addabbrvspace anot\adddot\ a dosl\adddot}},
+ editortrcoin = {{editor, překladatel, commentator\ a úvod}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a introd\adddot}},
+ editorstrcoin = {{editors, překladatelé, commentators\ a úvod}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a introd\adddot}},
+ editortrcofo = {{editor, překladatel, commentator\ a předmluva}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a forew\adddot}},
+ editorstrcofo = {{editors, překladatelé, commentators\ a předmluva}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a forew\adddot}},
+ editortrcoaf = {{editor, překladatel, commentator\ a doslov}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a dosl\adddot}},
+ editorstrcoaf = {{editors, překladatelé, commentators\ a doslov}%
+ {ed.,\addabbrvspace trans., comm\adddot\ a dosl\adddot}},
+ editortranin = {{editor, překladatel, annotator\ a úvod}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a introd\adddot}},
+ editorstranin = {{editors, překladatelé, annotators\ a úvod}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a introd\adddot}},
+ editortranfo = {{editor, překladatel, annotator\ a předmluva}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a forew\adddot}},
+ editorstranfo = {{editors, překladatelé, annotators\ a předmluva}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a forew\adddot}},
+ editortranaf = {{editor, překladatel, annotator\ a doslov}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a dosl\adddot}},
+ editorstranaf = {{editors, překladatelé, annotators\ a doslov}%
+ {ed.,\addabbrvspace trans., anot\adddot\ a dosl\adddot}},
+ translatorco = {{překladatel a komentátor}%
+ {překl\adddot\ a comm\adddot}},
+ translatorsco = {{překladatelé a komentátoři}%
+ {překl\adddot\ a comm\adddot}},
+ translatoran = {{překladatel a annotator}%
+ {překl\adddot\ a anot\adddot}},
+ translatorsan = {{překladatelé a annotators}%
+ {překl\adddot\ a anot\adddot}},
+ translatorin = {{překlad a úvod}%
+ {překl\adddot\ a introd\adddot}},
+ translatorsin = {{překlad a úvod}%
+ {překl\adddot\ a introd\adddot}},
+ translatorfo = {{překlad a předmluva}%
+ {překl\adddot\ a forew\adddot}},
+ translatorsfo = {{překlad a předmluva}%
+ {překl\adddot\ a forew\adddot}},
+ translatoraf = {{překlad a doslov}%
+ {překl\adddot\ a dosl\adddot}},
+ translatorsaf = {{překlad a doslov}%
+ {překl\adddot\ a dosl\adddot}},
+ translatorcoin = {{překlad, commentary\ a úvod}%
+ {trans., comm\adddot\ a introd\adddot}},
+ translatorscoin = {{překlad, commentary\ a úvod}%
+ {trans., comm\adddot\ a introd\adddot}},
+ translatorcofo = {{překlad, commentary\ a předmluva}%
+ {trans., comm\adddot\ a forew\adddot}},
+ translatorscofo = {{překlad, commentary\ a předmluva}%
+ {trans., comm\adddot\ a forew\adddot}},
+ translatorcoaf = {{překlad, commentary\ a doslov}%
+ {trans., comm\adddot\ a dosl\adddot}},
+ translatorscoaf = {{překlad, commentary\ a doslov}%
+ {trans., comm\adddot\ a dosl\adddot}},
+ translatoranin = {{překlad, anotace,\ a úvod}%
+ {trans., anot\adddot\ a introd\adddot}},
+ translatorsanin = {{překlad, anotace,\ a úvod}%
+ {trans., anot\adddot\ a introd\adddot}},
+ translatoranfo = {{překlad, anotace,\ a předmluva}%
+ {trans., anot\adddot\ a forew\adddot}},
+ translatorsanfo = {{překlad, anotace,\ a předmluva}%
+ {trans., anot\adddot\ a forew\adddot}},
+ translatoranaf = {{překlad, anotace,\ a doslov}%
+ {trans., anot\adddot\ a dosl\adddot}},
+ translatorsanaf = {{překlad, anotace,\ a doslov}%
+ {trans., anot\adddot\ a dosl\adddot}},
+ byauthor = {{by}{by}},
+ byeditor = {{edited by}{ed\adddotspace by}},
+ bycompiler = {{compiled by}{comp\adddotspace by}},
+ byredactor = {{redacted by}{red\adddotspace by}},
+ byfounder = {{founded by}{found\adddotspace by}},
+ bycontinuator = {{continued by}{cont\adddotspace by}},
+ bycollaborator = {{in collaboration with}{in collab\adddotspace with}}, % FIXME: unsure
+ bytranslator = {{translated \lbx@lfromlang\ by}{překl\adddot\ \lbx@sfromlang\ by}},
+ bycommentator = {{commented by}{comm\adddot\ by}},
+ byannotator = {{annotated by}{anot\adddot\ by}},
+ withcommentator = {{with a commentary by}{with a comment\adddot\ by}},
+ withannotator = {{s anotacemi od}{s anot\adddot\ od}},
+ withintroduction = {{s úvodem od}{u úv\adddot\ od}},
+ withforeword = {{s předmluvou od}{s předml\adddot\ od}},
+ withafterword = {{with an afterword by}{with an dosl\adddot\ by}},
+ byeditortr = {{edited a translated \lbx@lfromlang\ by}%
+ {ed\adddotspace a překl\adddot\ \lbx@sfromlang\ by}},
+ byeditorco = {{edited a commented by}%
+ {ed\adddotspace a kom\adddot\ by}},
+ byeditoran = {{edited a annotated by}%
+ {ed\adddotspace a anot\adddot\ by}},
+ byeditorin = {{edited, with an úvod, by}%
+ {ed.,\addabbrvspace with an introd., by}},
+ byeditorfo = {{edited, with a foreword, by}%
+ {ed.,\addabbrvspace with a forew., by}},
+ byeditoraf = {{edited, with an afterword, by}%
+ {ed.,\addabbrvspace with an afterw., by}},
+ byeditortrco = {{edited, translated \lbx@lfromlang\ a commented by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a kom\adddot\ by}},
+ byeditortran = {{edited, translated \lbx@lfromlang\ a annotated by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a anot\adddot\ by}},
+ byeditortrin = {{edited a translated \lbx@lfromlang, with an úvod, by}%
+ {ed\adddotspace a překl\adddot\ \lbx@sfromlang, with an introd., by}},
+ byeditortrfo = {{edited a translated \lbx@lfromlang, with a foreword, by}%
+ {ed\adddotspace a překl\adddot\ \lbx@sfromlang, with a forew., by}},
+ byeditortraf = {{edited a translated \lbx@lfromlang, with an afterword, by}%
+ {ed\adddotspace a překl\adddot\ \lbx@sfromlang, with an afterw., by}},
+ byeditorcoin = {{edited a commented, with an úvod, by}%
+ {ed\adddotspace a comm., with an introd., by}},
+ byeditorcofo = {{edited a commented, with a foreword, by}%
+ {ed\adddotspace a comm., with a forew., by}},
+ byeditorcoaf = {{edited a commented, with an afterword, by}%
+ {ed\adddotspace a comm., with an afterw., by}},
+ byeditoranin = {{edited a annotated, with an úvod, by}%
+ {ed\adddotspace a annot., with an introd., by}},
+ byeditoranfo = {{edited a annotated, with a foreword, by}%
+ {ed\adddotspace a annot., with a forew., by}},
+ byeditoranaf = {{edited a annotated, with an afterword, by}%
+ {ed\adddotspace a annot., with an afterw., by}},
+ byeditortrcoin = {{edited, translated \lbx@lfromlang\ a commented, with an úvod, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a comm., with an introd., by}},
+ byeditortrcofo = {{edited, translated \lbx@lfromlang\ a commented, with a foreword, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a comm., with a forew., by}},
+ byeditortrcoaf = {{edited, translated \lbx@lfromlang\ a commented, with an afterword, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a comm., with an afterw., by}},
+ byeditortranin = {{edited, translated \lbx@lfromlang\ a annotated, with an úvod, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a annot, with an introd., by}},
+ byeditortranfo = {{edited, translated \lbx@lfromlang\ a annotated, with a foreword, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a annot, with a forew., by}},
+ byeditortranaf = {{edited, translated \lbx@lfromlang\ a annotated, with an afterword, by}%
+ {ed.,\addabbrvspace překl\adddot\ \lbx@sfromlang\ a annot, with an afterw., by}},
+ bytranslatorco = {{translated \lbx@lfromlang\ a commented by}%
+ {překl\adddot\ \lbx@sfromlang\ a kom\adddot\ by}},
+ bytranslatoran = {{translated \lbx@lfromlang\ a annotated by}%
+ {překl\adddot\ \lbx@sfromlang\ a anot\adddot\ by}},
+ bytranslatorin = {{translated \lbx@lfromlang, with an úvod, by}%
+ {překl\adddot\ \lbx@sfromlang, with an introd., by}},
+ bytranslatorfo = {{translated \lbx@lfromlang, with a foreword, by}%
+ {překl\adddot\ \lbx@sfromlang, with a forew., by}},
+ bytranslatoraf = {{translated \lbx@lfromlang, with an afterword, by}%
+ {překl\adddot\ \lbx@sfromlang, with an afterw., by}},
+ bytranslatorcoin = {{translated \lbx@lfromlang\ a commented, with an úvod, by}%
+ {překl\adddot\ \lbx@sfromlang\ a comm., with an introd., by}},
+ bytranslatorcofo = {{translated \lbx@lfromlang\ a commented, with a foreword, by}%
+ {překl\adddot\ \lbx@sfromlang\ a comm., with a forew., by}},
+ bytranslatorcoaf = {{translated \lbx@lfromlang\ a commented, with an afterword, by}%
+ {překl\adddot\ \lbx@sfromlang\ a comm., with an afterw., by}},
+ bytranslatoranin = {{translated \lbx@lfromlang\ a annotated, with an úvod, by}%
+ {překl\adddot\ \lbx@sfromlang\ a annot., with an introd., by}},
+ bytranslatoranfo = {{translated \lbx@lfromlang\ a annotated, with a foreword, by}%
+ {překl\adddot\ \lbx@sfromlang\ a annot., with a forew., by}},
+ bytranslatoranaf = {{translated \lbx@lfromlang\ a annotated, with an afterword, by}%
+ {překl\adddot\ \lbx@sfromlang\ a annot., with an afterw., by}},
+ and = {{and}{and}},
+ %andothers = {{et\addabbrvspace al\adddot}{et\addabbrvspace al\adddot}},
+ andmore = {{et\addabbrvspace al\adddot}{et\addabbrvspace al\adddot}},
+ %volume = {{volume}{vol\adddot}},
+ volumes = {{volumes}{vols\adddot}},
+ %jourvol = {{volume}{vol\adddot}},
+ jourser = {{series}{ser\adddot}},
+ newseries = {{new series}{new ser\adddot}},
+ oldseries = {{old series}{old ser\adddot}},
+ %edition = {{edition}{ed\adddot}},
+ reprint = {{reprint}{repr\adddot}},
+ reprintof = {{reprint of}{repr\adddotspace of}},
+ reprintas = {{reprinted as}{rpt\adddotspace as}},
+ %page = {{page}{p\adddot}},
+ %pages = {{pages}{pp\adddot}},
+ column = {{column}{col\adddot}},
+ columns = {{columns}{cols\adddot}},
+ line = {{řádek}{ř\adddot}},
+ lines = {{řádky}{ř\adddot}},
+ verse = {{verš}{v\adddot}},
+ verses = {{verše}{v\adddot}},
+ section = {{sekce}{\S}},
+ sections = {{secce}{\S\S}},
+ paragraph = {{odstavec}{ods\adddot}},
+ paragraphs = {{odstavce}{ods\adddot}},
+ in = {{in}{in}},
+ inseries = {{in}{in}},
+ ofseries = {{of}{of}},
+ %number = {{number}{no\adddot}},
+ chapter = {{kapitola}{kap\adddot}},
+ mathesis = {{diplomová práce}{dipl\addabbrvspace práce}},
+ phdthesis = {{disertační práce}{dis\addabbrvspace práce}},
+ resreport = {{výzkumná zpráca}{výzk\adddot zpr\adddot}},
+ techreport = {{technická zpráva}{tech\adddotspace zpr\adddot}},
+ software = {{počítačový software}{soft\adddot}},
+ datacd = {{CD-ROM}{CD-ROM}},
+ audiocd = {{audio CD}{audio CD}},
+ version = {{version}{version}},
+ %url = {{address}{address}},
+ %urlseen = {{visited on}{visited on}},
+ inpress = {{in press}{in press}},
+ submitted = {{submitted}{submitted}},
+ citedas = {{henceforth cited as}{henceforth cited as}},
+ thiscite = {{especially}{esp\adddot}},
+ seenote = {{viz poznámka}{viz poz\adddot}},
+ quotedin = {{quoted in}{qtd\adddotspace in}},
+ idem = {{idem}{idem}},
+ idemsm = {{idem}{idem}},
+ idemsf = {{eadem}{eadem}},
+ idemsn = {{idem}{idem}},
+ idempm = {{eidem}{eidem}},
+ idempf = {{eaedem}{eaedem}},
+ idempn = {{eadem}{eadem}},
+ idempp = {{eidem}{eidem}},
+ ibidem = {{ibidem}{ibid\adddot}},
+ opcit = {{op\adddotspace cit\adddot}{op\adddotspace cit\adddot}},
+ loccit = {{loc\adddotspace cit\adddot}{loc\adddotspace cit\adddot}},
+ confer = {{cf\adddot}{cf\adddot}},
+ sequens = {{sq\adddot}{sq\adddot}},
+ sequentes = {{sqq\adddot}{sqq\adddot}},
+ passim = {{passim}{pass\adddot}},
+ see = {{viz}{viz}},
+ seealso = {{viz také}{viz také}},
+ backrefpage = {{citováno na straně}{cit\adddotspace na s\adddot}},
+ backrefpages = {{citováno na stranách}{cit\adddotspace na s\adddot}},
+ january = {{ledna}{led\adddot}},
+ february = {{února}{ún\adddot}},
+ march = {{března}{břez\adddot}},
+ april = {{dubna}{dub\adddot}},
+ may = {{kvetna}{květ\adddot}},
+ june = {{června}{červ\adddot}},
+ july = {{července}{čvc}},
+ august = {{srpna}{srp\adddot}},
+ september = {{září}{zář\adddot}},
+ october = {{října}{říj\adddot}},
+ november = {{listopadu}{lis\adddot}},
+ december = {{prosince}{pros\adddot}},
+ langamerican = {{Americká angličtina}{Am\adddot angl\adddot}},
+ langbrazilian = {{Brazilská portugalština}{Braz\adddot portugal\adddot}},
+ langdanish = {{Dánština}{Dán\adddot}},
+ langdutch = {{Holandština}{Hol.\adddot}},
+ langenglish = {{Angličtina}{Angl\adddot}},
+ langfrench = {{Francouzština}{Franc\adddot}},
+ langgerman = {{Němčina}{Něm\adddot}},
+ langgreek = {{Řečtina}{Řeč\adddot}},
+ langitalian = {{Italština}{Ital\adddot}},
+ langlatin = {{Latina}{Lat\adddot}},
+ langnorwegian = {{Norština}{Norš\adddot}},
+ langportuguese = {{Portugalština}{Port\adddot}},
+ langspanish = {{Šanělština}{Špaň\adddot}},
+ langswedish = {{Švédština}{Švéd\adddot}},
+ fromamerican = {{z americké Angličtiny}{z amer\adddot angl\adddot}},
+ frombrazilian = {{z Brazilské Portugalštiny}{z Braz\adddot Port\adddot}},
+ fromdanish = {{z Danštiny}{z Dán\adddot}},
+ fromdutch = {{z Holandštiny}{z Hol\adddot}},
+ fromenglish = {{z Angličtiny}{z Angl\adddot}},
+ fromfrench = {{z Francouzštiny}{z Franc\adddot}},
+ fromgerman = {{z Němčiny}{z Něm\adddot}},
+ fromgreek = {{z Řečtiny}{z Řeč\adddot}},
+ fromitalian = {{z Italštiny}{z Ital\adddot}},
+ fromlatin = {{z Latiny}{z Lat\adddot}},
+ fromnorwegian = {{z Norštiny}{z Nor\adddot}},
+ fromportuguese = {{z Portugalštiny}{z Portuguese}},
+ fromspanish = {{ze Španělštiny}{ze Špaň\adddot}},
+ fromswedish = {{ze Švédštiny}{ze Švéd\adddot}},
+ countryde = {{Německo}{DE}},
+ countryeu = {{European Union}{EU}},
+ countryep = {{European Union}{EP}},
+ countryfr = {{Francie}{FR}},
+ countryuk = {{Velká Británie}{GB}},
+ countryus = {{Spojené Státy Americké}{US}},
+ patent = {{patent}{pat\adddot}},
+ patentde = {{German patent}{German pat\adddot}},
+ patenteu = {{European patent}{European pat\adddot}},
+ patentfr = {{French patent}{French pat\adddot}},
+ patentuk = {{British patent}{British pat\adddot}},
+ patentus = {{U.S\adddotspace patent}{U.S\adddotspace pat\adddot}},
+ patreq = {{patent request}{pat\adddot\ req\adddot}},
+ patreqde = {{German patent request}{German pat\adddot\ req\adddot}},
+ patreqeu = {{European patent request}{European pat\adddot\ req\adddot}},
+ patreqfr = {{French patent request}{French pat\adddot\ req\adddot}},
+ patrequk = {{British patent request}{British pat\adddot\ req\adddot}},
+ patrequs = {{U.S\adddotspace patent request}{U.S\adddotspace pat\adddot\ req\adddot}},
+ file = {{soubor}{soub\adddot}},
+ library = {{knihovna}{knih\adddot}},
+ abstract = {{abstrakt}{abst\adddot}},
+ annotation = {{anotace}{anot\adddot}},
+}
+
+
+\endinput