i18nprofile_locale($op = 'groups', $group = NULL)
contributions/i18n/i18nprofile/i18nprofile.module, line 25
Implementation of hook_locale().
<?php
function i18nprofile_locale($op = 'groups', $group = NULL) {
switch ($op) {
case 'groups':
return array('profile' => t('Profile'));
case 'refresh':
if ($group == 'profile') {
return i18nprofile_locale_refresh();
}
}
}
?>