Commit 81db1111 authored by Isaac's avatar Isaac

Rename Zip code to Postal code

parent 6cfa9f92
Pipeline #259 canceled with stages
...@@ -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>
......
...@@ -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>
......
...@@ -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>KRA PIN: {{ object.vat_id | nullValue }}</p> <p class="fl-detail" i18n>KRA PIN: {{ object.vat_id | nullValue }}</p>
......
...@@ -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>
......
...@@ -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></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>
......
...@@ -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": "KRA PIN: {$INTERPOLATION}", "6606082188309093850": "KRA PIN: {$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",
......
...@@ -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": "KRA PIN: {$INTERPOLATION}", "6606082188309093850": "KRA PIN: {$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",
......
...@@ -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": "Posal 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": "KRA PIN: {$INTERPOLATION}", "6606082188309093850": "KRA PIN: {$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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment