mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
26 lines
431 B
PHP
26 lines
431 B
PHP
--TEST--
|
|
Gettext basic test
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("gettext")) {
|
|
die("skip\n");
|
|
}
|
|
if (!setlocale(LC_ALL, 'fi_FI')) {
|
|
die("skip fi_FI locale not supported.");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php // $Id$
|
|
|
|
chdir(dirname(__FILE__));
|
|
setlocale(LC_ALL, 'fi_FI');
|
|
bindtextdomain ("messages", "./locale");
|
|
textdomain ("messages");
|
|
echo gettext("Basic test"), "\n";
|
|
echo _("Basic test"), "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
Perustesti
|
|
Perustesti
|