Renames the Options menu in MacOSX systray to Preferences to ensure conformity.

cusax-fix
Yana Stamcheva 13 years ago
parent e2af23f7ac
commit 59dc2fc9f5

@ -383,6 +383,7 @@ service.gui.PASTE=&Paste
service.gui.PERSONAL=Personal
service.gui.PORT=Port
service.gui.POSTAL_CODE=Postal code
service.gui.PREFERENCES=Preferences
service.gui.PREFIX=Prefix
service.gui.PRESENCE=Presence
service.gui.PRESS_ENTER_FOR_SUGGESTIONS='Enter' for suggestions
@ -504,6 +505,7 @@ service.gui.UNKNOWN_STATUS=Unknown state
service.gui.UNREGISTERED_MESSAGE=Unable to connect the following account: User name: {0}, Server name: {1}. You are currently offline.
service.gui.USE_PROVISIONING=Use online provisioning
service.gui.VIDEO_CALL=&Video call
service.gui.VIA=via
service.gui.VIA_SMS=Via SMS
service.gui.VIEW=&View
service.gui.VIEW_HISTORY=View &history

@ -154,7 +154,11 @@ public void actionPerformed(ActionEvent event)
if (showOptions.booleanValue())
{
add(trayMenu, createTrayMenuItem("settings", "service.gui.SETTINGS",
add(trayMenu, createTrayMenuItem(
"settings",
(OSUtils.IS_MAC)
? "service.gui.PREFERENCES"
: "service.gui.SETTINGS",
"service.systray.CONFIGURE_ICON", listener, swing));
}

Loading…
Cancel
Save