mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
# this include file provides support for i18n
|
|
#
|
|
|
|
# usage:
|
|
# use the __() function for returning translated strings of
|
|
# text. The string can contain escape codes %h for HTML
|
|
# and %s for regular text.
|
|
#
|
|
# supporting scripts:
|
|
# there is a supporting script, web/utils/genpopo, that will
|
|
# parse the PHP files and create PHP include files that contain
|
|
# a mapping for each translated language. The include files
|
|
# have the form,
|
|
#
|
|
# $_t["en"]["My cat is large."] = "My cat is large.";
|
|
# $_t["es"]["My cat is large."] = "Mi gato esta grande.";
|
|
#
|
|
# examples:
|
|
# print __("%s has %s apples.", array("Bill", "5"));
|
|
# print __("This is a %h%s%h problem!", array("<b>","major","</b>"));
|
|
|
|
include_once("common_po.inc");
|
|
|
|
|
|
function __($tag, $args=array()) {
|
|
global $_t;
|
|
global $LANG;
|
|
|
|
# create the translation, if it doesn't exist, highlight it
|
|
#
|
|
$translated = $_t[$LANG][$tag];
|
|
if (!$translated) {
|
|
# if it's a supported language, but there isn't a translation,
|
|
# alert the visitor to the missing translation.
|
|
#
|
|
$translated = "<font color=\"red\"><b>_" . $tag . "_</b></font>";
|
|
}
|
|
|
|
# replace escape substitutions
|
|
#
|
|
if (!empty($args)) {
|
|
while (list($k, $v) = each($args)) {
|
|
$translated = preg_replace("/\%[sh]/", $v, $translated, 1);
|
|
}
|
|
}
|
|
return $translated;
|
|
}
|
|
|
|
# vim: ts=2 sw=2 noet ft=php
|
|
?>
|