ComposeActivity improvements (#548)
* do not add media urls to status text * add scrolling to content * add arrow icon and animation to replying-to toggle * remove unnecessary compose_button_colors.xml * improve toot button * improve bottom bar, add bottom sheet for compose options, dedicated cw button * fix crash on Android < API 21 * move media picking from dialog to bottom sheet * add small style tootbutton * fix colors/button background for light theme * add icons to media chose bottom sheet * improve hide media button, delete unused styles * fix crash on dev build when taking photo * consolidate drawables * consolidate strings and ids, add tooltips to buttons * allow media only toots * change error message to show max size of upload correctly * fix button color * add emoji * code cleanup * Merge branch 'master' into compose_activity_refactoring # Conflicts: # app/src/main/java/com/keylesspalace/tusky/ComposeActivity.java * fix hidden snackbar * improve hint text color * add SendTootService * fix timeline refreshing * toot saving and error handling for sendtootservice * restructure some code * convert EditTextTyped to Kotlin * fixed pick media button disabled color * force sensitive media when content warning is shown * add db cache for emojis & fix tests * reorder buttons to match mastodon web * add possibility to cancel sending of toot * correctly delete sent toots * refresh SavedTootActivity after toot was sent * remove unused resources * correct params for toot saving in SendTootService * consolidate strings * bugfix * remove unused resources * fix notifications on old android for SendTootService * fix crash
This commit is contained in:
parent
8a23f034f0
commit
27eefbf65a
79 changed files with 1815 additions and 1234 deletions
|
|
@ -9,7 +9,7 @@
|
|||
<string name="error_authorization_denied">Autorisatie werd geweigerd.</string>
|
||||
<string name="error_retrieving_oauth_token">Verkrijgen van inlogsleutel is mislukt.</string>
|
||||
<string name="error_compose_character_limit">Tekst van deze toot is te lang!</string>
|
||||
<string name="error_media_upload_size">Bestand moet kleiner zijn dan 4MB.</string>
|
||||
<string name="error_media_upload_size">Bestand moet kleiner zijn dan 8MB.</string>
|
||||
<string name="error_media_upload_type">Bestandstype kan niet worden geüpload.</string>
|
||||
<string name="error_media_upload_opening">Bestand kan niet worden geopend.</string>
|
||||
<string name="error_media_upload_permission">Toestemming nodig om media te kunnen lezen.</string>
|
||||
|
|
@ -60,7 +60,6 @@
|
|||
<string name="action_send">Toot</string>
|
||||
<string name="action_send_public">TOOT!</string>
|
||||
<string name="action_retry">Opnieuw proberen</string>
|
||||
<string name="action_hide_text">Tekst achter waarschuwing verbergen</string>
|
||||
<string name="action_close">Sluiten</string>
|
||||
<string name="action_view_profile">Profiel</string>
|
||||
<string name="action_view_preferences">Voorkeuren</string>
|
||||
|
|
@ -70,14 +69,13 @@
|
|||
<string name="action_view_blocks">Geblokkeerde gebruikers</string>
|
||||
<string name="action_view_media">Media</string>
|
||||
<string name="action_open_in_web">Open in webbrowser</string>
|
||||
<string name="action_photo_pick">Foto of video toevoegen</string>
|
||||
<string name="action_add_media">Foto of video toevoegen</string>
|
||||
<string name="action_photo_take">Foto of video maken</string>
|
||||
<string name="action_share">Delen</string>
|
||||
<string name="action_mute">Negeren</string>
|
||||
<string name="action_unmute">Niet meer negeren</string>
|
||||
<string name="action_mention">Vermelden</string>
|
||||
<string name="action_hide_media">Media verbergen</string>
|
||||
<string name="action_compose_options">Opties</string>
|
||||
<string name="action_open_drawer">Menu openen</string>
|
||||
<string name="action_save">Save</string>
|
||||
<string name="action_edit_profile">Profiel bewerken</string>
|
||||
|
|
@ -90,7 +88,6 @@
|
|||
<string name="action_copy_link">Link kopiëren</string>
|
||||
<string name="send_status_link_to">Link van toot delen</string>
|
||||
<string name="send_status_content_to">Inhoud van toot delen</string>
|
||||
<string name="confirmation_send">Toot!</string>
|
||||
<string name="confirmation_reported">Verzenden!</string>
|
||||
<string name="confirmation_unblocked">Gebruiker is gedeblokkeerd</string>
|
||||
<string name="confirmation_unmuted">Gebruiker wordt niet meer genegeerd</string>
|
||||
|
|
@ -181,7 +178,6 @@
|
|||
<string name="status_media_video">Video</string>
|
||||
<string name="state_follow_requested">Volgverzoek verzonden</string>
|
||||
<string name="no_content">geen inhoud</string>
|
||||
<string name="action_save_one_toot">Toot opgeslagen!</string>
|
||||
|
||||
<!--These are for timestamps on statuses. For example: "16s" or "2d"-->
|
||||
<string name="abbreviated_in_years">over %dj</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue