Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: platform French support and Spanish fix #1469

Merged
merged 24 commits into from
Feb 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f3aeafa
fix: Invalid version: 15.2-15.3
Neosoulink Feb 9, 2022
04e92cb
feat: add franch language
Neosoulink Feb 9, 2022
8bad8ac
feat: add global interface french support
Neosoulink Feb 9, 2022
77f07c3
feat: Order entity french support
Neosoulink Feb 9, 2022
74975dc
style: code formatting
Neosoulink Feb 9, 2022
aaea0db
feat: add french support to admin-web-angular package
Neosoulink Feb 9, 2022
e6eca04
feat: add french language in carrier-mobile-ionic
Neosoulink Feb 9, 2022
6274148
feat: french lang support | carrier-mobile-ionic
Neosoulink Feb 10, 2022
e2fea60
feat: french lang support | admin-web-angular
Neosoulink Feb 10, 2022
16cd2d0
feat: french lang support | carrier-mobile-ionic
Neosoulink Feb 10, 2022
15ad27b
feat: french lang support | core
Neosoulink Feb 10, 2022
6f64205
feat: french lang support | core
Neosoulink Feb 10, 2022
9a6a2ba
feat: french lang support | merchant-tablet-ionic
Neosoulink Feb 10, 2022
66ec7a4
feat: french lang support | merchant-tablet-ionic
Neosoulink Feb 10, 2022
2da0988
feat: french lang support | merchant-tablet-ionic
Neosoulink Feb 10, 2022
37043d6
feat: french & spanish lang support | shop-mobile-ionic
Neosoulink Feb 10, 2022
15246e4
feat: french & spanish lang support | shop-mobile-ionic
Neosoulink Feb 10, 2022
8c602ca
feat: french lang support | shop-mobile-ionic
Neosoulink Feb 10, 2022
e1e1678
feat: french lang support | shop-mobile-ionic
Neosoulink Feb 10, 2022
e41163e
feat: french lang support | carrier-mobile-ionic
Neosoulink Feb 10, 2022
20e1d24
feat: french lang support | merchant-tablet-ionic
Neosoulink Feb 10, 2022
45eb6aa
feat: french lang support | shop-web-angular
Neosoulink Feb 10, 2022
c46b6cc
feat: french lang support | shop-web-angular
Neosoulink Feb 10, 2022
3fb33f4
feat: minor french lang support | shop-web-gatsby
Neosoulink Feb 10, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ export class BasicInfoFormComponent implements OnDestroy, OnInit {
Validators.required,
(control: AbstractControl) => {
const value = control.value;
const hasImage = BasicInfoFormComponent.hasValidImage(
value
);
const hasImage =
BasicInfoFormComponent.hasValidImage(value);
if (hasImage) {
return null;
} else {
Expand Down
3 changes: 2 additions & 1 deletion packages/admin-web-angular/src/assets/i18n/bg-BG.json
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,8 @@
"HEBREW": "Иврит",
"RUSSIAN": "Руски",
"BULGARIAN": "Български",
"SPANISH": "Spanish",
"SPANISH": "испански",
"FRENCH": "Френски",
"SELECT": "Изберете",
"Name": "Име",
"Id": "Идент. номер",
Expand Down
3 changes: 2 additions & 1 deletion packages/admin-web-angular/src/assets/i18n/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,8 @@
"HEBREW": "Hebrew",
"RUSSIAN": "Russian",
"BULGARIAN": "Bulgarian",
"SPANISH": "Spanish",
"SPANISH": "испански",
"FRENCH": "Френски",
"SELECT": "Select",
"Name": "Name",
"Id": "Id",
Expand Down
1 change: 1 addition & 0 deletions packages/admin-web-angular/src/assets/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,7 @@
"RUSSIAN": "Russian",
"BULGARIAN": "Bulgarian",
"SPANISH": "Spanish",
"FRENCH": "French",
"SELECT": "Select",
"Name": "Name",
"Id": "Id",
Expand Down
1 change: 1 addition & 0 deletions packages/admin-web-angular/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1133,6 +1133,7 @@
"RUSSIAN": "Russian",
"BULGARIAN": "Bulgarian",
"SPANISH": "Spanish",
"FRENCH": "French",
"SELECT": "Select",
"Name": "Name",
"Id": "Id",
Expand Down
2 changes: 2 additions & 0 deletions packages/admin-web-angular/src/assets/i18n/es-ES.json
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,8 @@
"RUSSIAN": "Ruso",
"BULGARIAN": "Búlgaro",
"ESPAÑOL": "Español",
"SPANISH": "Español",
"FRENCH": "Francés",
"SELECT": "Seleccionar",
"Name": "Nombre",
"Id": "Id",
Expand Down
Loading