summaryrefslogtreecommitdiff
path: root/source/include/intl.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-03 01:42:53 +0000
committerTim Potter <tpot@samba.org>2003-10-03 01:42:53 +0000
commit351d16956d8125bc689ca84adcb71e0a57d6b7cc (patch)
treef2cced0b70c191827497d1cf1d6a1339122bfd9e /source/include/intl.h
parent6aada3bd3e08abedc4c043d1ceb667ca73f8cd62 (diff)
downloadsamba-351d16956d8125bc689ca84adcb71e0a57d6b7cc.tar.gz
Moving towards better i18n support in SWAT. This commit contains a
bunch of updates to bug 413 from Monyo: 1) pick up proper strings to call msg strings for example to add strings in wizard menu in web/swat.c, web/statuspage.c and param/loadparm.c. 2) define N_() macro in include/intl.h to pick up some strings in param/loadparm.c 3) quote all name and value tag with '"' For example in swat.c:720 the "Edit Parameter Values" string is displayd only as "Edit" because value tag is not quoted like: value=Edit Parameter Values These tags should be quoted though it sometimes works well without quotation. 4) modify the msg strings not to contain HTML tags or other non-message strings. For example dprintf(_("test\n")); is modified to dprintf("%s\n", _("test"));
Diffstat (limited to 'source/include/intl.h')
-rw-r--r--source/include/intl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/include/intl.h b/source/include/intl.h
index 5b56d9aa2c9..01fa3bad976 100644
--- a/source/include/intl.h
+++ b/source/include/intl.h
@@ -22,3 +22,4 @@
/* ideally we would have a static mapping, but that precludes
dynamic loading. This is a reasonable compromise */
#define _(x) lang_msg_rotate(x)
+#define N_(x) (x)