Commit f61e3c5d authored by Peter Hegman's avatar Peter Hegman

Merge branch 'ag/346620-move-add-on-related-data-to-graphql-typo' into 'master'

Fix typo on constant name

See merge request gitlab-org/gitlab!75730
parents 1e87fad1 aad023d3
...@@ -29,7 +29,7 @@ export const I18N_CI_MINUTES_SUMMARY_TOTAL = s__('Checkout|Total minutes: %{quan ...@@ -29,7 +29,7 @@ export const I18N_CI_MINUTES_SUMMARY_TOTAL = s__('Checkout|Total minutes: %{quan
export const I18N_CI_MINUTES_ALERT_TEXT = s__( export const I18N_CI_MINUTES_ALERT_TEXT = s__(
"Checkout|CI minute packs are only used after you've used your subscription's monthly quota. The additional minutes will roll over month to month and are valid for one year.", "Checkout|CI minute packs are only used after you've used your subscription's monthly quota. The additional minutes will roll over month to month and are valid for one year.",
); );
export const I18N_CI_MINUTES_PRICE_PRE_UNIT = s__( export const I18N_CI_MINUTES_PRICE_PER_UNIT = s__(
'Checkout|$%{selectedPlanPrice} per pack of 1,000 minutes', 'Checkout|$%{selectedPlanPrice} per pack of 1,000 minutes',
); );
export const I18N_CI_MINUTES_TITLE = s__("Checkout|%{name}'s CI minutes"); export const I18N_CI_MINUTES_TITLE = s__("Checkout|%{name}'s CI minutes");
...@@ -40,7 +40,7 @@ export const I18N_STORAGE_FORMULA_TOTAL = s__('Checkout|%{quantity} GB of storag ...@@ -40,7 +40,7 @@ export const I18N_STORAGE_FORMULA_TOTAL = s__('Checkout|%{quantity} GB of storag
export const i18nStorageSummaryTitle = (quantity) => export const i18nStorageSummaryTitle = (quantity) =>
n__('Checkout|%{quantity} storage pack', 'Checkout|%{quantity} storage packs', quantity); n__('Checkout|%{quantity} storage pack', 'Checkout|%{quantity} storage packs', quantity);
export const I18N_STORAGE_SUMMARY_TOTAL = s__('Checkout|Total storage: %{quantity} GB'); export const I18N_STORAGE_SUMMARY_TOTAL = s__('Checkout|Total storage: %{quantity} GB');
export const I18N_STORAGE_PRICE_PRE_UNIT = s__( export const I18N_STORAGE_PRICE_PER_UNIT = s__(
'Checkout|$%{selectedPlanPrice} per 10 GB storage per pack', 'Checkout|$%{selectedPlanPrice} per 10 GB storage per pack',
); );
export const I18N_STORAGE_TITLE = s__("Checkout|%{name}'s storage subscription"); export const I18N_STORAGE_TITLE = s__("Checkout|%{name}'s storage subscription");
......
...@@ -3,7 +3,7 @@ import BuyAddonsApp from 'ee/subscriptions/buy_addons_shared/components/app.vue' ...@@ -3,7 +3,7 @@ import BuyAddonsApp from 'ee/subscriptions/buy_addons_shared/components/app.vue'
import { import {
CI_MINUTES_PER_PACK, CI_MINUTES_PER_PACK,
planTags, planTags,
I18N_CI_MINUTES_PRICE_PRE_UNIT, I18N_CI_MINUTES_PRICE_PER_UNIT,
I18N_CI_MINUTES_PRODUCT_LABEL, I18N_CI_MINUTES_PRODUCT_LABEL,
I18N_CI_MINUTES_PRODUCT_UNIT, I18N_CI_MINUTES_PRODUCT_UNIT,
I18N_DETAILS_FORMULA, I18N_DETAILS_FORMULA,
...@@ -31,7 +31,7 @@ export default { ...@@ -31,7 +31,7 @@ export default {
formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT, formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT,
formulaTotal: I18N_CI_MINUTES_FORMULA_TOTAL, formulaTotal: I18N_CI_MINUTES_FORMULA_TOTAL,
hasExpiration: false, hasExpiration: false,
pricePerUnit: I18N_CI_MINUTES_PRICE_PRE_UNIT, pricePerUnit: I18N_CI_MINUTES_PRICE_PER_UNIT,
productLabel: I18N_CI_MINUTES_PRODUCT_LABEL, productLabel: I18N_CI_MINUTES_PRODUCT_LABEL,
productUnit: I18N_CI_MINUTES_PRODUCT_UNIT, productUnit: I18N_CI_MINUTES_PRODUCT_UNIT,
quantityPerPack: CI_MINUTES_PER_PACK, quantityPerPack: CI_MINUTES_PER_PACK,
......
...@@ -9,7 +9,7 @@ import { ...@@ -9,7 +9,7 @@ import {
i18nStorageSummaryTitle, i18nStorageSummaryTitle,
I18N_STORAGE_SUMMARY_TOTAL, I18N_STORAGE_SUMMARY_TOTAL,
I18N_STORAGE_TITLE, I18N_STORAGE_TITLE,
I18N_STORAGE_PRICE_PRE_UNIT, I18N_STORAGE_PRICE_PER_UNIT,
I18N_STORAGE_TOOLTIP_NOTE, I18N_STORAGE_TOOLTIP_NOTE,
planTags, planTags,
STORAGE_PER_PACK, STORAGE_PER_PACK,
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT, formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT,
formulaTotal: I18N_STORAGE_FORMULA_TOTAL, formulaTotal: I18N_STORAGE_FORMULA_TOTAL,
hasExpiration: true, hasExpiration: true,
pricePerUnit: I18N_STORAGE_PRICE_PRE_UNIT, pricePerUnit: I18N_STORAGE_PRICE_PER_UNIT,
productLabel: I18N_STORAGE_PRODUCT_LABEL, productLabel: I18N_STORAGE_PRODUCT_LABEL,
productUnit: I18N_STORAGE_PRODUCT_UNIT, productUnit: I18N_STORAGE_PRODUCT_UNIT,
quantityPerPack: STORAGE_PER_PACK, quantityPerPack: STORAGE_PER_PACK,
......
...@@ -11,7 +11,7 @@ import { ...@@ -11,7 +11,7 @@ import {
i18nStorageSummaryTitle, i18nStorageSummaryTitle,
I18N_STORAGE_SUMMARY_TOTAL, I18N_STORAGE_SUMMARY_TOTAL,
I18N_STORAGE_TITLE, I18N_STORAGE_TITLE,
I18N_STORAGE_PRICE_PRE_UNIT, I18N_STORAGE_PRICE_PER_UNIT,
I18N_STORAGE_TOOLTIP_NOTE, I18N_STORAGE_TOOLTIP_NOTE,
planTags, planTags,
STORAGE_PER_PACK, STORAGE_PER_PACK,
...@@ -43,7 +43,7 @@ describe('Buy Storage App', () => { ...@@ -43,7 +43,7 @@ describe('Buy Storage App', () => {
formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT, formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT,
formulaTotal: I18N_STORAGE_FORMULA_TOTAL, formulaTotal: I18N_STORAGE_FORMULA_TOTAL,
hasExpiration: true, hasExpiration: true,
pricePerUnit: I18N_STORAGE_PRICE_PRE_UNIT, pricePerUnit: I18N_STORAGE_PRICE_PER_UNIT,
productLabel: I18N_STORAGE_PRODUCT_LABEL, productLabel: I18N_STORAGE_PRODUCT_LABEL,
productUnit: I18N_STORAGE_PRODUCT_UNIT, productUnit: I18N_STORAGE_PRODUCT_UNIT,
quantityPerPack: STORAGE_PER_PACK, quantityPerPack: STORAGE_PER_PACK,
......
...@@ -4,7 +4,7 @@ import App from 'ee/subscriptions/buy_minutes/components/app.vue'; ...@@ -4,7 +4,7 @@ import App from 'ee/subscriptions/buy_minutes/components/app.vue';
import { import {
CI_MINUTES_PER_PACK, CI_MINUTES_PER_PACK,
planTags, planTags,
I18N_CI_MINUTES_PRICE_PRE_UNIT, I18N_CI_MINUTES_PRICE_PER_UNIT,
I18N_CI_MINUTES_PRODUCT_LABEL, I18N_CI_MINUTES_PRODUCT_LABEL,
I18N_CI_MINUTES_PRODUCT_UNIT, I18N_CI_MINUTES_PRODUCT_UNIT,
I18N_DETAILS_FORMULA, I18N_DETAILS_FORMULA,
...@@ -44,7 +44,7 @@ describe('Buy Minutes App', () => { ...@@ -44,7 +44,7 @@ describe('Buy Minutes App', () => {
formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT, formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT,
formulaTotal: I18N_CI_MINUTES_FORMULA_TOTAL, formulaTotal: I18N_CI_MINUTES_FORMULA_TOTAL,
hasExpiration: false, hasExpiration: false,
pricePerUnit: I18N_CI_MINUTES_PRICE_PRE_UNIT, pricePerUnit: I18N_CI_MINUTES_PRICE_PER_UNIT,
productLabel: I18N_CI_MINUTES_PRODUCT_LABEL, productLabel: I18N_CI_MINUTES_PRODUCT_LABEL,
productUnit: I18N_CI_MINUTES_PRODUCT_UNIT, productUnit: I18N_CI_MINUTES_PRODUCT_UNIT,
quantityPerPack: CI_MINUTES_PER_PACK, quantityPerPack: CI_MINUTES_PER_PACK,
......
...@@ -10,7 +10,7 @@ import { ...@@ -10,7 +10,7 @@ import {
i18nStorageSummaryTitle, i18nStorageSummaryTitle,
I18N_STORAGE_SUMMARY_TOTAL, I18N_STORAGE_SUMMARY_TOTAL,
I18N_STORAGE_TITLE, I18N_STORAGE_TITLE,
I18N_STORAGE_PRICE_PRE_UNIT, I18N_STORAGE_PRICE_PER_UNIT,
I18N_STORAGE_TOOLTIP_NOTE, I18N_STORAGE_TOOLTIP_NOTE,
planTags, planTags,
STORAGE_PER_PACK, STORAGE_PER_PACK,
...@@ -44,7 +44,7 @@ describe('Buy Storage App', () => { ...@@ -44,7 +44,7 @@ describe('Buy Storage App', () => {
formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT, formulaWithAlert: I18N_DETAILS_FORMULA_WITH_ALERT,
formulaTotal: I18N_STORAGE_FORMULA_TOTAL, formulaTotal: I18N_STORAGE_FORMULA_TOTAL,
hasExpiration: true, hasExpiration: true,
pricePerUnit: I18N_STORAGE_PRICE_PRE_UNIT, pricePerUnit: I18N_STORAGE_PRICE_PER_UNIT,
productLabel: I18N_STORAGE_PRODUCT_LABEL, productLabel: I18N_STORAGE_PRODUCT_LABEL,
productUnit: I18N_STORAGE_PRODUCT_UNIT, productUnit: I18N_STORAGE_PRODUCT_UNIT,
quantityPerPack: STORAGE_PER_PACK, quantityPerPack: STORAGE_PER_PACK,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment