You are here

function messaging_locale_refresh in Messaging 6.4

Refresh strings for translation system

2 string references to 'messaging_locale_refresh'
messaging_admin_method_settings in ./messaging.admin.inc
Default sending methods settings
messaging_locale in ./messaging.module
Implementation of hook_locale().

File

./messaging.module, line 1104

Code

function messaging_locale_refresh() {
  foreach (messaging_method_info() as $name => $info) {
    i18nstrings_update("messaging:method:{$name}:name", $info['name']);
  }
  return TRUE;
}