summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-20 11:09:27 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-20 12:22:58 (EST)
commita0c63d5edefff61d6b99cff5f3382d72de231d7c (patch)
tree1e6e0041716084e49f3fe8bdb8ab9207359370d4 /src
parent1546a01b88a9f7f0120c42dd4739b36acc2bd216 (diff)
downloadmarquee-a0c63d5edefff61d6b99cff5f3382d72de231d7c.zip
marquee-a0c63d5edefff61d6b99cff5f3382d72de231d7c.tar.gz
marquee-a0c63d5edefff61d6b99cff5f3382d72de231d7c.tar.bz2
about:marquee: Internationalize
Diffstat (limited to 'src')
-rw-r--r--src/schemes/about/marquee.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/schemes/about/marquee.c b/src/schemes/about/marquee.c
index 4d9aa23..9b21d62 100644
--- a/src/schemes/about/marquee.c
+++ b/src/schemes/about/marquee.c
@@ -25,6 +25,7 @@
#include <webkit2/webkit2.h>
#include "../../application.h"
+#include "../../i18n.h"
#include "../about.h"
#define DOCUMENT \
@@ -70,6 +71,6 @@ mq_about_marquee_response(MqApplication *application, GHashTable *query,
mq_about_response(request, g_strdup_printf(DOCUMENT,
gtk_widget_get_default_direction() ==
GTK_TEXT_DIR_RTL ? "rtl" : "ltr",
- "DANGER", "DO NOT PRESS"));
+ _("DANGER"), _("DO NOT PRESS")));
}
}