diff --git a/src/app/footer/footer.component.html b/src/app/footer/footer.component.html
index 13d97cd..f094cbf 100644
--- a/src/app/footer/footer.component.html
+++ b/src/app/footer/footer.component.html
@@ -1,6 +1,7 @@
diff --git a/src/app/footer/footer.component.ts b/src/app/footer/footer.component.ts
index 67f1378..97d667e 100644
--- a/src/app/footer/footer.component.ts
+++ b/src/app/footer/footer.component.ts
@@ -1,4 +1,4 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit,LOCALE_ID, Inject } from '@angular/core';
@Component({
selector: 'app-footer',
@@ -7,9 +7,23 @@ import { Component, OnInit } from '@angular/core';
})
export class FooterComponent implements OnInit {
- constructor() { }
+ _link_texto_legal:string;
+ _name_texto_legal:string;
+
+ constructor(
+ @Inject(LOCALE_ID) protected localeId: string
+ ) { }
ngOnInit() {
+ switch (this.localeId) {
+ case "eu":
+ this._link_texto_legal = "lege-oharra";
+ this._name_texto_legal = "Lege Oharra";
+ break;
+ default:
+ this._link_texto_legal = "texto-legal";
+ this._name_texto_legal = "Texto Legal";
+ }
}
}
diff --git a/src/app/interview-grid/interview-grid.component.html b/src/app/interview-grid/interview-grid.component.html
index facacc2..0901319 100644
--- a/src/app/interview-grid/interview-grid.component.html
+++ b/src/app/interview-grid/interview-grid.component.html
@@ -16,6 +16,7 @@
+
Informantes:
- {{i.surname}}; {{i.name}}
@@ -37,11 +38,10 @@
-->
-
-
-
-