fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add DAISY HTML builder.
[librarian.git]
/
src
/
librarian
/
util.py
diff --git
a/src/librarian/util.py
b/src/librarian/util.py
index
5c9fbc2
..
2c6b773
100644
(file)
--- a/
src/librarian/util.py
+++ b/
src/librarian/util.py
@@
-128,3
+128,14
@@
def roman_to_int(input):
def makedirs(path):
if not os.path.isdir(path):
os.makedirs(path)
def makedirs(path):
if not os.path.isdir(path):
os.makedirs(path)
+
+
+def get_translation(language):
+ import gettext
+ from .functions import lang_code_3to2
+
+ return gettext.translation(
+ 'messages',
+ localedir=os.path.join(os.path.dirname(__file__), 'locale'),
+ languages=[lang_code_3to2(language)],
+ )