1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 09:51:26 +00:00

delete useless translation (#6542)

This commit is contained in:
Michael An
2024-08-13 11:36:20 +08:00
committed by GitHub
parent 3a55d0d208
commit a0207e3853
5 changed files with 7 additions and 7 deletions

View File

@@ -57,7 +57,7 @@ class Plans extends Component {
assetQuota = (assetQuotaUnitCount) * currentPlan.asset_quota_unit;
totalAmount = assetQuotaUnitCount * currentPlan.price_per_asset_quota_unit;
} else {
toaster.danger(gettext('Internal Server Error.'));
toaster.danger(gettext('Internal Server Error'));
return;
}
@@ -264,7 +264,7 @@ class Plans extends Component {
} else if (paymentType === 'buy_quota') {
return this.renderBuyQuota();
} else {
toaster.danger(gettext('Internal Server Error.'));
toaster.danger(gettext('Internal Server Error'));
return;
}
}