We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The models do not use Yii:t() which would be useful, for using the models in another language.
Yii:t()
This would for example in OauthAccessTokens change:
OauthAccessTokens
public function attributeLabels() { return [ 'access_token' => 'Access Token', 'client_id' => 'Client ID', 'user_id' => 'User ID', 'expires' => 'Expires', 'scope' => 'Scope', ]; }
to
public function attributeLabels() { return [ 'access_token' => Yii::t('oauth2-server', 'Access Token'), 'client_id' => Yii::t('oauth2-server', 'Client ID'), 'user_id' => Yii::t('oauth2-server', 'User ID'), 'expires' => Yii::t('oauth2-server', 'Expires'), 'scope' => Yii::t('oauth2-server', 'Scope'), ]; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The models do not use
Yii:t()
which would be useful, for using the models in another language.This would for example in
OauthAccessTokens
change:to
The text was updated successfully, but these errors were encountered: