From 01849f4046f7abc55a29940b87620ab192b03b62 Mon Sep 17 00:00:00 2001 From: finga Date: Fri, 28 Feb 2025 12:19:42 +0100 Subject: [PATCH] Set languages via package options To define the languages for the dictionary the package options primary and secondary have to be set. --- CHANGELOG.md | 2 ++ dictionary.sty | 13 +++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd647fb..89b71d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,5 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Set the languages of the dictionary by using the package options + `primary` and `secondary`. - Create the `dictionary` environment where the `\entry{word}{description}` command can be used. diff --git a/dictionary.sty b/dictionary.sty index f4ebbd2..0d612d7 100644 --- a/dictionary.sty +++ b/dictionary.sty @@ -4,6 +4,15 @@ \RequirePackage{babel} \RequirePackage{datatool} +\DeclareKeys[dictionary]{ + primary.store = \@dictionary@primary, + secondary.store = \@dictionary@secondary +} + +\ProcessKeyOptions[dictionary] + +\PassOptionsToPackage{\@dictionary@primary,\@dictionary@secondary}{babel} + \newcommand{\entry}[2]{% \DTLnewrow{dictionary}% \DTLnewdbentry{dictionary}{word}{#1}% @@ -16,6 +25,6 @@ \DTLsort{word}{dictionary}% \scriptsize% \DTLforeach*{dictionary}{\word=word,\translation=translation}{% - \selectlanguage{vietnamese}\textbf{\word:} \selectlanguage{naustrian}\translation\\}% - \selectlanguage{vietnamese}% + \selectlanguage{\@dictionary@primary}\textbf{\word:} \selectlanguage{\@dictionary@secondary}\translation\\}% + \selectlanguage{\@dictionary@primary}% }