Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
N
ngfronted-july
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Isaac
ngfronted-july
Commits
4c12f060
Commit
4c12f060
authored
Aug 08, 2024
by
Isaac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename Zip code to Postal code
parent
01b8f320
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
enduser-client-detail-overview.component.html
...il-overview/enduser-client-detail-overview.component.html
+1
-1
client-edit-form.component.html
.../clients/client-edit-form/client-edit-form.component.html
+2
-2
contact-details-overview.component.html
...-details-overview/contact-details-overview.component.html
+1
-1
contact-edit-form.component.html
...ntacts/contact-edit-form/contact-edit-form.component.html
+2
-2
client-details-overview.component.html
...t-details-overview/client-details-overview.component.html
+1
-1
template-enduser.json
src/assets/locale/template-enduser.json
+3
-3
template-staff.json
src/assets/locale/template-staff.json
+3
-3
template.json
src/assets/locale/template.json
+3
-3
No files found.
src/app/enduser/clients/tabs/enduser-client-detail-overview/enduser-client-detail-overview.component.html
View file @
4c12f060
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
</p>
</p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
</p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
</p>
<p
class=
"fl-detail"
*
ngIf=
"object.address2"
>
{{ object.address2 }}
</p>
<p
class=
"fl-detail"
*
ngIf=
"object.address2"
>
{{ object.address2 }}
</p>
<p
class=
"fl-detail"
i18n
>
Zip
code: {{ object.zip_code }}
</p>
<p
class=
"fl-detail"
i18n
>
Postal
code: {{ object.zip_code }}
</p>
<p
class=
"fl-detail"
i18n
>
Phone: {{ object.phone }}
</p>
<p
class=
"fl-detail"
i18n
>
Phone: {{ object.phone }}
</p>
<p
class=
"fl-detail"
i18n
>
ID: {{ object.id }}
</p>
<p
class=
"fl-detail"
i18n
>
ID: {{ object.id }}
</p>
<p
class=
"fl-detail"
i18n
>
Created on:
<app-date-displayer
[
date
]="
object
.
date_created
"
></app-date-displayer></p>
<p
class=
"fl-detail"
i18n
>
Created on:
<app-date-displayer
[
date
]="
object
.
date_created
"
></app-date-displayer></p>
...
...
src/app/shared/common-tabs/clients-users/clients/client-edit-form/client-edit-form.component.html
View file @
4c12f060
...
@@ -105,8 +105,8 @@
...
@@ -105,8 +105,8 @@
<mat-error>
{{ fieldErrors['city'] }}
</mat-error>
<mat-error>
{{ fieldErrors['city'] }}
</mat-error>
</mat-form-field>
</mat-form-field>
<mat-form-field
appFlex=
"33"
ltSmFlex=
"100"
>
<mat-form-field
appFlex=
"33"
ltSmFlex=
"100"
>
<mat-label
i18n
>
ZIP
code
</mat-label>
<mat-label
i18n
>
Postal
code
</mat-label>
<input
matInput
placeholder=
"
ZIP
code"
i18n-placeholder
type=
"text"
formControlName=
"zip_code"
required
>
<input
matInput
placeholder=
"
Postal
code"
i18n-placeholder
type=
"text"
formControlName=
"zip_code"
required
>
<mat-error>
{{ fieldErrors['zip_code'] }}
</mat-error>
<mat-error>
{{ fieldErrors['zip_code'] }}
</mat-error>
</mat-form-field>
</mat-form-field>
</div>
</div>
...
...
src/app/shared/plugins/common-tabs/domains/contacts/contact-details-overview/contact-details-overview.component.html
View file @
4c12f060
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<span
*
ngIf=
"object.state"
>
, {{ object.state }}
</span>
<span
*
ngIf=
"object.state"
>
, {{ object.state }}
</span>
</p>
</p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
<span
*
ngIf=
"object.address2"
>
, {{ object.address2 }}
</span></p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
<span
*
ngIf=
"object.address2"
>
, {{ object.address2 }}
</span></p>
<p
class=
"fl-detail"
i18n
>
Zip
code: {{ object.zip_code }}
</p>
<p
class=
"fl-detail"
i18n
>
Postal
code: {{ object.zip_code }}
</p>
<br>
<br>
<p
class=
"fl-detail"
i18n
>
Company: {{ object.company | nullValue }}
</p>
<p
class=
"fl-detail"
i18n
>
Company: {{ object.company | nullValue }}
</p>
<p
class=
"fl-detail"
i18n
>
Vat ID: {{ object.vat_id | nullValue }}
</p>
<p
class=
"fl-detail"
i18n
>
Vat ID: {{ object.vat_id | nullValue }}
</p>
...
...
src/app/shared/plugins/common-tabs/domains/contacts/contact-edit-form/contact-edit-form.component.html
View file @
4c12f060
...
@@ -58,8 +58,8 @@
...
@@ -58,8 +58,8 @@
<mat-error>
{{fieldErrors['city'] }}
</mat-error>
<mat-error>
{{fieldErrors['city'] }}
</mat-error>
</mat-form-field>
</mat-form-field>
<mat-form-field
appFlex=
"33"
>
<mat-form-field
appFlex=
"33"
>
<mat-label
i18n
>
Zip
code
</mat-label>
<mat-label
i18n
>
Postal
code
</mat-label>
<input
matInput
placeholder=
"
Zip
code"
i18n-placeholder
type=
"text"
formControlName=
"zip_code"
required
>
<input
matInput
placeholder=
"
Postal
code"
i18n-placeholder
type=
"text"
formControlName=
"zip_code"
required
>
<mat-error>
{{fieldErrors['zip_code']}}
</mat-error>
<mat-error>
{{fieldErrors['zip_code']}}
</mat-error>
</mat-form-field>
</mat-form-field>
</div>
</div>
...
...
src/app/staff/clients-users/clients/tabs/client-details-overview/client-details-overview.component.html
View file @
4c12f060
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
</p>
</p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
</p>
<p
class=
"fl-detail"
i18n
>
Address: {{ object.address1 }}
</p>
<p
class=
"fl-detail"
*
ngIf=
"object.address2"
>
{{ object.address2 }}
</p>
<p
class=
"fl-detail"
*
ngIf=
"object.address2"
>
{{ object.address2 }}
</p>
<p
class=
"fl-detail"
i18n
>
Zip
code: {{ object.zip_code }}
</p>
<p
class=
"fl-detail"
i18n
>
Postal
code: {{ object.zip_code }}
</p>
<p
class=
"fl-detail"
i18n
>
Phone: {{ object.phone }}
</p>
<p
class=
"fl-detail"
i18n
>
Phone: {{ object.phone }}
</p>
<p
class=
"fl-detail"
i18n
>
ID: {{ object.id }}
</p>
<p
class=
"fl-detail"
i18n
>
ID: {{ object.id }}
</p>
<p
class=
"fl-detail"
i18n
>
Created on:
<app-date-displayer
[
date
]="
object
.
date_created
"
></app-date-displayer></p>
<p
class=
"fl-detail"
i18n
>
Created on:
<app-date-displayer
[
date
]="
object
.
date_created
"
></app-date-displayer></p>
...
...
src/assets/locale/template-enduser.json
View file @
4c12f060
...
@@ -179,7 +179,7 @@
...
@@ -179,7 +179,7 @@
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"9095464417187338830"
:
" City: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"9095464417187338830"
:
" City: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"9014435997703025963"
:
"Address: {$INTERPOLATION}"
,
"9014435997703025963"
:
"Address: {$INTERPOLATION}"
,
"6062938507378772268"
:
"
Zip
code: {$INTERPOLATION}"
,
"6062938507378772268"
:
"
Postal
code: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"561897701456319077"
:
"ID: {$INTERPOLATION}"
,
"561897701456319077"
:
"ID: {$INTERPOLATION}"
,
"6206163402693471294"
:
"Created on: {$START_TAG_APP_DATE_DISPLAYER}{$CLOSE_TAG_APP_DATE_DISPLAYER}"
,
"6206163402693471294"
:
"Created on: {$START_TAG_APP_DATE_DISPLAYER}{$CLOSE_TAG_APP_DATE_DISPLAYER}"
,
...
@@ -1683,7 +1683,7 @@
...
@@ -1683,7 +1683,7 @@
"6462484044107864216"
:
"Address line 1"
,
"6462484044107864216"
:
"Address line 1"
,
"2276461317038186144"
:
"Address line 2"
,
"2276461317038186144"
:
"Address line 2"
,
"8246969862224662994"
:
"Country/state"
,
"8246969862224662994"
:
"Country/state"
,
"3260065843273502537"
:
"
ZIP
code"
,
"3260065843273502537"
:
"
Postal
code"
,
"8759087905055422037"
:
" Validate phone "
,
"8759087905055422037"
:
" Validate phone "
,
"6021375693420723366"
:
"Default currency"
,
"6021375693420723366"
:
"Default currency"
,
"5944812089887969249"
:
"Groups"
,
"5944812089887969249"
:
"Groups"
,
...
@@ -2415,7 +2415,7 @@
...
@@ -2415,7 +2415,7 @@
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"4625188608595239079"
:
"Account e-mail address"
,
"4625188608595239079"
:
"Account e-mail address"
,
"1200737650075932684"
:
"
Zip
code"
,
"1200737650075932684"
:
"
Postal
code"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"4396065180642989299"
:
"Failed to save contact"
,
"4396065180642989299"
:
"Failed to save contact"
,
...
...
src/assets/locale/template-staff.json
View file @
4c12f060
...
@@ -509,7 +509,7 @@
...
@@ -509,7 +509,7 @@
"2276461317038186144"
:
"Address line 2"
,
"2276461317038186144"
:
"Address line 2"
,
"8246969862224662994"
:
"Country/state"
,
"8246969862224662994"
:
"Country/state"
,
"2314075913167237221"
:
"City"
,
"2314075913167237221"
:
"City"
,
"3260065843273502537"
:
"
ZIP
code"
,
"3260065843273502537"
:
"
Postal
code"
,
"8759087905055422037"
:
" Validate phone "
,
"8759087905055422037"
:
" Validate phone "
,
"6021375693420723366"
:
"Default currency"
,
"6021375693420723366"
:
"Default currency"
,
"5944812089887969249"
:
"Groups"
,
"5944812089887969249"
:
"Groups"
,
...
@@ -1363,13 +1363,13 @@
...
@@ -1363,13 +1363,13 @@
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"480012815160790325"
:
"City: {$INTERPOLATION} {$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"480012815160790325"
:
"City: {$INTERPOLATION} {$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"2229177999101073902"
:
"Address: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"2229177999101073902"
:
"Address: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"6062938507378772268"
:
"
Zip
code: {$INTERPOLATION}"
,
"6062938507378772268"
:
"
Postal
code: {$INTERPOLATION}"
,
"612594075311067264"
:
"Company: {$INTERPOLATION}"
,
"612594075311067264"
:
"Company: {$INTERPOLATION}"
,
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"4625188608595239079"
:
"Account e-mail address"
,
"4625188608595239079"
:
"Account e-mail address"
,
"1200737650075932684"
:
"
Zip
code"
,
"1200737650075932684"
:
"
Postal
code"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"4396065180642989299"
:
"Failed to save contact"
,
"4396065180642989299"
:
"Failed to save contact"
,
...
...
src/assets/locale/template.json
View file @
4c12f060
...
@@ -179,7 +179,7 @@
...
@@ -179,7 +179,7 @@
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"8985537790514514521"
:
"Country: {$INTERPOLATION}"
,
"9095464417187338830"
:
" City: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"9095464417187338830"
:
" City: {$INTERPOLATION}{$START_TAG_SPAN}, {$INTERPOLATION_1}{$CLOSE_TAG_SPAN}"
,
"9014435997703025963"
:
"Address: {$INTERPOLATION}"
,
"9014435997703025963"
:
"Address: {$INTERPOLATION}"
,
"6062938507378772268"
:
"
Zip
code: {$INTERPOLATION}"
,
"6062938507378772268"
:
"
Postal
code: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"9090737449564444440"
:
"Phone: {$INTERPOLATION}"
,
"561897701456319077"
:
"ID: {$INTERPOLATION}"
,
"561897701456319077"
:
"ID: {$INTERPOLATION}"
,
"6206163402693471294"
:
"Created on: {$START_TAG_APP_DATE_DISPLAYER}{$CLOSE_TAG_APP_DATE_DISPLAYER}"
,
"6206163402693471294"
:
"Created on: {$START_TAG_APP_DATE_DISPLAYER}{$CLOSE_TAG_APP_DATE_DISPLAYER}"
,
...
@@ -1683,7 +1683,7 @@
...
@@ -1683,7 +1683,7 @@
"6462484044107864216"
:
"Address line 1"
,
"6462484044107864216"
:
"Address line 1"
,
"2276461317038186144"
:
"Address line 2"
,
"2276461317038186144"
:
"Address line 2"
,
"8246969862224662994"
:
"Country/state"
,
"8246969862224662994"
:
"Country/state"
,
"3260065843273502537"
:
"
ZIP
code"
,
"3260065843273502537"
:
"
Postal
code"
,
"8759087905055422037"
:
" Validate phone "
,
"8759087905055422037"
:
" Validate phone "
,
"6021375693420723366"
:
"Default currency"
,
"6021375693420723366"
:
"Default currency"
,
"5944812089887969249"
:
"Groups"
,
"5944812089887969249"
:
"Groups"
,
...
@@ -2415,7 +2415,7 @@
...
@@ -2415,7 +2415,7 @@
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"6606082188309093850"
:
"Vat ID: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"6097302883343848258"
:
"Fax: {$INTERPOLATION}"
,
"4625188608595239079"
:
"Account e-mail address"
,
"4625188608595239079"
:
"Account e-mail address"
,
"1200737650075932684"
:
"
Zip
code"
,
"1200737650075932684"
:
"
Postal
code"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"6348420747199731341"
:
"Invalid custom fields"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"2596133738330715980"
:
"Contact saved successfully"
,
"4396065180642989299"
:
"Failed to save contact"
,
"4396065180642989299"
:
"Failed to save contact"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment