Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ internal class SyncInfoFragment : Fragment(R.layout.fragment_sync_info) {
binding.textFooterRecordLoggingOut.isGone = !records.isFooterReadyToLogOutVisible
binding.textFooterRecordSyncIncomplete.isGone = !records.isFooterSyncIncompleteVisible
binding.textFooterRecordLastSyncedWhen.isGone = !records.isFooterLastSyncTimeVisible
binding.textFooterRecordLastSyncedWhen.text = records.footerLastSyncMinutesAgo
binding.textFooterRecordLastSyncedWhen.text =
String.format(getString(IDR.string.sync_info_last_sync), records.footerLastSyncMinutesAgo)
}

private fun SyncInfoError.configureErrorPopup() {
Expand Down Expand Up @@ -326,7 +327,8 @@ internal class SyncInfoFragment : Fragment(R.layout.fragment_sync_info) {

// Footer
binding.textFooterImageLastSyncedWhen.isInvisible = !images.isFooterLastSyncTimeVisible
binding.textFooterImageLastSyncedWhen.text = images.footerLastSyncMinutesAgo
binding.textFooterImageLastSyncedWhen.text =
String.format(getString(IDR.string.sync_info_last_sync), images.footerLastSyncMinutesAgo)
}

private fun renderModulesSection(
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values-am-rET/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,8 @@

<string name="sync_info_total_records">ጠቅላላ መዝገቦች</string>

<string name="sync_info_last_sync">ያለፈው ግንኙነት: %1$s</string>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here and below the translations are backported from 2025.2.0. They used to be named dashboard_sync_card_last_sync there.


<string name="sync_info_footer_sync_in_progress">ማመሳሰል በሂደት ላይ</string>
<string name="sync_info_footer_sync_incomplete">ማመሳሰል ተጠናቅቋል</string>
<string name="sync_info_footer_sync_complete_logging_out">ማመሳሰል ተጠናቅቋል፣ እርስዎን በማስወጣት ላይ…</string>
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values-am/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@

<string name="sync_info_total_records">ጠቅላላ መዝገቦች</string>

<string name="sync_info_last_sync">መጨረሻ ጊዜ ወደ ሰርቨር የተላከው : %1$s</string>

<string name="sync_info_footer_sync_in_progress">ማመሳሰል በሂደት ላይ</string>
<string name="sync_info_footer_sync_incomplete">ማመሳሰል ተጠናቅቋል</string>
<string name="sync_info_footer_sync_complete_logging_out">ማመሳሰል ተጠናቅቋል፣ እርስዎን በማስወጣት ላይ…</string>
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values-bn/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@

<string name="sync_info_total_records">মোট রেকর্ড</string>

<string name="sync_info_last_sync">সর্বশেষ সিঙ্ক: %1$s</string>

<string name="sync_info_footer_sync_in_progress">সিঙ্ক হচ্ছে </string>
<string name="sync_info_footer_sync_incomplete">সিঙ্ক অসম্পূর্ণ</string>
<string name="sync_info_footer_sync_complete_logging_out">সিঙ্ক সম্পূর্ণ হয়েছে, আপনাকে লগ আউট করা হচ্ছে...</string>
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,8 @@

<string name="sync_info_total_records">Enregistrements totaux</string>

<string name="sync_info_last_sync">Dernière synchronisation : %1$s</string>

<string name="sync_info_footer_sync_in_progress">Synchronisation en cours</string>
<string name="sync_info_footer_sync_incomplete">Synchronisation incomplète</string>
<string name="sync_info_footer_sync_complete_logging_out">Synchronisation terminée, déconnexion en cours…</string>
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values-hi/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,8 @@

<string name="sync_info_total_records">कुल रिकोर्ड्स</string>

<string name="sync_info_last_sync">अंतिम बार सिंक: %1$s</string>

<string name="sync_info_footer_sync_in_progress">समन्वयन प्रगति पर है</string>
<string name="sync_info_footer_sync_incomplete">सिंक अपूर्ण</string>
<string name="sync_info_footer_sync_complete_logging_out">सिंक पूरा हो गया, आपको लॉग आउट किया जा रहा है...</string>
Expand Down
2 changes: 2 additions & 0 deletions infra/resources/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,8 @@

<string name="sync_info_total_records">Total records</string>

<string name="sync_info_last_sync">Last sync: %1$s</string>

<string name="sync_info_footer_sync_in_progress">Sync in progress</string>
<string name="sync_info_footer_sync_incomplete">Sync incomplete</string>
<string name="sync_info_footer_sync_complete_logging_out">Sync complete, logging you out…</string>
Expand Down