Localisation change
Localisation of the message prefix when forwarding a message (in Norwegian, this would be "VS:" for instance).
This commit is contained in:
parent
192ffb4d2f
commit
73bde7accd
2 changed files with 2 additions and 1 deletions
|
@ -72,6 +72,7 @@
|
|||
<string name="ConversationActivity_sorry_the_selected_audio_exceeds_message_size_restrictions">Sorry, the selected audio exceeds message size restrictions.</string>
|
||||
<string name="ConversationActivity_recipient_is_not_a_valid_sms_or_email_address_exclamation">Recipient is not a valid SMS or email address!</string>
|
||||
<string name="ConversationActivity_message_is_empty_exclamation">Message is empty!</string>
|
||||
<string name="ConversationActivity_forward_message_prefix">FWD</string>
|
||||
|
||||
<!-- ConversationFragment -->
|
||||
<string name="ConversationFragment_message_details">Message details</string>
|
||||
|
|
|
@ -411,7 +411,7 @@ public class ConversationActivity extends SherlockFragmentActivity
|
|||
registerForContextMenu(sendButton);
|
||||
|
||||
if (getIntent().getStringExtra("forwarded_message") != null)
|
||||
composeText.setText("FWD: " + getIntent().getStringExtra("forwarded_message"));
|
||||
composeText.setText(R.string.ConversationActivity_forward_message_prefix+": " + getIntent().getStringExtra("forwarded_message"));
|
||||
}
|
||||
|
||||
private void initializeRecipientsInput() {
|
||||
|
|
Loading…
Add table
Reference in a new issue