Browse Source

Task/localize regions of personal finance tools (#7134)

Localize regions
pull/7135/head
Thomas Kaul 4 days ago
committed by GitHub
parent
commit
1bafb37a09
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts
  2. 8
      libs/common/src/lib/personal-finance-tools.ts

4
apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts

@ -70,7 +70,9 @@ export class GfProductPageComponent {
if (mappedProduct.regions) { if (mappedProduct.regions) {
mappedProduct.regions = mappedProduct.regions.map((region) => { mappedProduct.regions = mappedProduct.regions.map((region) => {
return translate(region); return region === 'Global'
? translate(region)
: getCountryName({ code: region });
}); });
} }

8
libs/common/src/lib/personal-finance-tools.ts

@ -780,7 +780,7 @@ export const personalFinanceTools: Product[] = [
note: 'Maybe Finance was discontinued in 2023, relaunched in 2024, and discontinued again in 2025', note: 'Maybe Finance was discontinued in 2023, relaunched in 2024, and discontinued again in 2025',
origin: 'US', origin: 'US',
pricingPerYear: '$145', pricingPerYear: '$145',
regions: ['United States'], regions: ['US'],
slogan: 'Your financial future, in your control', slogan: 'Your financial future, in your control',
url: 'https://github.com/maybe-finance/maybe' url: 'https://github.com/maybe-finance/maybe'
}, },
@ -792,7 +792,7 @@ export const personalFinanceTools: Product[] = [
name: 'Merlin', name: 'Merlin',
origin: 'US', origin: 'US',
pricingPerYear: '$204', pricingPerYear: '$204',
regions: ['Canada', 'United States'], regions: ['CA', 'US'],
slogan: 'The smartest way to track your crypto', slogan: 'The smartest way to track your crypto',
url: 'https://www.merlincrypto.com' url: 'https://www.merlincrypto.com'
}, },
@ -967,7 +967,7 @@ export const personalFinanceTools: Product[] = [
note: 'Originally named as Tresor One', note: 'Originally named as Tresor One',
origin: 'DE', origin: 'DE',
pricingPerYear: '€99.99', pricingPerYear: '€99.99',
regions: ['Austria', 'Germany', 'Switzerland'], regions: ['AT', 'CH', 'DE'],
slogan: 'Dein Vermögen immer im Blick', slogan: 'Dein Vermögen immer im Blick',
url: 'https://www.parqet.com' url: 'https://www.parqet.com'
}, },
@ -1354,7 +1354,7 @@ export const personalFinanceTools: Product[] = [
name: 'Tresor One', name: 'Tresor One',
note: 'Renamed to Parqet', note: 'Renamed to Parqet',
origin: 'DE', origin: 'DE',
regions: ['Austria', 'Germany', 'Switzerland'], regions: ['AT', 'CH', 'DE'],
slogan: 'Dein Vermögen immer im Blick' slogan: 'Dein Vermögen immer im Blick'
}, },
{ {

Loading…
Cancel
Save