product_not_avairable.js 318 B

123456789101112131415
  1. import { confirm_action } from "./confirm_action";
  2. export class product_not_avairable extends confirm_action {
  3. get _title() {
  4. return _("product-not-avairable");
  5. }
  6. get _description() {
  7. return _("this-product-is-not-avairable-yet");
  8. }
  9. get _info() {
  10. return true;
  11. }
  12. }