|
@ -1,3 +1,5 @@ |
|
|
|
|
|
import { paths } from '@ghostfolio/client/core/paths'; |
|
|
|
|
|
|
|
|
import { Component } from '@angular/core'; |
|
|
import { Component } from '@angular/core'; |
|
|
|
|
|
|
|
|
@Component({ |
|
|
@Component({ |
|
@ -12,34 +14,25 @@ export class ResourcesOverviewComponent { |
|
|
title: 'Frequently Asked Questions (FAQ)', |
|
|
title: 'Frequently Asked Questions (FAQ)', |
|
|
description: |
|
|
description: |
|
|
'Find quick answers to commonly asked questions about Ghostfolio in our Frequently Asked Questions (FAQ) section.', |
|
|
'Find quick answers to commonly asked questions about Ghostfolio in our Frequently Asked Questions (FAQ) section.', |
|
|
link: ['/' + $localize`:snake-case:faq`] |
|
|
link: ['/' + paths.faq] |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: 'Guides', |
|
|
title: 'Guides', |
|
|
description: |
|
|
description: |
|
|
'Explore our guides to help you get started with investing and managing your finances.', |
|
|
'Explore our guides to help you get started with investing and managing your finances.', |
|
|
link: [ |
|
|
link: ['/' + paths.resources, paths.guides] |
|
|
'/' + $localize`:snake-case:resources`, |
|
|
|
|
|
$localize`:snake-case:guides` |
|
|
|
|
|
] |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: 'Markets', |
|
|
title: 'Markets', |
|
|
description: |
|
|
description: |
|
|
'Access various market resources and tools to stay informed about financial markets.', |
|
|
'Access various market resources and tools to stay informed about financial markets.', |
|
|
link: [ |
|
|
link: ['/' + paths.resources, paths.markets] |
|
|
'/' + $localize`:snake-case:resources`, |
|
|
|
|
|
$localize`:snake-case:markets` |
|
|
|
|
|
] |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: 'Glossary', |
|
|
title: 'Glossary', |
|
|
description: |
|
|
description: |
|
|
'Learn key financial terms and concepts in our comprehensive glossary.', |
|
|
'Learn key financial terms and concepts in our comprehensive glossary.', |
|
|
link: [ |
|
|
link: ['/' + paths.resources, paths.glossary] |
|
|
'/' + $localize`:snake-case:resources`, |
|
|
|
|
|
$localize`:snake-case:glossary` |
|
|
|
|
|
] |
|
|
|
|
|
} |
|
|
} |
|
|
]; |
|
|
]; |
|
|
} |
|
|
} |
|
|