You are here

function tmgmt_ui_cart_title in Translation Management Tool 7

Cart page title callback.

Return value

string

1 string reference to 'tmgmt_ui_cart_title'
tmgmt_ui_menu in ui/tmgmt_ui.module
Implements hook_menu().

File

ui/tmgmt_ui.module, line 74
Common Translation managment UI.

Code

function tmgmt_ui_cart_title() {
  return t('Cart (@count)', array(
    '@count' => tmgmt_ui_cart_get()
      ->count(),
  ));
}