The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
17 lines
388 B
#include<libintl.h> |
|
#include<locale.h> |
|
#include<stdio.h> |
|
|
|
#define _(String) gettext (String) |
|
|
|
#define PACKAGE "intltest" |
|
// WRONG, but enough for this test. |
|
#define LOCALEDIR "/usr/share/locale" |
|
|
|
int main(int argc, char **argv) { |
|
setlocale(LC_ALL, ""); |
|
bindtextdomain(PACKAGE, LOCALEDIR); |
|
textdomain(PACKAGE); |
|
printf("%s\n", _("International greeting.")); |
|
return 0; |
|
}
|
|
|