1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-29 20:32:22 -05:00

ConversationActivity: Added missing string to strings.xml

This commit is contained in:
Sebastian Kaspari 2010-09-05 21:19:28 +02:00
parent caaa5395fd
commit e29a6ec7af
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@
<string name="available_commands">Available commands:</string> <string name="available_commands">Available commands:</string>
<string name="logical_or">or</string> <string name="logical_or">or</string>
<string name="query_to_channel">You cannot open queries to channels</string> <string name="query_to_channel">You cannot open queries to channels</string>
<string name="query_exists" /> <string name="query_exists">Query already exists</string>
<string name="line_missing">Line is missing</string> <string name="line_missing">Line is missing</string>
<string name="command_desc_amsg">Send a message to all channels</string> <string name="command_desc_amsg">Send a message to all channels</string>

View File

@ -319,7 +319,7 @@ public class ConversationActivity extends Activity implements ServiceConnection,
server.removeConversation(conversationToClose.getName()); server.removeConversation(conversationToClose.getName());
onRemoveConversation(conversationToClose.getName()); onRemoveConversation(conversationToClose.getName());
} else { } else {
Toast.makeText(this, "You can not close the server info window", Toast.LENGTH_SHORT).show(); Toast.makeText(this, getResources().getString(R.string.close_server_window), Toast.LENGTH_SHORT).show();
} }
break; break;
case R.id.join: case R.id.join: