diff --git a/components/NFTMint/WriterMessage.vue b/components/NFTMint/WriterMessage.vue index a4b7f872..03238e11 100644 --- a/components/NFTMint/WriterMessage.vue +++ b/components/NFTMint/WriterMessage.vue @@ -143,7 +143,7 @@ > {{ $t('NFTPortal.label.initialBatch.input') }} @@ -156,7 +156,7 @@ {{ $t('NFTPortal.label.collectExpiryDate.input') }} - + @@ -192,10 +192,16 @@ export default class WriterMessage extends Vue { initialBatchOptions = [ { batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') }, - { batch: 0, price: 8 }, - { batch: 4, price: 128 }, - { batch: 7, price: 1024 }, - { batch: 9, price: 4096 }, + // To maintain the compatibility of the DB data, minting starts from batch 7 + { batch: 7, price: this.$t('NFTPortal.label.price', { price: 1 }) }, + { batch: 8, price: this.$t('NFTPortal.label.price', { price: 2 }) }, + { batch: 9, price: this.$t('NFTPortal.label.price', { price: 4 }) }, + { batch: 10, price: this.$t('NFTPortal.label.price', { price: 8 }) }, + { batch: 11, price: this.$t('NFTPortal.label.price', { price: 16 }) }, + { batch: 12, price: this.$t('NFTPortal.label.price', { price: 32 }) }, + { batch: 13, price: this.$t('NFTPortal.label.price', { price: 64 }) }, + { batch: 14, price: this.$t('NFTPortal.label.price', { price: 128 }) }, + { batch: 15, price: this.$t('NFTPortal.label.price', { price: 256 }) }, ] get shouldShowInitialBatchSettings() { diff --git a/locales/en.json b/locales/en.json index 7b33f98a..68a18540 100644 --- a/locales/en.json +++ b/locales/en.json @@ -274,8 +274,9 @@ "NFTPortal.label.defaultDescription": "(no description)", "NFTPortal.label.detailsPage": "NFT Details Page :", "NFTPortal.label.fileUpload": "Has a file? Upload to ISCN here", - "NFTPortal.label.initialBatch.input": "Initial Price (LIKE)", + "NFTPortal.label.initialBatch.input": "Initial Price (USD)", "NFTPortal.label.initialBatch.free": "All Free", + "NFTPortal.label.price": "${price}", "NFTPortal.label.input.email": "Join our community and stay in the loop on exclusive product updates and offers. {link} now!", "NFTPortal.label.input.link": "Please leave your email", "NFTPortal.label.Iscn": "ISCN ID",