Author Topic: Calendar import/export button title  (Read 3959 times)

nexxer

  • Newbie
  • *
  • Posts: 8
    • View Profile
Calendar import/export button title
« on: February 28, 2009, 03:31:32 pm »
..is "Contacts import and export"

This is because the entry in lang.js:

'import - export': 'Contacts import and export'

is used as the tooltip in both ContactManager.js and CalendarToolbar.js

   imp_exp: new Ext.Action({
      text: lang('import/export'),
           tooltip: lang('calendar import - export'),

This is fixed by adding a new entry in lang.js,

'calendar import - export': 'Calendar import and export',

and using that as the tooltip in CalendarToolbar.js.

Cheers

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: Calendar import/export button title
« Reply #1 on: March 03, 2009, 01:13:45 pm »
Thanks nexxer!