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">Engedélyezés letiltva.</string>
|
||||
<string name="error_retrieving_oauth_token">Bejelentkezési token megszerzése sikertelen.</string>
|
||||
<string name="error_compose_character_limit">Túl hosszú a tülkölés!</string>
|
||||
<string name="error_media_upload_size">A fájl kisebb kell legyen mint 4MB.</string>
|
||||
<string name="error_media_upload_size">A fájl kisebb kell legyen mint 8MB.</string>
|
||||
<string name="error_media_upload_type">Fájl feltöltése sikertelen.</string>
|
||||
<string name="error_media_upload_opening">Fájl megnyitása sikertelen.</string>
|
||||
<string name="error_media_upload_permission">Média olvasási engedély szükséges.</string>
|
||||
|
@ -66,7 +66,6 @@
|
|||
<string name="action_send">TÜLK</string>
|
||||
<string name="action_send_public">TÜLK!</string>
|
||||
<string name="action_retry">Próbálja újra</string>
|
||||
<string name="action_hide_text">Szöveg figyelmeztetés mögé helyezése</string>
|
||||
<string name="action_close">Bezár</string>
|
||||
<string name="action_view_profile">Profil</string>
|
||||
<string name="action_view_preferences">Preferenciák</string>
|
||||
|
@ -76,14 +75,13 @@
|
|||
<string name="action_view_follow_requests">Követési kérések</string>
|
||||
<string name="action_view_media">Média</string>
|
||||
<string name="action_open_in_web">Megnyitás böngészőben</string>
|
||||
<string name="action_photo_pick">Média hozzácsatolása</string>
|
||||
<string name="action_add_media">Média hozzácsatolása</string>
|
||||
<string name="action_photo_take">Kép készítése</string>
|
||||
<string name="action_share">Megoszt</string>
|
||||
<string name="action_mute">Némítás</string>
|
||||
<string name="action_unmute">Kinémítás</string>
|
||||
<string name="action_mention">Megemlítés</string>
|
||||
<string name="action_hide_media">Média elrejtése</string>
|
||||
<string name="action_compose_options">Beállítások</string>
|
||||
<string name="action_open_drawer">Drawer megnyitása</string>
|
||||
<string name="action_save">Mentés</string>
|
||||
<string name="action_edit_profile">Profil szerkesztése</string>
|
||||
|
@ -100,7 +98,6 @@
|
|||
<string name="send_status_link_to">Tülk URL megosztása…</string>
|
||||
<string name="send_status_content_to">Tülk megosztása…</string>
|
||||
|
||||
<string name="confirmation_send">Tülk!</string>
|
||||
<string name="confirmation_reported">Elküldve!</string>
|
||||
<string name="confirmation_unblocked">Felhasználó deblokkolva</string>
|
||||
<string name="confirmation_unmuted">Felhasználó kinémítva</string>
|
||||
|
@ -201,7 +198,6 @@
|
|||
<string name="state_follow_requested">Követés kérelmezve</string>
|
||||
|
||||
<string name="no_content">nincs tartalom</string>
|
||||
<string name="action_save_one_toot">Tülk mentve!</string>
|
||||
|
||||
<string name="follows_you">Követ téged</string>
|
||||
<string name="pref_title_alway_show_sensitive_media">Mindig mutassa a NSFW tartalmat</string>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue