Localisation commit

You know, it's much more fun listening to you in a lecture theatre. :-P

Right; any nit picks now might have to wait 3 weeks, depending on
available connectivity. Hope I did not screw this one up.
This commit is contained in:
Tor Houghton
2012-09-22 21:53:56 +02:00
parent ab4f25704d
commit b89a72dbeb
8 changed files with 46 additions and 28 deletions

View File

@@ -153,7 +153,7 @@ private void initializeSearch(android.widget.SearchView searchView) {
alert.setMessage(R.string.ConversationListFragment_are_you_sure_you_wish_to_delete_all_selected_conversation_threads);
alert.setCancelable(true);
alert.setPositiveButton(R.string.ConversationListFragment_delete, new DialogInterface.OnClickListener() {
alert.setPositiveButton(R.string.delete, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Set<Long> selectedConversations = ((ConversationListAdapter)getListAdapter())
.getBatchSelections();
@@ -166,7 +166,7 @@ private void initializeSearch(android.widget.SearchView searchView) {
}
});
alert.setNegativeButton(R.string.ConversationListFragment_cancel, null);
alert.setNegativeButton(android.R.string.cancel, null);
alert.show();
}