summaryrefslogtreecommitdiff
path: root/glib/ggettext.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-01 15:11:49 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-01 15:11:49 -0500
commitadf892e96af403b8950dff1a370e4270ffaebc62 (patch)
tree43c4f7c21ae86c8540a75c275bba19c3227c7d64 /glib/ggettext.c
parent701f00f12515dfad2092842f34ccbf11679406e3 (diff)
downloadglib-adf892e96af403b8950dff1a370e4270ffaebc62.tar.gz
Annotate all examples with their language
The C ones, at least.
Diffstat (limited to 'glib/ggettext.c')
-rw-r--r--glib/ggettext.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/ggettext.c b/glib/ggettext.c
index 012dcff7a..d4402f9ba 100644
--- a/glib/ggettext.c
+++ b/glib/ggettext.c
@@ -476,7 +476,7 @@ g_dngettext (const gchar *domain,
* <filename>glib/gi18n.h</filename>. For use in a library, you must include
* <filename>glib/gi18n-lib.h</filename> after defining the %GETTEXT_PACKAGE
* macro suitably for your library:
- * |[
+ * |[<!-- language="C" -->
* #define GETTEXT_PACKAGE "gtk20"
* #include <glib/gi18n-lib.h>
* ]|
@@ -542,7 +542,7 @@ g_dngettext (const gchar *domain,
* used as a context. This is mainly useful for short strings which
* may need different translations, depending on the context in which
* they are used.
- * |[
+ * |[<!-- language="C" -->
* label1 = C_("Navigation", "Back");
* label2 = C_("Body part", "Back");
* ]|
@@ -564,7 +564,7 @@ g_dngettext (const gchar *domain,
* where the translated strings can't be directly used, e.g. in string
* array initializers. To get the translated string, call gettext()
* at runtime.
- * |[
+ * |[<!-- language="C" -->
* {
* static const char *messages[] = {
* N_("some very meaningful message"),
@@ -593,7 +593,7 @@ g_dngettext (const gchar *domain,
* be directly used, e.g. in string array initializers. To get the
* translated string, you should call g_dpgettext2() at runtime.
*
- * |[
+ * |[<!-- language="C" -->
* {
* static const char *messages[] = {
* NC_("some context", "some very meaningful message"),