Skip to content

Commit ed92b1c

Browse files
fixes
1 parent f81eb9b commit ed92b1c

File tree

5 files changed

+14
-14
lines changed
  • src
    • features/OrderConsultationButton/ui/OrderConsultationModal/ui/OrderConsultationForm/SubmitButton
    • shared
    • widgets/PriceCalculation/PriceCalculationForm/SubmitButton

5 files changed

+14
-14
lines changed

src/features/OrderConsultationButton/ui/OrderConsultationModal/ui/OrderConsultationForm/SubmitButton/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const SubmitButton = ({ label }: { label?: string }) => {
77
<input
88
className={cn(s.button, s.buttonSubmit)}
99
type="submit"
10-
value={label || "Расчитать"}
10+
value={label || "Рассчитать"}
1111
/>
1212
);
1313
};

src/shared/i18n/labels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const LABELS = {
135135
DELETE_FILE: 'удалить файл',
136136
VIEW_FILE: 'просмотр файла',
137137
FILE_LINK: 'ссылка на файл',
138-
CALCULATE: 'Расчитать',
138+
CALCULATE: 'Рассчитать',
139139
},
140140

141141
// Карточка заказа
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import React from "react";
2-
import cn from "classnames";
3-
import s from "./style.module.scss";
1+
import React from 'react';
2+
import cn from 'classnames';
3+
import s from './style.module.scss';
44

55
export const SubmitButton = ({ label }: { label?: string }) => {
66
return (
77
<input
88
className={cn(s.button, s.buttonSubmit)}
99
type="submit"
10-
value={label || "Расчитать"}
10+
value={label || 'Рассчитать'}
1111
/>
1212
);
1313
};
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import React from "react";
2-
import cn from "classnames";
3-
import s from "./style.module.scss";
1+
import React from 'react';
2+
import cn from 'classnames';
3+
import s from './style.module.scss';
44

55
export const SubmitButton = ({ label }: { label?: string }) => {
66
return (
77
<input
88
className={cn(s.button, s.buttonSubmit)}
99
type="submit"
10-
value={label || "Расчитать"}
10+
value={label || 'с'}
1111
/>
1212
);
1313
};
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import React from "react";
2-
import cn from "classnames";
3-
import s from "./style.module.scss";
1+
import React from 'react';
2+
import cn from 'classnames';
3+
import s from './style.module.scss';
44

55
export const SubmitButton = () => {
66
return (
77
<input
88
className={cn(s.button, s.buttonSubmit)}
99
type="submit"
10-
value="Расчитать"
10+
value="Рассчитать"
1111
/>
1212
);
1313
};

0 commit comments

Comments
 (0)