Skip to content
Merged
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
4 changes: 2 additions & 2 deletions classes/Withdraw.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ public function tutor_make_an_withdraw() {
wp_sprintf(
/* translators: 1: total pending withdraw request 2: available for withdraw */
__( "You have total %1\$s pending withdraw request. You can't make more than %2\$s withdraw request at a time", 'tutor' ),
$earning_summary->total_pending,
$earning_summary->available_for_withdraw
tutor_utils()->tutor_price( $earning_summary->total_pending ),
tutor_utils()->tutor_price( $earning_summary->available_for_withdraw )
),
);
}
Expand Down
Loading