Skip to content

Commit

Permalink
remove minimum element
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfidelis committed Mar 3, 2020
1 parent 6ecd431 commit 018197c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 11 deletions.
1 change: 0 additions & 1 deletion docs/ProductSummaryList.md
Expand Up @@ -52,4 +52,3 @@ For `InstallmentCriteriaEnum`:
| ---- | ----- | ----------- |
| Maximum without interest | `MAX_WITHOUT_INTEREST` | Will display price with maximum value before interest. |
| Maximum with interest | `MAX_WITH_INTEREST` | Will display price with maximum value after interest applied. |
| Minimum | `MIN` | Will display the lowest price before interest. |
3 changes: 1 addition & 2 deletions messages/context.json
Expand Up @@ -63,6 +63,5 @@
"admin/editor.productSummaryList.installmentCriteria.title": "Title of installment criteria property",
"admin/editor.productSummaryList.installmentCriteria.description": "Description of installment criteria property",
"admin/editor.productSummaryList.installmentCriteria.max-without-interest": "Maximum without interest enum name",
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Maximum with interest enum name",
"admin/editor.productSummaryList.installmentCriteria.min": "Minimum enum name"
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Maximum with interest enum name"
}
3 changes: 1 addition & 2 deletions messages/en.json
Expand Up @@ -63,6 +63,5 @@
"admin/editor.productSummaryList.installmentCriteria.title": "Prices with Installment",
"admin/editor.productSummaryList.installmentCriteria.description": "Choose what type of prices to be showed in the products displayed (e.g.: maximum without interest or with interest, etc).",
"admin/editor.productSummaryList.installmentCriteria.max-without-interest": "Maximum without interest",
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Maximum with interest",
"admin/editor.productSummaryList.installmentCriteria.min": "Minimum"
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Maximum with interest"
}
3 changes: 1 addition & 2 deletions messages/es.json
Expand Up @@ -63,6 +63,5 @@
"admin/editor.productSummaryList.installmentCriteria.title": "Criterio de precio a plazos",
"admin/editor.productSummaryList.installmentCriteria.description": "Elija qué tipo de precio se mostrará en los productos (por ejemplo, máximo sin interés, o con interés, etc.)",
"admin/editor.productSummaryList.installmentCriteria.max-without-interest": "Máximo sin interés",
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Máximo con interés",
"admin/editor.productSummaryList.installmentCriteria.min": "Mínimo"
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Máximo con interés"
}
3 changes: 1 addition & 2 deletions messages/pt.json
Expand Up @@ -63,6 +63,5 @@
"admin/editor.productSummaryList.installmentCriteria.title": "Preços com Parcelas",
"admin/editor.productSummaryList.installmentCriteria.description": "Escolha qual tipo de preço a ser mostrado nos produtos (ex.: máximo sem juros, ou com juros, etc).",
"admin/editor.productSummaryList.installmentCriteria.max-without-interest": "Máximo sem juros",
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Máximo com juros",
"admin/editor.productSummaryList.installmentCriteria.min": "Mínimo"
"admin/editor.productSummaryList.installmentCriteria.max-with-interest": "Máximo com juros"
}
3 changes: 1 addition & 2 deletions react/ProductSummaryList.js
Expand Up @@ -203,8 +203,7 @@ EnhancedProductList.getSchema = () => ({
enum: ['MAX_WITHOUT_INTEREST', 'MAX_WITH_INTEREST', 'MIN'],
enumNames: [
'admin/editor.productSummaryList.installmentCriteria.max-without-interest',
'admin/editor.productSummaryList.installmentCriteria.max-with-interest',
'admin/editor.productSummaryList.installmentCriteria.min'
'admin/editor.productSummaryList.installmentCriteria.max-with-interest'
]
},
},
Expand Down

0 comments on commit 018197c

Please sign in to comment.