8 lines
126 B
PHP
8 lines
126 B
PHP
|
<?php
|
||
|
|
||
|
// Global functions for translating domain-specific strings
|
||
|
|
||
|
function _pro($str) {
|
||
|
return dgettext("pro", $str);
|
||
|
}
|