File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -61,10 +61,13 @@ <h2>Recursos</h2>
6161 </ div >
6262 </ div >
6363 < p class ="docs-license ">
64- Super-powered by Google ©2010-2024. Code licensed under an
65- < a routerLink ="/license " title ="License text "> MIT-style License</ a >
66- . Documentation licensed under
67- < a href ="https://creativecommons.org/licenses/by/4.0/ "> CC BY 4.0</ a >
68- .
64+ Desarrollado y mantenido por Google ©2010–{{ currentYear() }}.< br />
65+ El código y la documentación original en inglés están licenciados bajo una
66+ < a routerLink ="/license " title ="Texto de la licencia "> licencia tipo MIT</ a > y
67+ < a href ="https://creativecommons.org/licenses/by/4.0/ "> CC BY 4.0</ a > respectivamente.< br />
68+ Traducción al español realizada por
69+ < a href ="https://angular.lat " target ="_blank " rel ="noopener "> Angular Hispano</ a >
70+ ©2019–{{ currentYear() }}, bajo la licencia
71+ < a href ="https://creativecommons.org/licenses/by/4.0/ "> CC BY 4.0</ a > .
6972 </ p >
7073</ div >
Original file line number Diff line number Diff line change 1+ import { signal } from '@angular/core' ;
12import { CommonModule } from '@angular/common' ;
23import { ChangeDetectionStrategy , Component } from '@angular/core' ;
34import { ExternalLink } from '@angular/docs' ;
@@ -16,4 +17,5 @@ export class Footer {
1617 readonly GITHUB = GITHUB ;
1718 readonly X = X ;
1819 readonly DISCORD = DISCORD ;
20+ currentYear = signal ( new Date ( ) . getFullYear ( ) ) ;
1921}
You can’t perform that action at this time.
0 commit comments