Guest User

Untitled

a guest
Jul 11th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.91 KB | None | 0 0
  1. %----------------------------------------
  2. % LOCALES
  3. %----------------------------------------
  4. \def\upm@document@lang@english{%
  5.   \gdef\upm@lang@@{\message{**** upmethodology-document is using English language ****}}%
  6.   \gdef\upm@lang@@lang@{english}%
  7.   \gdef\upm@lang@project{Project}%
  8.   \gdef\upm@lang@document{Document}%
  9.   \gdef\upm@lang@docref{Reference}%
  10.   \gdef\upm@lang@lastupdate{Last Update}%
  11.   \gdef\upm@lang@lastupdate@short{Updated}%
  12.   \gdef\upm@lang@document@summary{Document Summary}%
  13.   \gdef\upm@lang@status{Status}%
  14.   \gdef\upm@lang@document@authors{Authors}%
  15.   \gdef\upm@lang@document@informed{Informed People}%
  16.   \gdef\upm@lang@document@validators{Validators}%
  17.   \gdef\upm@lang@document@names{Names}%
  18.   \gdef\upm@lang@document@emails{Emails}%
  19.   \gdef\upm@lang@document@initials{Initials}%
  20. }
  21. \def\upm@document@lang@french{%
  22.   \gdef\upm@lang@@{\message{**** upmethodology-document is using French language ****}}%
  23.   \gdef\upm@lang@@lang@{french}%
  24.   \gdef\upm@lang@project{Projet}%
  25.   \gdef\upm@lang@document{Document}%
  26.   \gdef\upm@lang@docref{R\'ef\'erence}%
  27.   \gdef\upm@lang@lastupdate{Derni\`ere modification}%
  28.   \gdef\upm@lang@lastupdate@short{Modifi\'e}%
  29.   \gdef\upm@lang@document@summary{Synoptique}%
  30.   \gdef\upm@lang@status{Statut}%
  31.   \gdef\upm@lang@document@authors{Auteurs}%
  32.   \gdef\upm@lang@document@informed{Pour information}%
  33.   \gdef\upm@lang@document@validators{Validateurs}%
  34.   \gdef\upm@lang@document@names{Noms}%
  35.   \gdef\upm@lang@document@emails{Emails}%
  36.   \gdef\upm@lang@document@initials{Initiales}%
  37. }
  38.  
  39. \def\upm@document@lang@spanish{%
  40.   \gdef\upm@lang@@{\message{**** upmethodology-document is using Spanish language ****}}%
  41.   \gdef\upm@lang@@lang@{spanish}%
  42.   \gdef\upm@lang@project{Proyecto}%
  43.   \gdef\upm@lang@document{Documento}%
  44.   \gdef\upm@lang@docref{Referencia}%
  45.   \gdef\upm@lang@lastupdate{\'Ultima modificaci\'on}%
  46.   \gdef\upm@lang@lastupdate@short{Modificado}%
  47.   \gdef\upm@lang@document@summary{Sinopsis}%
  48.   \gdef\upm@lang@status{Estado}%
  49.   \gdef\upm@lang@document@authors{Autores}%
  50.   \gdef\upm@lang@document@informed{Personas informadas}%
  51.   \gdef\upm@lang@document@validators{Validadores}%
  52.   \gdef\upm@lang@document@names{Nombres}%
  53.   \gdef\upm@lang@document@emails{Emails}%
  54.   \gdef\upm@lang@document@initials{Iniciales}%
  55. }
  56.  
  57.  
  58. %----------------------------------------
  59. % OPTIONS
  60. %----------------------------------------
  61. \newif\ifupm@document@langset\upm@document@langsetfalse
  62. \DeclareOption{spanish}{%
  63.   \upm@document@lang@spanish
  64.   \upm@document@langsettrue
  65. }
  66. \DeclareOption{french}{%
  67.   \upm@document@lang@french
  68.   \upm@document@langsettrue
  69. }
  70. \DeclareOption{francais}{%
  71.   \upm@document@lang@french
  72.   \upm@document@langsettrue
  73. }
  74. \DeclareOption{english}{%
  75.   \upm@document@lang@english
  76. }
  77. \ExecuteOptions{english}
  78. \ProcessOptions
  79.  
  80. \upm@lang@@
  81.  
  82. \ifupm@document@langset\else\PassOptionsToPackage{english}{babel}\fi
  83. \RequirePackage{babel}
  84. \RequirePackage{ifthen}
Add Comment
Please, Sign In to add comment