Add tooltips to all buttons

This commit is contained in:
Andreas Öman 2008-08-26 20:07:19 +00:00
parent 1714d9b38b
commit a18df3bc78
5 changed files with 14 additions and 1 deletions

View file

@ -174,14 +174,18 @@ tvheadend.acleditor = function() {
cm: cm,
selModel: new Ext.grid.RowSelectionModel({singleSelect:false}),
tbar: [{
tooltip: 'Create a new access list entry on the server. ' +
'The new entry is initially disabled so it must be enabled before it start taking effect.',
iconCls:'add',
text: 'Add entry',
handler: addRecord
}, '-', {
tooltip: 'Delete one or more selected rows',
iconCls:'remove',
text: 'Delete selected',
handler: delSelected
}, '-', {
tooltip: 'Save any changes made (Changed cells have red borders).',
iconCls:'save',
text: "Save changes",
handler: saveChanges

View file

@ -207,10 +207,12 @@ tvheadend.channeldetails = function(chid, chname) {
title: chname,
border:false,
tbar: [{
tooltip: 'Delete channel "' + chname + '". All mapped transports will be unmapped',
iconCls:'remove',
text: "Delete channel",
handler: deleteChannel
}, '-', {
tooltip: 'Save changes made to channel configuration below and the mapped transports',
iconCls:'save',
text: "Save configuration",
handler: saveChanges

View file

@ -161,14 +161,18 @@ tvheadend.cwceditor = function() {
cm: cm,
selModel: new Ext.grid.RowSelectionModel({singleSelect:false}),
tbar: [{
tooltip: 'Create a new code word connection entry on the server. ' +
'The new entry is initially disabled so it must be enabled before it start taking effect.',
iconCls:'add',
text: 'Add entry',
handler: addRecord
}, '-', {
tooltip: 'Delete one or more selected rows',
iconCls:'remove',
text: 'Delete selected',
handler: delSelected
}, '-', {
tooltip: 'Save any changes made (Changed cells have red borders).',
iconCls:'save',
text: "Save changes",
handler: saveChanges

View file

@ -128,14 +128,17 @@ tvheadend.dvb_adapterdetails = function(adapterId, adapterName, treenode) {
})
],
tbar:[{
tooltip: 'Manually add new transport multiplexes',
iconCls:'add',
text: 'Add mux(es)',
handler: addmux
}, '-', {
tooltip: 'Scan all transports on this adapter and map those who has a working video stream to a channel',
iconCls:'option',
text: 'Probe services',
handler: probeservices
}, '-', {
tooltip: 'Save and changes made to the configuation below',
iconCls:'save',
text: 'Save configuration',
handler: saveconfig

View file

@ -128,7 +128,7 @@ tvheadend.app = function() {
});
new tvheadend.comet_poller;
Ext.QuickTips.init();
}
};