Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/4292 fix capitalisation on initial sync screen #4410

Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/4292.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed capitalisation of text on initial sync screen
20 changes: 10 additions & 10 deletions vector/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,16 @@
<string name="room_displayname_empty_room">Empty room</string>
<string name="room_displayname_empty_room_was">Empty room (was %s)</string>

<string name="initial_sync_start_server_computing">Initial Sync:\nWaiting for server response…</string>
<string name="initial_sync_start_downloading">Initial Sync:\nDownloading data…</string>
<string name="initial_sync_start_importing_account">Initial Sync:\nImporting account…</string>
<string name="initial_sync_start_importing_account_crypto">Initial Sync:\nImporting crypto</string>
<string name="initial_sync_start_importing_account_rooms">Initial Sync:\nImporting Rooms</string>
<string name="initial_sync_start_importing_account_joined_rooms">Initial Sync:\nImporting Joined Rooms</string>
<string name="initial_sync_start_importing_account_invited_rooms">Initial Sync:\nImporting Invited Rooms</string>
<string name="initial_sync_start_importing_account_left_rooms">Initial Sync:\nImporting Left Rooms</string>
<string name="initial_sync_start_importing_account_groups">Initial Sync:\nImporting Communities</string>
<string name="initial_sync_start_importing_account_data">Initial Sync:\nImporting Account Data</string>
<string name="initial_sync_start_server_computing">Initial sync:\nWaiting for server response…</string>
<string name="initial_sync_start_downloading">Initial sync:\nDownloading data…</string>
<string name="initial_sync_start_importing_account">Initial sync:\nImporting account…</string>
<string name="initial_sync_start_importing_account_crypto">Initial sync:\nImporting crypto</string>
<string name="initial_sync_start_importing_account_rooms">Initial sync:\nImporting rooms</string>
<string name="initial_sync_start_importing_account_joined_rooms">Initial sync:\nLoading your conversations\nIf you\'ve joined lots of rooms, this might take a while</string>
<string name="initial_sync_start_importing_account_invited_rooms">Initial sync:\nImporting invited Rooms</string>
AdamTomaja marked this conversation as resolved.
Show resolved Hide resolved
<string name="initial_sync_start_importing_account_left_rooms">Initial sync:\nImporting left Rooms</string>
AdamTomaja marked this conversation as resolved.
Show resolved Hide resolved
<string name="initial_sync_start_importing_account_groups">Initial sync:\nImporting communities</string>
<string name="initial_sync_start_importing_account_data">Initial sync:\nImporting account Data</string>
AdamTomaja marked this conversation as resolved.
Show resolved Hide resolved


<string name="event_status_sent_message">Message sent</string>
Expand Down