Skip to content

Commit 2ced62c

Browse files
committed
content fix
1 parent 5c73ede commit 2ced62c

File tree

6 files changed

+17
-18
lines changed

6 files changed

+17
-18
lines changed

src/app/branding/c1-contents-config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export const c1Contents = {
411411
accountingPeriodLabel: 'Post entries in the current open accounting period.',
412412
accountingPeriodSubLabel: 'If the accounting period is closed, the expenses will be exported with a date stamp for the first day of the current open accounting period',
413413
autoCreateMerchantsAsVendorsSubLabel: 'Automatically create a new vendor in QuickBooks Online if an added merchant doesn\'t have a corresponding match.',
414-
customizeSectionSubLAbel: 'Customize the data that you\'d like to export from ' + brandingConfig.brandName + ' to QuickBooks Online by choosing which data points need to be exported.',
414+
customizeSectionSubLabel: 'Customize the data that you\'d like to export from ' + brandingConfig.brandName + ' to QuickBooks Online by choosing which data points need to be exported.',
415415
memoStructureSubLabel: 'Choose from a list of available data points that you\'d like to export to the description field in QuickBooks Online.',
416416
previewDescriptionFieldLabel: 'Preview of the description field'
417417
},
@@ -462,9 +462,9 @@ export const c1Contents = {
462462
filterPlaceholder: 'Select status',
463463
employeeMappingToastText: 'Employee mapping saved successfully.',
464464
categoryMappingToastText: 'Category mapping saved successfully.',
465-
mappingToastText: 'Mapping saved successfully.',
466-
mappingSerchZeroStateHeaderText: 'Looks like your search term doesn\'t match any ',
467-
mappingSerchZeroStateSubHeaderText: 'Try searching again',
465+
mappingToastText: 'Mapping saved successfully..',
466+
mappingSearchZeroStateHeaderText: 'Looks like your search term doesn\'t match any ',
467+
mappingSearchZeroStateSubHeaderText: 'Try searching again',
468468
mappedHeader: 'Mapped',
469469
unMappedHeader: 'Unmapped'
470470
},

src/app/branding/fyle-contents-config.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export const fyleContents = {
411411
accountingPeriodLabel: 'Post entries in the current accounting period',
412412
accountingPeriodSubLabel: 'If there are expenses for which the accounting period is closed in QuickBooks Online, you can export those to the current month by enabling this option.',
413413
autoCreateMerchantsAsVendorsSubLabel: brandingConfig.brandName + ' will auto-create a new vendor in QuickBooks Online if a merchant added by an employee does not have a corresponding match in QuickBooks Online. ',
414-
customizeSectionSubLAbel: 'In this section, you can customize the data that you\'d like to export from ' + brandingConfig.brandName + ' to QuickBooks Online You can choose what data points need to be exported and what shouldn\'t be.',
414+
customizeSectionSubLabel: 'In this section, you can customize the data that you\'d like to export from ' + brandingConfig.brandName + ' to QuickBooks Online You can choose what data points need to be exported and what shouldn\'t be.',
415415
memoStructureSubLabel: 'You can choose from a list of available data points that you\'d like to export to the description field in QuickBooks Online.',
416416
previewDescriptionFieldLabel: 'Preview of the Description Field'
417417
},
@@ -461,11 +461,11 @@ export const fyleContents = {
461461
},
462462
mapping: {
463463
filterPlaceholder: 'Select Status',
464-
employeeMappingToastText: 'Employee Mapping saved successfully',
465-
categoryMappingToastText: 'Category Mapping saved successfully',
466-
mappingToastText: 'Mapping saved successfully',
467-
mappingSerchZeroStateHeaderText: 'No search result to show yet!',
468-
mappingSerchZeroStateSubHeaderText: 'Looks like your search term does not match any of ',
464+
employeeMappingToastText: 'Employee Mapping saved successfully.',
465+
categoryMappingToastText: 'Category Mapping saved successfully.',
466+
mappingToastText: 'Mapping saved successfully.',
467+
mappingSearchZeroStateHeaderText: 'No search result to show yet!',
468+
mappingSearchZeroStateSubHeaderText: 'Looks like your search term does not match any of ',
469469
mappedHeader: 'MAPPED',
470470
unMappedHeader: 'UNMAPPED'
471471
},

