mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 12:04:02 +00:00
fix(miniapp): translate Exact amounts and Percentages split options
This commit is contained in:
@@ -169,6 +169,8 @@ export const dictionary = {
|
||||
purchaseSplitTitle: 'Split',
|
||||
purchaseSplitModeLabel: 'Split mode',
|
||||
purchaseSplitEqual: 'Equal split',
|
||||
purchaseSplitExact: 'Exact amounts',
|
||||
purchaseSplitPercentage: 'Percentages',
|
||||
purchaseSplitCustom: 'Custom amounts',
|
||||
purchaseParticipantLabel: 'Participates',
|
||||
participantIncluded: 'Included',
|
||||
@@ -522,6 +524,8 @@ export const dictionary = {
|
||||
purchaseSplitTitle: 'Разделение',
|
||||
purchaseSplitModeLabel: 'Режим разделения',
|
||||
purchaseSplitEqual: 'Поровну',
|
||||
purchaseSplitExact: 'Точные суммы',
|
||||
purchaseSplitPercentage: 'Проценты',
|
||||
purchaseSplitCustom: 'Свои суммы',
|
||||
purchaseParticipantLabel: 'Участвует',
|
||||
participantIncluded: 'Участвует',
|
||||
|
||||
@@ -549,8 +549,8 @@ export default function LedgerRoute() {
|
||||
|
||||
const splitModeOptions = () => [
|
||||
{ value: 'equal', label: copy().purchaseSplitEqual },
|
||||
{ value: 'exact', label: 'Exact amounts' },
|
||||
{ value: 'percentage', label: 'Percentages' }
|
||||
{ value: 'exact', label: copy().purchaseSplitExact },
|
||||
{ value: 'percentage', label: copy().purchaseSplitPercentage }
|
||||
]
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user