1Git::I18N(3) User Contributed Perl Documentation Git::I18N(3)
2
3
4
6 Git::I18N - Perl interface to Git's Gettext localizations
7
9 use Git::I18N;
10
11 print __("Welcome to Git!\n");
12
13 printf __("The following error occurred: %s\n"), $error;
14
16 Git's internal Perl interface to gettext via Locale::Messages. If
17 Locale::Messages can't be loaded (it's not a core module) we provide
18 stub passthrough fallbacks.
19
20 This is a distilled interface to gettext, see "info '(gettext)Perl'"
21 for the full interface. This module implements only a small part of it.
22
24 __($)
25 Locale::Messages's gettext function if all goes well, otherwise our
26 passthrough fallback function.
27
29 AEvar Arnfjoerd` Bjarmason <avarab@gmail.com>
30
32 Copyright 2010 AEvar Arnfjoerd` Bjarmason <avarab@gmail.com>
33
34
35
36perl v5.16.3 2013-06-10 Git::I18N(3)