- Tool tip added to Call and Hang up buttons

- Fix userInfo tooltip (replaced by Contact info)
cusax-fix
Yana Stamcheva 18 years ago
parent 35b936d1f5
commit 07f6492742

@ -146,6 +146,7 @@ findChatRoomError=Failed to find the "{0}" chat room.
finish=&Finish
first=First
font=Font
hangUp=Hang up
haveToBeConnectedToJoin=You have to be connected in order to join a chat room. Please connect and then try again.
haveToBeConnectedToLeave=You have to be connected in order to leave a chat room.
help=?

@ -129,6 +129,12 @@ private void init()
this.minimizeButton.setName("minimize");
this.restoreButton.setName("restore");
this.callButton.setToolTipText(
Messages.getI18NString("call").getText());
this.hangupButton.setToolTipText(
Messages.getI18NString("hangUp").getText());
this.minimizeButton.setToolTipText(Messages.getI18NString(
"hideCallPanel").getText()
+ " Ctrl - H");

@ -105,7 +105,7 @@ public ChatContactPanel(ChatPanel chatPanel, ChatContact contact)
this.callButton.setToolTipText(
Messages.getI18NString("call").getText());
this.infoButton.setToolTipText(
Messages.getI18NString("userInfo").getText());
Messages.getI18NString("contactInfo").getText());
this.sendFileButton.setToolTipText(
Messages.getI18NString("sendFile").getText());

@ -27,7 +27,6 @@
import net.java.sip.communicator.service.contactlist.*;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.service.gui.Container;
import net.java.sip.communicator.service.gui.event.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.util.*;
@ -111,7 +110,7 @@ public ExtendedQuickMenu(MainFrame mainFrame)
new Dimension(buttonWidth, DEFAULT_BUTTON_HEIGHT));
this.infoButton.setToolTipText(
Messages.getI18NString("userInfo").getText());
Messages.getI18NString("contactInfo").getText());
this.configureButton.setToolTipText(
Messages.getI18NString("configure").getText());
this.hideShowButton.setToolTipText(

Loading…
Cancel
Save