Move to kernel style SPDX license identifiers
[babeltrace.git] / tests / utils / python / tap / i18n.py
CommitLineData
0235b0db
MJ
1# SPDX-License-Identifier: BSD-2-Clause
2#
b85894a3
MJ
3# Copyright (c) 2016, Matt Layman
4
5import gettext
6import os
7
8localedir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'locale')
9translate = gettext.translation('tappy', localedir, fallback=True)
10_ = translate.gettext
This page took 0.047408 seconds and 4 git commands to generate.