%\iffalse
%<*package>
%% \CharacterTable
%%  {Upper-case    \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
%%   Lower-case    \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
%%   Digits        \0\1\2\3\4\5\6\7\8\9
%%   Exclamation   \!     Double quote  \"     Hash (number) \#
%%   Dollar        \$     Percent       \%     Ampersand     \&
%%   Acute accent  \'     Left paren    \(     Right paren   \)
%%   Asterisk      \*     Plus          \+     Comma         \,
%%   Minus         \-     Point         \.     Solidus       \/
%%   Colon         \:     Semicolon     \;     Less than     \<
%%   Equals        \=     Greater than  \>     Question mark \?
%%   Commercial at \@     Left bracket  \[     Backslash     \\
%%   Right bracket \]     Circumflex    \^     Underscore    \_
%%   Grave accent  \`     Left brace    \{     Vertical bar  \|
%%   Right brace   \}     Tilde         \~}
%</package>
%\fi
% \iffalse
% Doc-Source file to use with LaTeX2e
% Copyright (C) 2018-2022 Nicola Talbot, all rights reserved.
% (New maintainer add relevant lines here.)
% \fi
% \iffalse
%<*driver>
\documentclass{ltxdoc}

\usepackage{alltt}
\usepackage{graphicx}
\usepackage{fontspec}
\usepackage[colorlinks,
            pdfauthor={Nicola L.C. Talbot},
            pdftitle={datetime2.sty Icelandic Module}]{hyperref}

\setmainfont{Liberation Serif}
\setmonofont{Liberation Mono}

\CheckSum{300}

\setcounter{IndexColumns}{2}

\newcommand*{\sty}[1]{\textsf{#1}}
\newcommand*{\opt}[1]{\texttt{#1}}

\RecordChanges
\PageIndex
\CodelineNumbered

\begin{document}
\DocInput{datetime2-icelandic.dtx}
\end{document}
%</driver>
%\fi
%
%\MakeShortVerb{"}
%
%\title{Icelandic Module for datetime2 Package}
%\author{Nicola L. C. Talbot (inactive)}
%\date{2022-12-06 (v1.2)}
%\maketitle
%
%This module is currently unmaintained and may be subject to change.
%If you want to volunteer to take over maintenance, contact me at
%\url{https://www.dickimaw-books.com/contact.html}
%
%\begin{abstract}
%This is the Icelandic language module for the \sty{datetime2}
%package. If you want to use the settings in this module you must
%install it in addition to installing \sty{datetime2}. If you use
%\sty{babel} or \sty{polyglossia}, you will need this module to
%prevent them from redefining \cs{today}. The \sty{datetime2}
% \opt{useregional} setting must be set to "text" or "numeric"
% for the language styles to be set.
% Alternatively, you can set the style in the document using
% \cs{DTMsetstyle}, but this may be changed by \cs{date}\meta{language}
% depending on the value of the \opt{useregional} setting.
%\end{abstract}
%
%I've copied the date style from \texttt{babel-icelandic}'s \cs{today}.
%
%I don't know if these settings are correct as I can't speak Icelandic.
%In particular, I don't know if the "icelandic" time style is
%correct. Currently this just uses the "default" time style. Please
%be aware that this may change. Whoever takes over maintanance
%of this module may can change it as appropriate.
%
%The new maintainer should add the line:
%\begin{verbatim}
% The Current Maintainer of this work is Name.
%\end{verbatim}
%to the preamble part in \texttt{datetime2-icelandic.ins} where Name
%is the name of the maintainer(s) and replace
%the `inactive' status to `maintained'.
%
%Currently there is only a regionless style.
%
%\StopEventually{%
%\clearpage
%\phantomsection
%\PrintChanges
%\PrintIndex}
%\section{The Code}
%\iffalse
%    \begin{macrocode}
%<*datetime2-icelandic-utf8.ldf>
%    \end{macrocode}
%\fi
%\subsection{UTF-8}
%This file contains the settings that use UTF-8 characters. This
%file is loaded if XeLaTeX or LuaLaTeX are used. Please make sure
%your text editor is set to UTF-8 if you want to view this code.
%\changes{1.0}{2015-03-30}{Initial release}
% Identify module
%    \begin{macrocode}
\ProvidesDateTimeModule{icelandic-utf8}[2022/12/06 v1.2]
%    \end{macrocode}
%\begin{macro}{\DTMicelandicordinal}
%    \begin{macrocode}
\newcommand*{\DTMicelandicordinal}[1]{%
  \number#1.%
}
%    \end{macrocode}
%\end{macro}
%
%
%\begin{macro}{\DTMicelandicmonthname}
% Icelandic month names.
%\changes{1.2}{2022-12-06}{corrected desember}
%    \begin{macrocode}
\newcommand*{\DTMicelandicmonthname}[1]{%
  \ifcase#1
  \or
  janúar%
  \or
  febrúar%
  \or
  mars%
  \or
  apríl%
  \or
  maí%
  \or
  júní%
  \or
  júlí%
  \or
  ágúst%
  \or
  september%
  \or
  október%
  \or
  nóvember%
  \or
  desember%
  \fi
}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicMonthname}
% As above but capitalize.
%\changes{1.2}{2022-12-06}{corrected Desember}
%    \begin{macrocode}
\newcommand*{\DTMicelandicMonthname}[1]{%
  \ifcase#1
  \or
  Janúar%
  \or
  Febrúar%
  \or
  Mars%
  \or
  Apríl%
  \or
  Maí%
  \or
  Júní%
  \or
  Júlí%
  \or
  Ágúst%
  \or
  September%
  \or
  Október%
  \or
  Nóvember%
  \or
  Desember%
  \fi
}
%    \end{macrocode}
%\end{macro}
%
%If abbreviated dates are supported, short month names should be
%likewise provided.
%
%\iffalse
%    \begin{macrocode}
%</datetime2-icelandic-utf8.ldf>
%    \end{macrocode}
%\fi
%\iffalse
%    \begin{macrocode}
%<*datetime2-icelandic-ascii.ldf>
%    \end{macrocode}
%\fi
%\subsection{ASCII}
%This file contains the settings that use \LaTeX\ commands for
%non-ASCII characters. This should be input if neither XeLaTeX nor
%LuaLaTeX are used. Even if the user has loaded \sty{inputenc} with
%"utf8", this file should still be used not the
%\texttt{datetime2-icelandic-utf8.ldf} file as the non-ASCII
%characters are made active in that situation and would need
%protecting against expansion.
%\changes{1.0}{2015-03-30}{Initial release}
% Identify module
%    \begin{macrocode}
\ProvidesDateTimeModule{icelandic-ascii}[2022/12/06 v1.2]
%    \end{macrocode}
%
%If abbreviated dates are supported, short month names should be
%likewise provided.
%\begin{macro}{\DTMicelandicordinal}
%    \begin{macrocode}
\newcommand*{\DTMicelandicordinal}[1]{%
  \number#1.%
}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicmonthname}
% Icelandic month names.
%\changes{1.2}{2022-12-06}{corrected desember}
%    \begin{macrocode}
\newcommand*{\DTMicelandicmonthname}[1]{%
  \ifcase#1
  \or
  jan\protect\'uar%
  \or
  febr\protect\'uar%
  \or
  mars%
  \or
  apr\protect\'il%
  \or
  ma\protect\'i%
  \or
  j\protect\'un\protect\'i%
  \or
  j\protect\'ul\protect\'i%
  \or
  \protect\'ag\protect\'ust%
  \or
  september%
  \or
  okt\protect\'ober%
  \or
  n\protect\'ovember%
  \or
  desember%
  \fi
}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicMonthname}
%\changes{1.2}{2022-12-06}{corrected Desember}
% As above but capitalize.
%    \begin{macrocode}
\newcommand*{\DTMicelandicMonthname}[1]{%
  \ifcase#1
  \or
  Jan\protect\'uar%
  \or
  Febr\protect\'uar%
  \or
  Mars%
  \or
  Apr\protect\'il%
  \or
  Ma\protect\'i%
  \or
  J\protect\'un\protect\'i%
  \or
  J\protect\'ul\protect\'i%
  \or
  \protect\'Ag\protect\'ust%
  \or
  September%
  \or
  Okt\protect\'ober%
  \or
  N\protect\'ovember%
  \or
  Desember%
  \fi
}
%    \end{macrocode}
%\end{macro}
%
%
%\iffalse
%    \begin{macrocode}
%</datetime2-icelandic-ascii.ldf>
%    \end{macrocode}
%\fi
%
%\subsection{Main Icelandic Module (\texttt{datetime2-icelandic.ldf})}
%\changes{1.0}{2015-03-30}{Initial release}
%
%\iffalse
%    \begin{macrocode}
%<*datetime2-icelandic.ldf>
%    \end{macrocode}
%\fi
%
% Identify Module
%    \begin{macrocode}
\ProvidesDateTimeModule{icelandic}[2022/12/06 v1.2]
%    \end{macrocode}
% Need to find out if XeTeX or LuaTeX are being used.
%\changes{1.2}{2022-12-06}{switched to iftex}
%    \begin{macrocode}
\RequirePackage{iftex}
%    \end{macrocode}
% XeTeX and LuaTeX natively support UTF-8, so load
% \texttt{icelandic-utf8} if either of those engines are used
% otherwise load \texttt{icelandic-ascii}.
% Modern LaTeX kernels have much better support for UTF-8, so
% a test could also be added to determine if \cs{inputencoding} is
% \texttt{utf8}.
%    \begin{macrocode}
\ifxetex
 \RequireDateTimeModule{icelandic-utf8}
