aboutsummaryrefslogtreecommitdiff
path: root/src/gettext.scm
diff options
context:
space:
mode:
Diffstat (limited to 'src/gettext.scm')
-rw-r--r--src/gettext.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/gettext.scm b/src/gettext.scm
new file mode 100644
index 0000000..a60bd59
--- /dev/null
+++ b/src/gettext.scm
@@ -0,0 +1,29 @@
1;;;; This file is part of gettext interface for guile.
2;;;; Copyright (C) 2004, 2007 Sergey Poznyakoff
3;;;;
4;;;; This program is free software; you can redistribute it and/or modify it
5;;;; under the terms of the GNU General Public License as published by the
6;;;; Free Software Foundation; either version 3 of the License, or (at your
7;;;; option) any later version.
8;;;;
9;;;; This program is distributed in the hope that it will be useful,
10;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12;;;; GNU General Public License for more details.
13;;;;
14;;;; You should have received a copy of the GNU General Public License along
15;;;; with this program. If not, see <http://www.gnu.org/licenses/>.
16
17
18(define-module (gamma gettext))
19
20(define (_ msgid)
21 (gettext msgid))
22
23(define (N_ msgid)
24 msgid)
25
26(export _)
27(export N_)
28
29;;;; EOF

Return to:

Send suggestions and report system problems to the System administrator.