Skip to content

Commit

Permalink
translate sector
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytakis authored and theofilis committed Jan 26, 2021
1 parent 9534630 commit f1411f7
Show file tree
Hide file tree
Showing 14 changed files with 653 additions and 632 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class NewPartnerComponent implements OnInit, OnDestroy {
private authenticationService: AuthenticationService
) {
// this.paymentsList = this.staticDataService.getPaymentsList;
this.sectorList = this.staticDataService.getSectorList;
this.sectorList = this.staticDataService.getSectorsList;
this.validator = this.staticDataService.getValidators.user;
this.unsubscribe = new Subject();
}
Expand Down
74 changes: 37 additions & 37 deletions src/app/auth/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import { StaticDataService } from '../../core/helpers/static-data.service';
})
export class LoginComponent implements OnInit, OnDestroy {

/**
* Form
*/
/**
* Form
*/
authForm: FormGroup;
validator: any;

Expand All @@ -34,18 +34,18 @@ export class LoginComponent implements OnInit, OnDestroy {

// Read more: => https://brianflove.com/2016/12/11/anguar-2-unsubscribe-observables/

/**
* Component Constructor
*
* @param router: Router
* @param fb: FormBuilder,
* @param cdr: ChangeDetectorRef
* @param activatedRoute: ActivatedRoute
* @param translate: TranslateService
* @param authNoticeService: MessageNoticeService
* @param authenticationService: AuthenticationService,
* @param staticDataService: StaticDataService
*/
/**
* Component Constructor
*
* @param router: Router
* @param fb: FormBuilder,
* @param cdr: ChangeDetectorRef
* @param activatedRoute: ActivatedRoute
* @param translate: TranslateService
* @param authNoticeService: MessageNoticeService
* @param authenticationService: AuthenticationService,
* @param staticDataService: StaticDataService
*/
constructor(
private router: Router,
private fb: FormBuilder,
Expand All @@ -60,13 +60,13 @@ export class LoginComponent implements OnInit, OnDestroy {
this.unsubscribe = new Subject();
}

/**
* @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks
*/
/**
* @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks
*/

/**
* On Init
*/
/**
* On Init
*/
ngOnInit(): void {
this.initializeForm();

Expand All @@ -76,19 +76,19 @@ export class LoginComponent implements OnInit, OnDestroy {
});
}

/**
* On destroy
*/
/**
* On destroy
*/
ngOnDestroy(): void {
this.authNoticeService.setNotice(null);
this.unsubscribe.next();
this.unsubscribe.complete();
this.loading = false;
}

/**
* Form Initialization
*/
/**
* Form Initialization
*/
initializeForm() {
this.authForm = this.fb.group({
email: ['', Validators.compose([
Expand All @@ -107,9 +107,9 @@ export class LoginComponent implements OnInit, OnDestroy {
});
}

/**
* On Submit Form
*/
/**
* On Submit Form
*/
submitForm(): void {
if (this.loading) return;
this.authNoticeService.setNotice(null);
Expand All @@ -136,7 +136,7 @@ export class LoginComponent implements OnInit, OnDestroy {
if ((data.action) && (data.action === 'need_email_verification')) {
this.authNoticeService.setNotice(
this.translate.instant('AUTH.LOGIN.EMAIL_NEEDS_VERIFICATION'), 'warning');
this.router.navigateByUrl('auth/need-verification');
// this.router.navigateByUrl('auth/need-verification');
}
else if ((data.action) && (data.action === 'need_password_verification')) {
this.authNoticeService.setNotice(
Expand Down Expand Up @@ -164,12 +164,12 @@ export class LoginComponent implements OnInit, OnDestroy {
.subscribe();
}

/**
* Checking control validation
*
* @param controlName: string => Equals to formControlName
* @param validationType: string => Equals to valitors name
*/
/**
* Checking control validation
*
* @param controlName: string => Equals to formControlName
* @param validationType: string => Equals to valitors name
*/
isControlHasError(controlName: string, validationType: string): boolean {
const control = this.authForm.controls[controlName];
if (!control) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ <h3>{{ 'AUTH.VERIFY_PASSWORD.TITLE' | translate }}</h3>
<!--begin::Form Group "Password(new)"-->
<div class="form-group">
<mat-form-field>
<mat-label>{{ 'FIELDS.PROFILE.NEW_PASSWORD,TITLE' | translate }}</mat-label>
<mat-label>{{ 'FIELDS.PROFILE.NEW_PASSWORD.TITLE' | translate }}</mat-label>
<input matInput type="password" placeholder="{{ 'FIELDS.PROFILE.NEW_PASSWORD.PLACEHOLDER' | translate }}"
formControlName="newPassword" autocomplete="off" />
<mat-error *ngIf="isControlHasError('newPassword','required')" class="error text-danger">
formControlName="password" autocomplete="off" />
<mat-error *ngIf="isControlHasError('password','required')" class="error text-danger">
{{ 'FORM.VALIDATION.REQUIRED_FIELD' | translate }}
</mat-error>
<mat-error *ngIf="isControlHasError('newPassword','minlength')" class="error text-danger">
<mat-error *ngIf="isControlHasError('password','minlength')" class="error text-danger">
{{ 'FORM.VALIDATION.MIN_LENGTH_FIELD' | translate }}: {{validator.password.minLength}}
</mat-error>
<mat-error *ngIf="isControlHasError('newPassword','maxlength')" class="error text-danger">
<mat-error *ngIf="isControlHasError('password','maxlength')" class="error text-danger">
{{ 'AUFORMTH.VALIDATION.MAX_LENGTH_FIELD' | translate }}: {{validator.password.maxLength}}
</mat-error>
</mat-form-field>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class PasswordRestorationComponent implements OnInit, OnDestroy {
*/
initializeForm() {
this.authForm = this.fb.group({
newPassword: ['', Validators.compose([
password: ['', Validators.compose([
Validators.required,
Validators.minLength(this.validator.password.minLength),
Validators.maxLength(this.validator.password.maxLength)
Expand Down Expand Up @@ -158,7 +158,7 @@ export class PasswordRestorationComponent implements OnInit, OnDestroy {
this.loading = true;

const authData = {
newPassword: controls.newPassword.value,
newPassword: controls.password.value,
verPassword: controls.confirmPassword.value
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class RegisterPartnerComponent implements OnInit, OnDestroy {
private staticDataService: StaticDataService,
) {
// this.paymentsList = this.staticDataService.getPaymentsList;
this.sectorList = this.staticDataService.getSectorList;
this.sectorList = this.staticDataService.getSectorsList;
this.validator = this.staticDataService.getValidators.user;
this.unsubscribe = new Subject();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
@import "../../../../variables.scss";

.upload-img-btn {
margin-left: 10px;
}
16 changes: 9 additions & 7 deletions src/app/core/config/i18n/el.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const locale = {
*/
AUTH: {
MESSAGES: {
WELCOME_TITLE: 'Καλώς ήρθατε στο Synergy!',
WELCOME_TITLE: 'Καλώς ήρθατε στο Synergatika.gr!',
WELCOME_SUBTITLE: 'Ένα Οικονομικό Εργαλείο για Συνεταιρισμούς',
HAVE_ACCOUNT: 'Ακόμα δεν έχεις Λογαριασμό;',
ALREADY_VALIDATED: 'Έχεις ήδη επαληθεύσει το email σου;',
Expand All @@ -77,9 +77,9 @@ export const locale = {
LOGIN: {
TITLE: 'Σύνδεση',
BUTTON: 'Σύνδεση',
EMAIL_NEEDS_VERIFICATION: 'Παρακαλώ, επιβεβαιώστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου',
EMAIL_NEEDS_VERIFICATION: 'Παρακαλώ, επιβεβαιώστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου\nΑκολουθείστε το σύνδεσμο που θα βρείτε στο εμαιλ σας.',
PASSWORD_NEEDS_UPDATE: 'Παρακαλώ, ανανεώστε τον κωδικό πρόσβασης',
ACCOUNT_NEEDS_ACTIVATION: 'Παρακαλώ, ενεργοποιήστε το λογαριαμό σας'
ACCOUNT_NEEDS_ACTIVATION: 'Ο Λογαριασμός έχει τεθεί σε κατάσταση \'Μη Ενεργή\'.\nΕπικοινωνήστε με τον Διαχειριστή.'
},
LOGOUT: {
BUTTON: 'Αποσύνδεση'
Expand All @@ -98,19 +98,19 @@ export const locale = {
TITLE: 'Επαλήθευση Email',
TITLE_ASK: 'Δεν έχετε επαληθευσει το Email σας;',
SUCCESS_SEND: 'Θα λάβετε ένα email! Ακολουθήστε το σύνδεσμο για να επαληθευσετε το λογαρισμό σας!',
SUCCESS_CHECK: 'Επιτυχής επαλήθευση Email!'
SUCCESS_CHECK: 'Επιτυχής επαλήθευση Email!\nΣυνδεθείτε και ανακαλύψτε την Κοινότητα του Synergatika.gr'
},
VERIFY_PASSWORD: {
TITLE: 'Ανανέωση Κωδικού Πρόσβασης',
SUCCESS: 'Ο Κωδικός Πρόσβασης ανανεώθηκε επιτυχώς!',
SUCCESS: 'Ο Κωδικός Πρόσβασης ανανεώθηκε επιτυχώς!\nΣυνδεθείτε και ανακαλύψτε την Κοινότητα του Synergatika.gr',
},
FORGOT_PASSWORD: {
TITLE_ASK: 'Απώλεια Kωδικού Πρόσβασης;',
DESC: 'Εισάγετε το email σας για να επαναφέρετε τον κωδικό σας',
SUCCESS_SEND: 'Θα λάβετε ένα μήνυμα ηλεκτρονικού ταχυδρομείου. Ακολουθείστε τις οδηγίες ώστε να ανακτήσετε τον Κωδικό Πρόσβασης',
SUCCESS_CHECK: 'Μπορείτε να προχωρήσετε στη ανάκτηση',
SUCCESS_UPDATE: 'Ο Κωδικός Πρόσβασης έχει αλλάξει!',
},
}
},


Expand Down Expand Up @@ -723,6 +723,8 @@ export const locale = {
DRAFT: 'πρόχειρο',
CANCEL: 'Ακύρωση',

SUPPORT_PERIOD: 'Περίοδος Υποστήριξης',
SUPPORT_PERIOD_SUB: 'Αυτή είναι η περίοδος που μπορείτε να προπληρώσετε τα προϊόντα που επιθυμείτε',
REDEEM_PERIOD: 'Περίοδος εξαργύρωσης',
REDEEM_PERIOD_SUB: 'Αυτή είναι η περίοδος που μπορείτε να εξαργυρώσετε τα προϊόντα για τα οποία έχετε προπληρώσει',
PRICE: 'Τιμή',
Expand All @@ -734,7 +736,7 @@ export const locale = {
TERMS: 'Τι παίρνω;',
STATUS: {
DRAFT: 'Πρόχειρη',
EXPECTED: 'Αναμένεται',
EXPECTED: 'αναμένεται',
EXPIRED: 'Έχει Λήξει',
REDEEM_TO: 'Εξαργύρωση εώς'
}
Expand Down
4 changes: 3 additions & 1 deletion src/app/core/config/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,8 @@ export const locale = {
DRAFT: 'draft',
CANCEL: 'Cancel',

SUPPORT_PERIOD: 'Support Period',
SUPPORT_PERIOD_SUB: 'This is the period in which you can pledge for an the item',
REDEEM_PERIOD: 'Redeem Period',
REDEEM_PERIOD_SUB: 'This is the period in which you can get the items you pledged for',
PRICE: 'Price',
Expand All @@ -734,7 +736,7 @@ export const locale = {
TERMS: 'What do I get?',
STATUS: {
DRAFT: 'Draft',
EXPECTED: 'Is Expected',
EXPECTED: 'is expected',
EXPIRED: 'Expired',
REDEEM_TO: 'redeem until'
},
Expand Down
Loading

0 comments on commit f1411f7

Please sign in to comment.