~ubuntu-branches/debian/squeeze/gnome-terminal/squeeze

« back to all changes in this revision

Viewing changes to src/terminal-intl.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2009-03-13 15:11:33 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090313151133-hszv8f99rmvlmvpk
Tags: 2.24.3-3
* Recommend gvfs. Closes: #519159.
* 01_tabs_shortcuts.patch: restore the ability to set shortcuts to 
  each tab. Closes: #519523.
* 02_tabs_shortcuts_translations.patch: restore translations from 
  version 2.22 for this functionality.
  + Thanks to Mart Raudsepp for preparing the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* the intl macros */
2
 
 
3
1
/*
4
 
 * Copyright (C) 2002 Havoc Pennington
 
2
 * Copyright © 2002 Havoc Pennington
5
3
 *
6
4
 * This library is free software; you can redistribute it and/or
7
5
 * modify it under the terms of the GNU Library General Public
22
20
#ifndef TERMINAL_INTL_H
23
21
#define TERMINAL_INTL_H
24
22
 
25
 
#include <config.h>
26
 
#include <libintl.h>
27
 
#include <locale.h>
28
 
#include <glib.h>
29
 
 
30
 
G_BEGIN_DECLS
31
 
 
32
 
#ifdef _
33
 
#undef _
34
 
#endif
35
 
 
36
 
#ifdef N_
37
 
#undef N_
38
 
#endif
39
 
 
40
 
#define _(x) dgettext (GETTEXT_PACKAGE, x)
41
 
#define N_(x) x
42
 
 
43
 
G_END_DECLS
 
23
#include <glib/gi18n.h>
 
24
 
 
25
#define I_(string) g_intern_static_string (string)
44
26
 
45
27
#endif /* TERMINAL_INTL_H */