原文:
- 代碼: 選擇全部
Warning: This attribute group cannot be deleted as it is currently assigned to %s attributes!
譯文:
- 代碼: 選擇全部
警告:此屬性群組無法刪除,因為它目前已指定給 %s 個屬性!
這是後台常用的慣用句,它的組成架構大概是這樣。
- 代碼: 選擇全部
Warning: This *.* cannot be deleted as it is currently assigned to %s *.*!
以及:upload/admin/language/english/catalog/information.php
- 代碼: 選擇全部
$_['error_account'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store account terms!';
$_['error_checkout'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store checkout terms!';
$_['error_affiliate'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store affiliate terms!';
$_['error_store'] = 'Warning: This information page cannot be deleted as its currently used by %s stores!';
upload/admin/language/english/localisation/length_class.php
- 代碼: 選擇全部
$_['error_default'] = 'Warning: This length class cannot be deleted as it is currently assigned as the default store length class!';
upload/admin/language/english/localisation/weight_class.php
- 代碼: 選擇全部
$_['error_default'] = 'Warning: This weight class cannot be deleted as it is currently assigned as the default store weight class!';
其它的語系檔,也是這樣的模式。
此外付款模組也有這一行通用的慣用句,只要搞定這行就能完成不少付款模組。
- 代碼: 選擇全部
$_['entry_total'] = 'Total:<br /><span class="help">The checkout total the order must reach before this payment method becomes active.</span>';
以上還請兩位的確認。