\else
 \ifluatex
   \RequireDateTimeModule{icelandic-utf8}
 \else
   \RequireDateTimeModule{icelandic-ascii}
 \fi
\fi
%    \end{macrocode}
%
% Define the \texttt{icelandic} style.
% The time style is the same as the "default" style
% provided by \sty{datetime2}. This may need correcting. For
% example, if a 12 hour style similar to the "englishampm" (from the
% "english-base" module) is required. 
%
% Allow the user a way of configuring the "icelandic" and
% "icelandic-numeric" styles. This doesn't use the package wide
% separators such as
% \cs{dtm@datetimesep} in case other date formats are also required.
%\begin{macro}{\DTMicelandicdaymonthsep}
% The separator between the day and month for the text format.
%    \begin{macrocode}
\newcommand*{\DTMicelandicdaymonthsep}{%
 \DTMtexorpdfstring{\protect~}{\space}%
}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicmonthyearsep}
% The separator between the month and year for the text format.
%    \begin{macrocode}
\newcommand*{\DTMicelandicmonthyearsep}{\space}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicdatetimesep}
% The separator between the date and time blocks in the full format
% (either text or numeric).
%    \begin{macrocode}
\newcommand*{\DTMicelandicdatetimesep}{\space}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandictimezonesep}
% The separator between the time and zone blocks in the full format
% (either text or numeric).
%    \begin{macrocode}
\newcommand*{\DTMicelandictimezonesep}{\space}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandicdatesep}
% The separator for the numeric date format.
%    \begin{macrocode}
\newcommand*{\DTMicelandicdatesep}{/}
%    \end{macrocode}
%\end{macro}
%
%\begin{macro}{\DTMicelandictimesep}
% The separator for the numeric time format.
%    \begin{macrocode}
\newcommand*{\DTMicelandictimesep}{:}
%    \end{macrocode}
%\end{macro}
%
%Provide keys that can be used in \cs{DTMlangsetup} to set these
%separators.
%    \begin{macrocode}
\DTMdefkey{icelandic}{daymonthsep}{\renewcommand*{\DTMicelandicdaymonthsep}{#1}}
\DTMdefkey{icelandic}{monthyearsep}{\renewcommand*{\DTMicelandicmonthyearsep}{#1}}
\DTMdefkey{icelandic}{datetimesep}{\renewcommand*{\DTMicelandicdatetimesep}{#1}}
\DTMdefkey{icelandic}{timezonesep}{\renewcommand*{\DTMicelandictimezonesep}{#1}}
\DTMdefkey{icelandic}{datesep}{\renewcommand*{\DTMicelandicdatesep}{#1}}
\DTMdefkey{icelandic}{timesep}{\renewcommand*{\DTMicelandictimesep}{#1}}
%    \end{macrocode}
%
% TODO: provide a boolean key to switch between full and abbreviated
% formats if appropriate. (I don't know how the date should be
% abbreviated.)
%
% Define a boolean key that determines if the time zone mappings
% should be used.
%    \begin{macrocode}
\DTMdefboolkey{icelandic}{mapzone}[true]{}
%    \end{macrocode}
% The default is to use mappings.
%    \begin{macrocode}
\DTMsetbool{icelandic}{mapzone}{true}
%    \end{macrocode}
%
% Define a boolean key that determines if the day of month should be
% displayed.
%    \begin{macrocode}
\DTMdefboolkey{icelandic}{showdayofmonth}[true]{}
%    \end{macrocode}
% The default is to show the day of month.
%    \begin{macrocode}
\DTMsetbool{icelandic}{showdayofmonth}{true}
%    \end{macrocode}
%
% Define a boolean key that determines if the year should be
% displayed.
%    \begin{macrocode}
\DTMdefboolkey{icelandic}{showyear}[true]{}
%    \end{macrocode}
% The default is to show the year.
%    \begin{macrocode}
\DTMsetbool{icelandic}{showyear}{true}
%    \end{macrocode}
%
% Define the "icelandic" style. (TODO: implement day of week?)
%    \begin{macrocode}
\DTMnewstyle
 {icelandic}% label
 {% date style
   \renewcommand*\DTMdisplaydate[4]{%
     \DTMifbool{icelandic}{showdayofmonth}
     {\DTMicelandicordinal{##3}\DTMicelandicdaymonthsep}%
     {}%
     \DTMicelandicmonthname{##2}%
     \DTMifbool{icelandic}{showyear}%
     {%
       \DTMicelandicmonthyearsep
       \number##1
     }%
     {}%
   }%
   \renewcommand*\DTMDisplaydate[4]{%
     \DTMifbool{icelandic}{showdayofmonth}
     {%
       \DTMicelandicordinal{##3}\DTMicelandicdaymonthsep
       \DTMicelandicmonthname{##2}%
     }%
     {%
       \DTMicelandicMonthname{##2}%
     }%
     \DTMifbool{icelandic}{showyear}%
     {%
       \DTMicelandicmonthyearsep
       \number##1
     }%
     {}%
   }%
 }%
 {% time style (use default)
   \DTMsettimestyle{default}%
 }%
 {% zone style
   \DTMresetzones
   \DTMicelandiczonemaps
   \renewcommand*{\DTMdisplayzone}[2]{%
     \DTMifbool{icelandic}{mapzone}%
     {\DTMusezonemapordefault{##1}{##2}}%
     {%
       \ifnum##1<0\else+\fi\DTMtwodigits{##1}%
       \ifDTMshowzoneminutes\DTMicelandictimesep\DTMtwodigits{##2}\fi
     }%
   }%
 }%
 {% full style
   \renewcommand*{\DTMdisplay}[9]{%
    \ifDTMshowdate
     \DTMdisplaydate{##1}{##2}{##3}{##4}%
     \DTMicelandicdatetimesep
    \fi
    \DTMdisplaytime{##5}{##6}{##7}%
    \ifDTMshowzone
     \DTMicelandictimezonesep
     \DTMdisplayzone{##8}{##9}%
    \fi
   }%
   \renewcommand*{\DTMDisplay}[9]{%
    \ifDTMshowdate
     \DTMDisplaydate{##1}{##2}{##3}{##4}%
     \DTMicelandicdatetimesep
    \fi
    \DTMdisplaytime{##5}{##6}{##7}%
    \ifDTMshowzone
     \DTMicelandictimezonesep
     \DTMdisplayzone{##8}{##9}%
    \fi
   }%
 }%
%    \end{macrocode}
%
% Define numeric style.
%    \begin{macrocode}
\DTMnewstyle
 {icelandic-numeric}% label
 {% date style
    \renewcommand*\DTMdisplaydate[4]{%
      \DTMifbool{icelandic}{showdayofmonth}%
      {%
        \number##3 % space intended
        \DTMicelandicdatesep
      }%
      {}%
      \number##2 % space intended
      \DTMifbool{icelandic}{showyear}%
      {%
        \DTMicelandicdatesep
        \number##1 % space intended
      }%
      {}%
    }%
    \renewcommand*{\DTMDisplaydate}{\DTMdisplaydate}%
 }%
 {% time style
    \renewcommand*\DTMdisplaytime[3]{%
      \number##1 % space intended
      \DTMicelandictimesep\DTMtwodigits{##2}%
      \ifDTMshowseconds\DTMicelandictimesep\DTMtwodigits{##3}\fi
    }%
 }%
 {% zone style
   \DTMresetzones
   \DTMicelandiczonemaps
   \renewcommand*{\DTMdisplayzone}[2]{%
     \DTMifbool{icelandic}{mapzone}%
     {\DTMusezonemapordefault{##1}{##2}}%
     {%
       \ifnum##1<0\else+\fi\DTMtwodigits{##1}%
       \ifDTMshowzoneminutes\DTMicelandictimesep\DTMtwodigits{##2}\fi
     }%
   }%
 }%
 {% full style
   \renewcommand*{\DTMdisplay}[9]{%
    \ifDTMshowdate
     \DTMdisplaydate{##1}{##2}{##3}{##4}%
     \DTMicelandicdatetimesep
    \fi
    \DTMdisplaytime{##5}{##6}{##7}%
    \ifDTMshowzone
     \DTMicelandictimezonesep
     \DTMdisplayzone{##8}{##9}%
    \fi
   }%
   \renewcommand*{\DTMDisplay}{\DTMdisplay}%
 }
%    \end{macrocode}
%
%\begin{macro}{\DTMicelandiczonemaps}
% The time zone mappings are set through this command, which can be
% redefined if extra mappings are required or mappings need to be
% removed.
%    \begin{macrocode}
\newcommand*{\DTMicelandiczonemaps}{%
  \DTMdefzonemap{00}{00}{GMT}%
}
%    \end{macrocode}
%\end{macro}

% Switch style according to the \opt{useregional} setting.
%    \begin{macrocode}
\DTMifcaseregional
{}% do nothing
{\DTMsetstyle{icelandic}}
{\DTMsetstyle{icelandic-numeric}}
%    \end{macrocode}
%
% Redefine \cs{dateicelandic} (or \cs{date}\meta{dialect}) to prevent
% \sty{babel} from resetting \cs{today}. (For this to work,
% \sty{babel} must already have been loaded if it's required.)
%\changes{1.1}{2018-04-25}{removed spurious space}
%    \begin{macrocode}
\ifcsundef{date\CurrentTrackedDialect}
{%
  \ifundef\dateicelandic
  {% do nothing
  }%
  {%
    \def\dateicelandic{%
      \DTMifcaseregional
      {}% do nothing
      {\DTMsetstyle{icelandic}}%
      {\DTMsetstyle{icelandic-numeric}}%
    }%
  }%
}%
{%
  \csdef{date\CurrentTrackedDialect}{%
    \DTMifcaseregional
    {}% do nothing
    {\DTMsetstyle{icelandic}}%
    {\DTMsetstyle{icelandic-numeric}}%
  }%
}%
%    \end{macrocode}
%\iffalse
%    \begin{macrocode}
%</datetime2-icelandic.ldf>
%    \end{macrocode}
%\fi
%\Finale
\endinput