| Versionen | |
|---|---|
| drupal6 – drupal7 | _locale_export_remove_plural($entry) |
Removes plural index information from a string
includes/
<?php
function _locale_export_remove_plural($entry) {
return preg_replace('/(@count)\[[0-9]\]/', '\\1', $entry);
}
?>
Kommentare
Kommentar hinzufügen