diff --git a/resources/languages/resources.properties b/resources/languages/resources.properties
index 014af6ec4..e106d98f5 100644
--- a/resources/languages/resources.properties
+++ b/resources/languages/resources.properties
@@ -101,7 +101,7 @@ close=Cl&ose
closeChatAfterNewMsg=You have received a new message less than 2 seconds ago. Are you sure you want to close this chat?
conference=Conference
configure=&Configure
-configuration=Configuration
+configuration=Options
connectionFailed=Connection failed
connectionFailedMessage=Connection failed for the following account: User name: {0}, Server name: {1}. Please check your network connection or contact your network administrator for more information.
User name: {0}
\
@@ -215,6 +215,7 @@ moveSubcontact=M&ove contact
moveSubcontactInSameContact=The contact you have choosen is the same as \n the source one. Please choose another contact!
moveSubcontactQuestion=
Are you sure you want to move {0} to {1} ?
moveToGroup=&Move to group
+moveContact=Move Contact
moveContactError=&Contact cannot be moved
msgDeliveryFailure=The above message could not be delivered
msgDeliveryOfflineNotSupported=The protocol you are using doesn't support offline messages. You could try to reach this contact through another protocol or wait until he/she becomes online.
@@ -242,7 +243,7 @@ noMultiChatAccountAvailable=No accounts, supporting multi user chat found. Check
nonEmptyChatWindowClose=You're trying to close a chat with a non-sent message. Are you sure you want to close this chat?
nonExistingUserId=The {0} server does not recognize specified user id.
notifications=Notifications
-ok=&Ok
+ok=&OK
offline=Offline
olderCalls=Older calls
online=Online
@@ -308,7 +309,7 @@ format e.g. starting with +44 for the UK for example, +447777000000
sendSmsNotSupported=The protocol you have selected doesn't support SMS messages.
sendVia=Send via
setStatusMessage=Set status message
-settings=&Settings
+settings=&Options
showCallPanel=Show call panel
showChannelsList=Show channels list
showOffline=Show
@@ -505,7 +506,7 @@ newAccountTitle=Jabber new account registration
registerNewAccountText=In case you don't have a Jabber account, click on this button to create a new one.
chooseTitle=Jabber new account server chooser
chooseServerText=Choose the server for your new account in the list below.
-okLabel=&Ok
+okLabel=&OK
cancelLabel=C&ancel
chooseLabel=&Choose
serverColumn=Server
diff --git a/src/net/java/sip/communicator/impl/protocol/dict/DictException.java b/src/net/java/sip/communicator/impl/protocol/dict/DictException.java
index 09a8184a6..34eb8336f 100644
--- a/src/net/java/sip/communicator/impl/protocol/dict/DictException.java
+++ b/src/net/java/sip/communicator/impl/protocol/dict/DictException.java
@@ -146,16 +146,16 @@ public String getErrorMessage()
result = "optional timing";
break;
case 220 :
- result = "Connexion OK";
+ result = "Connection OK";
break;
case 221 :
result = "Closing Connection";
break;
case 230 :
- result = "Authentification successful";
+ result = "Authentication successful";
break;
case 250 :
- result = "Ok";
+ result = "OK";
break;
case 330 :
result = "send response";
diff --git a/src/net/java/sip/communicator/plugin/simpleaccreg/InitialAccountRegistrationFrame.java b/src/net/java/sip/communicator/plugin/simpleaccreg/InitialAccountRegistrationFrame.java
index 49f08ec35..cc76df5c4 100644
--- a/src/net/java/sip/communicator/plugin/simpleaccreg/InitialAccountRegistrationFrame.java
+++ b/src/net/java/sip/communicator/plugin/simpleaccreg/InitialAccountRegistrationFrame.java
@@ -87,8 +87,8 @@ public InitialAccountRegistrationFrame()
signinButton.addActionListener(actionListener);
cancelButton.addActionListener(actionListener);
- buttonPanel.add(cancelButton);
buttonPanel.add(signinButton);
+ buttonPanel.add(cancelButton);
messageArea.setLineWrap(true);
messageArea.setWrapStyleWord(true);