Sorting translated attribute in GridView

Hi , is there a method to sort attribute in gridview note that this attribute (nationality) has a translated value ? because this code disable the sort of the attribute (nationality) in the gridview !
> GridView::widget([
> ‘dataProvider’ => $dataProvider,
> ‘columns’ => [
> [‘label’ => Yii::t(‘app’, ‘username’),
> ‘attribute’ => ‘username’,
> ],
> [‘label’ => Yii::t(‘app’, ‘nationality’),
> ‘value’ => function ($data) {
> return Yii::t(‘app’, $data->nationality);
> }
> ], ]
> ])
thank you.