mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
WIP feature/breadcrumb/fix_localize
This commit is contained in:
@@ -375,7 +375,7 @@ function AccountFormDialog({
|
||||
text={
|
||||
selectedSubaccount
|
||||
? selectedSubaccount.name
|
||||
: 'Select Parent Account'
|
||||
: <T id={'select_parent_account'}/>
|
||||
}
|
||||
/>
|
||||
</Select>
|
||||
|
||||
@@ -82,7 +82,7 @@ function ExchangeRateDialog({
|
||||
.then((response) => {
|
||||
closeDialog(name);
|
||||
AppToaster.show({
|
||||
message: 'the_exchange_rate_has_been_edited',
|
||||
message: formatMessage({id:'the_exchange_rate_has_been_successfully_edited'})
|
||||
});
|
||||
setSubmitting(false);
|
||||
})
|
||||
@@ -94,7 +94,7 @@ function ExchangeRateDialog({
|
||||
.then((response) => {
|
||||
closeDialog(name);
|
||||
AppToaster.show({
|
||||
message: 'the_exchangeRate_has_been_submit',
|
||||
message: formatMessage({id:'the_exchange_rate_has_been_successfully_created'})
|
||||
});
|
||||
setSubmitting(false);
|
||||
})
|
||||
|
||||
@@ -74,7 +74,7 @@ function InviteUserDialog({
|
||||
.then((response) => {
|
||||
closeDialog(name);
|
||||
AppToaster.show({
|
||||
message: 'the_user_details_has_been_updated',
|
||||
message: formatMessage({id:'the_user_details_has_been_updated'}),
|
||||
});
|
||||
setSubmitting(false);
|
||||
})
|
||||
|
||||
@@ -42,7 +42,7 @@ function ItemFromDialog({
|
||||
submitItemCategory({ values })
|
||||
.then((response) => {
|
||||
AppToaster.show({
|
||||
message: 'the_category_has_been_submit',
|
||||
message: formatMessage({id:'the_category_has_been_successfully_created'}),
|
||||
});
|
||||
})
|
||||
.catch((error) => {
|
||||
|
||||
Reference in New Issue
Block a user