diff options
Diffstat (limited to '')
-rw-r--r-- | src/main/res/menu/message_context.xml | 20 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 5 |
2 files changed, 15 insertions, 10 deletions
diff --git a/src/main/res/menu/message_context.xml b/src/main/res/menu/message_context.xml index 21659266..4e1316d3 100644 --- a/src/main/res/menu/message_context.xml +++ b/src/main/res/menu/message_context.xml @@ -3,21 +3,27 @@ <item android:id="@+id/copy_text" - android:title="@string/copy_text"/> + android:title="@string/copy_text" + android:visible="false"/> <item android:id="@+id/share_with" - android:title="@string/share_with"/> + android:title="@string/share_with" + android:visible="false"/> <item android:id="@+id/copy_url" - android:title="@string/copy_original_url"/> + android:title="@string/copy_original_url" + android:visible="false"/> <item android:id="@+id/send_again" - android:title="@string/send_again"/> + android:title="@string/send_again" + android:visible="false"/> <item - android:id="@+id/download_image" - android:title="@string/download_image"/> + android:id="@+id/download_file" + android:title="@string/download_x_file" + android:visible="false"/> <item android:id="@+id/cancel_transmission" - android:title="@string/cancel_transmission" /> + android:title="@string/cancel_transmission" + android:visible="false"/> </menu>
\ No newline at end of file diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index 4631bd60..444d9ecf 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -82,7 +82,6 @@ <string name="send_otr_message">Send OTR encrypted message</string> <string name="send_pgp_message">Send OpenPGP encrypted message</string> <string name="your_nick_has_been_changed">Your nickname has been changed</string> - <string name="download_image">Download Image</string> <string name="send_unencrypted">Send unencrypted</string> <string name="decryption_failed">Decryption failed. Maybe you don’t have the proper private key.</string> <string name="openkeychain_required">OpenKeychain</string> @@ -320,12 +319,12 @@ <string name="checking_image">Checking image on HTTP host</string> <string name="image_file_deleted">The image file has been deleted</string> <string name="not_connected_try_again">You are not connected. Try again later</string> - <string name="check_image_filesize">Check image file size</string> + <string name="check_x_filesize">Check %s size</string> <string name="message_options">Message options</string> <string name="copy_text">Copy text</string> <string name="copy_original_url">Copy original URL</string> <string name="send_again">Send again</string> - <string name="image_url">Image URL</string> + <string name="file_url">File URL</string> <string name="message_text">Message text</string> <string name="url_copied_to_clipboard">URL copied to clipboard</string> <string name="message_copied_to_clipboard">Message copied to clipboard</string> |