src/app/core/models/branding/content-configuration.model.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ export type ContentConfiguration = {
395395
otherPreferencesSubLabel: string;
396396
accountingPeriodLabel: string;
397397
accountingPeriodSubLabel: string;
398-
customizeSectionSubLAbel: string;
398+
customizeSectionSubLabel: string;
399399
autoCreateVendorsLabel: string;
400400
paymentSyncLabel: string;
401401
customizationSubLabel: string;
@@ -457,8 +457,8 @@ export type ContentConfiguration = {
457457
employeeMappingToastText: string;
458458
categoryMappingToastText: string;
459459
mappingToastText: string;
460-
mappingSerchZeroStateHeaderText: string;
461-
mappingSerchZeroStateSubHeaderText: string;
460+
mappingSearchZeroStateHeaderText: string;
461+
mappingSearchZeroStateSubHeaderText: string;
462462
mappedHeader: string;
463463
unMappedHeader: string;
464464
},

src/app/integrations/qbd-direct/qbd-direct-main/qbd-direct-export-log/qbd-direct-skipped-export-log/qbd-direct-skipped-export-log.component.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { CommonModule } from '@angular/common';
22
import { Component, OnInit } from '@angular/core';
33
import { FormGroup, FormBuilder } from '@angular/forms';
44
import { Subject, debounceTime } from 'rxjs';
5-
import { brandingContent } from 'src/app/branding/branding-config';
6-
import { brandingConfig } from 'src/app/branding/c1-contents-config';
5+
import { brandingConfig, brandingContent } from 'src/app/branding/branding-config';
76
import { AccountingExportModel, SkippedAccountingExportModel } from 'src/app/core/models/db/accounting-export.model';
87
import { PaginatorPage } from 'src/app/core/models/enum/enum.model';
98
import { SkipExportList, SkipExportLogResponse, SkipExportLog } from 'src/app/core/models/intacct/db/expense-group.model';

src/app/integrations/qbo/qbo-shared/qbo-advanced-settings/qbo-advanced-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<div class="tw-mb-16-px">
114114
<app-configuration-step-sub-header
115115
[label]="'Customization'"
116-
[subLabel]="brandingContent.customizeSectionSubLAbel">
116+
[subLabel]="brandingContent.customizeSectionSubLabel">
117117
</app-configuration-step-sub-header>
118118
</div>
119119
<div class="tw-rounded-12-px tw-border-border-tertiary tw-border tw-bg-white tw-mb-16-px">

src/app/shared/components/helper/mapping/generic-mapping-v2/generic-mapping-v2.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
</div>
2121
<div *ngIf="!filteredMappingCount">
2222
<app-zero-state-with-illustration
23-
[mainText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSerchZeroStateHeaderText : brandingContent.mappingSerchZeroStateHeaderText + (this.sourceField | snakeCaseToSpaceCase | titlecase) + ' mappings.'"
24-
[subText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSerchZeroStateSubHeaderText + (this.sourceField | snakeCaseToSpaceCase | titlecase) + ' mappings': brandingContent.mappingSerchZeroStateSubHeaderText">
23+
[mainText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSearchZeroStateHeaderText : brandingContent.mappingSearchZeroStateHeaderText + (this.sourceField | snakeCaseToSpaceCase | titlecase) + ' mappings.'"
24+
[subText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSearchZeroStateSubHeaderText + (this.sourceField | snakeCaseToSpaceCase | titlecase) + ' mappings': brandingContent.mappingSearchZeroStateSubHeaderText">
2525
</app-zero-state-with-illustration>
2626
</div>
2727
</div>

0 commit comments

Comments
 (0)