diff options
author | rbuj <[email protected]> | 2021-02-17 11:05:40 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-06 23:57:46 +0100 |
commit | 8cb3a02a26c03e57d064bd03319e34b6930ac3f5 (patch) | |
tree | bfc7ff6fd0bb482bac370808259004aa3ce8b00c /src | |
parent | bc5c7f0bc2db56fbc8475eab9b651b8a77effe91 (diff) | |
download | marco-8cb3a02a26c03e57d064bd03319e34b6930ac3f5.tar.bz2 marco-8cb3a02a26c03e57d064bd03319e34b6930ac3f5.tar.xz |
i18n: Use glib's gettext support macros
Diffstat (limited to 'src')
-rw-r--r-- | src/core/bell.c | 2 | ||||
-rw-r--r-- | src/core/core.c | 2 | ||||
-rw-r--r-- | src/core/delete.c | 2 | ||||
-rw-r--r-- | src/core/display.c | 2 | ||||
-rw-r--r-- | src/core/errors.c | 1 | ||||
-rw-r--r-- | src/core/keybindings.c | 2 | ||||
-rw-r--r-- | src/core/main.c | 2 | ||||
-rw-r--r-- | src/core/prefs.c | 2 | ||||
-rw-r--r-- | src/core/screen.c | 2 | ||||
-rw-r--r-- | src/core/session.c | 1 | ||||
-rw-r--r-- | src/core/util.c | 2 | ||||
-rw-r--r-- | src/core/window-props.c | 2 | ||||
-rw-r--r-- | src/core/window.c | 2 | ||||
-rw-r--r-- | src/core/xprops.c | 2 | ||||
-rw-r--r-- | src/include/util.h | 4 | ||||
-rw-r--r-- | src/tools/marco-message.c | 5 | ||||
-rw-r--r-- | src/ui/frames.c | 2 | ||||
-rw-r--r-- | src/ui/menu.c | 4 | ||||
-rw-r--r-- | src/ui/metaaccellabel.c | 2 | ||||
-rw-r--r-- | src/ui/resizepopup.c | 2 | ||||
-rw-r--r-- | src/ui/theme-parser.c | 2 | ||||
-rw-r--r-- | src/ui/theme-viewer.c | 6 | ||||
-rw-r--r-- | src/ui/theme.c | 2 |
23 files changed, 41 insertions, 14 deletions
diff --git a/src/core/bell.c b/src/core/bell.c index 9a847bc3..107933ef 100644 --- a/src/core/bell.c +++ b/src/core/bell.c @@ -49,6 +49,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "bell.h" #include "screen-private.h" #include "prefs.h" diff --git a/src/core/core.c b/src/core/core.c index b089e754..37459d8f 100644 --- a/src/core/core.c +++ b/src/core/core.c @@ -24,6 +24,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "core.h" #include "frame-private.h" #include "workspace.h" diff --git a/src/core/delete.c b/src/core/delete.c index 63f0d2f8..593f2607 100644 --- a/src/core/delete.c +++ b/src/core/delete.c @@ -26,6 +26,8 @@ #define _XOPEN_SOURCE /* for gethostname() and kill() */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "util.h" #include "window-private.h" #include "errors.h" diff --git a/src/core/display.c b/src/core/display.c index d9400d39..f79e60ea 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -29,6 +29,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "display-private.h" #include "util.h" #include "main.h" diff --git a/src/core/errors.c b/src/core/errors.c index 048477f3..54bd9565 100644 --- a/src/core/errors.c +++ b/src/core/errors.c @@ -50,4 +50,3 @@ meta_error_trap_pop_with_return (MetaDisplay *display, { return gdk_x11_display_error_trap_pop (gdk_x11_lookup_xdisplay (meta_display_get_xdisplay (display))); } - diff --git a/src/core/keybindings.c b/src/core/keybindings.c index 5b0000ea..64db48b8 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -27,6 +27,8 @@ #define _XOPEN_SOURCE /* for putenv() */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "keybindings.h" #include "workspace.h" #include "errors.h" diff --git a/src/core/main.c b/src/core/main.c index 3ca95e6f..825859e6 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -45,6 +45,8 @@ #define _XOPEN_SOURCE /* for putenv() and some signal-related functions */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "main.h" #include "util.h" #include "display-private.h" diff --git a/src/core/prefs.c b/src/core/prefs.c index e73324f0..0c11fff6 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -24,6 +24,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "prefs.h" #include "ui.h" #include "util.h" diff --git a/src/core/screen.c b/src/core/screen.c index efb65945..5e65fd2a 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -27,6 +27,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "screen-private.h" #include "util.h" #include "errors.h" diff --git a/src/core/session.c b/src/core/session.c index 5cd13b31..9b4407ba 100644 --- a/src/core/session.c +++ b/src/core/session.c @@ -24,6 +24,7 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> #include "session.h" #include <X11/Xatom.h> diff --git a/src/core/util.c b/src/core/util.c index c29901de..baf485ae 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -26,6 +26,8 @@ #define _POSIX_C_SOURCE 200112L /* for fdopen() */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "util.h" #include "main.h" diff --git a/src/core/window-props.c b/src/core/window-props.c index f0eb1c64..ed1d5c0c 100644 --- a/src/core/window-props.c +++ b/src/core/window-props.c @@ -39,6 +39,8 @@ #define _XOPEN_SOURCE /* for gethostname() */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "window-props.h" #include "errors.h" #include "xprops.h" diff --git a/src/core/window.c b/src/core/window.c index e377d7df..9338d736 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -25,6 +25,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "window-private.h" #include "edge-resistance.h" #include "util.h" diff --git a/src/core/xprops.c b/src/core/xprops.c index 5cc9b451..9776b09c 100644 --- a/src/core/xprops.c +++ b/src/core/xprops.c @@ -80,6 +80,8 @@ from The Open Group. */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "xprops.h" #include "errors.h" #include "util.h" diff --git a/src/include/util.h b/src/include/util.h index 331a0b96..afbba6a1 100644 --- a/src/include/util.h +++ b/src/include/util.h @@ -90,10 +90,6 @@ void meta_print_backtrace (void); const char* meta_gravity_to_string (int gravity); -#include <libintl.h> -#define _(x) dgettext (GETTEXT_PACKAGE, x) -#define N_(x) x - char* meta_g_utf8_strndup (const gchar *src, gsize n); GPid meta_show_dialog (const char *type, diff --git a/src/tools/marco-message.c b/src/tools/marco-message.c index 0badb82f..fb3c088e 100644 --- a/src/tools/marco-message.c +++ b/src/tools/marco-message.c @@ -20,15 +20,12 @@ */ #include <config.h> +#include <glib/gi18n.h> #include <gtk/gtk.h> #include <gdk/gdkx.h> #include <stdlib.h> #include <string.h> -#include <libintl.h> -#define _(x) dgettext (GETTEXT_PACKAGE, x) -#define N_(x) x - static void send_restart (void) { diff --git a/src/ui/frames.c b/src/ui/frames.c index 5f938dff..4b2d597d 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -24,6 +24,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include <math.h> #include <string.h> #include "boxes.h" diff --git a/src/ui/menu.c b/src/ui/menu.c index ac5fb2c1..df40f1b6 100644 --- a/src/ui/menu.c +++ b/src/ui/menu.c @@ -21,8 +21,10 @@ * 02110-1301, USA. */ -#include <gdk/gdkx.h> #include <config.h> +#include <glib/gi18n-lib.h> + +#include <gdk/gdkx.h> #include <stdio.h> #include <string.h> #include "menu.h" diff --git a/src/ui/metaaccellabel.c b/src/ui/metaaccellabel.c index f6903d44..28867702 100644 --- a/src/ui/metaaccellabel.c +++ b/src/ui/metaaccellabel.c @@ -32,6 +32,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "metaaccellabel.h" #include <gtk/gtk.h> #include <string.h> diff --git a/src/ui/resizepopup.c b/src/ui/resizepopup.c index 0464636d..1e57756d 100644 --- a/src/ui/resizepopup.c +++ b/src/ui/resizepopup.c @@ -22,6 +22,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "resizepopup.h" #include "util.h" #include <gtk/gtk.h> diff --git a/src/ui/theme-parser.c b/src/ui/theme-parser.c index a200876c..a8557a69 100644 --- a/src/ui/theme-parser.c +++ b/src/ui/theme-parser.c @@ -22,6 +22,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "theme-parser.h" #include "util.h" #include <string.h> diff --git a/src/ui/theme-viewer.c b/src/ui/theme-viewer.c index 35fcdda3..e301e9b6 100644 --- a/src/ui/theme-viewer.c +++ b/src/ui/theme-viewer.c @@ -22,6 +22,8 @@ */ #include <config.h> +#include <glib/gi18n.h> + #include "util.h" #include "theme.h" #include "theme-parser.h" @@ -31,10 +33,6 @@ #include <stdlib.h> #include <string.h> -#include <libintl.h> -#define _(x) dgettext (GETTEXT_PACKAGE, x) -#define N_(x) x - /* We need to compute all different button arrangements * in terms of button location. We don't care about * different arrangements in terms of button function. diff --git a/src/ui/theme.c b/src/ui/theme.c index 3a623f9e..bd51673e 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -53,6 +53,8 @@ */ #include <config.h> +#include <glib/gi18n-lib.h> + #include "prefs.h" #include "theme.h" #include "theme-parser.h" |