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>
61
61
</ div >
62
62
</ div >
63
63
< 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 > .
69
72
</ p >
70
73
</ div >
Original file line number Diff line number Diff line change
1
+ import { signal } from '@angular/core' ;
1
2
import { CommonModule } from '@angular/common' ;
2
3
import { ChangeDetectionStrategy , Component } from '@angular/core' ;
3
4
import { ExternalLink } from '@angular/docs' ;
@@ -16,4 +17,5 @@ export class Footer {
16
17
readonly GITHUB = GITHUB ;
17
18
readonly X = X ;
18
19
readonly DISCORD = DISCORD ;
20
+ currentYear = signal ( new Date ( ) . getFullYear ( ) ) ;
19
21
}
You can’t perform that action at this time.
0 commit comments