{t('accounts.id')}:
{currentRow.id}
{t('accounts.email')}:
{currentRow.email}
{t('accounts.name')}:
{currentRow.name ?? t('accounts.notAvailable')}
{t('accounts.enabled')}:
{t('accounts.incrementalSyncInterval')}:
{t('accounts.everyMinutes', { minutes: currentRow.sync_interval_min })}
{t('accounts.syncBatchSize')}:
{currentRow.sync_batch_size}
{t('accounts.capabilities')}:
{currentRow.capabilities ? currentRow.capabilities.join(", ") : t('accounts.notAvailable')}
{t('accounts.syncScope')}:
{hasSince && (
{t('accounts.sinceFixed')}:
{sinceText}
)}
{hasBefore && (
{t('accounts.beforeRelative')}:
{t('accounts.beforeRelativeValue', {
value: currentRow.date_before!.value,
unit: t(`accounts.${currentRow.date_before!.unit!.toLowerCase()}`)
})}
)}
{!hasSince && !hasBefore && (
{t('accounts.syncAll')}
)}
{t('accounts.folderLimit')}:
{currentRow.folder_limit ? currentRow.folder_limit : t('accounts.notAvailable')}