@jjlmoya/utils-finance 1.31.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-finance",
3
- "version": "1.31.0",
3
+ "version": "1.32.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -71,7 +71,7 @@ export const content: CategoryLocaleContent = {
71
71
  {
72
72
  type: 'tip',
73
73
  title: 'Strategic Savings Advice',
74
- html: '<p><strong>2026 Strategy:</strong> In a persistent inflation environment, keeping cash idle is a guaranteed loss. Use the compound interest simulator to evaluate how small increases in return rate dramatically impact your retirement.</p>',
74
+ html: '<p><strong>2026 Strategy:</strong> In a persistent inflation environment, keeping cash idle can reduce its purchasing power. Use the compound interest simulator to evaluate how small changes in return rate may affect your retirement.</p>',
75
75
  },
76
76
  {
77
77
  type: 'title',
@@ -4,7 +4,7 @@ export const content: CategoryLocaleContent = {
4
4
  slug: 'finanzas',
5
5
  title: 'Herramientas y Calculadoras Financieras de Precisión',
6
6
  description:
7
- 'Optimiza tus finanzas con herramientas gratuitas online. Simuladores de hipotecas, cálculo de interés compuesto, actualización de alquileres e intereses de demora actualizados a 2026.',
7
+ 'Optimiza tus finanzas con herramientas gratuitas online: hipotecas, interés compuesto, alquileres e intereses de demora para 2026.',
8
8
  seo: [
9
9
  {
10
10
  type: 'title',
@@ -48,7 +48,7 @@ export const content: CategoryLocaleContent = {
48
48
  },
49
49
  {
50
50
  type: 'paragraph',
51
- html: 'En el ámbito legal y tributario, los plazos y porcentajes son críticos. Proporcionamos herramientas actualizadas para calcular el <strong>interés legal del dinero (3,25% en 2026)</strong> y los intereses de demora para deudas civiles o con Hacienda, evitando que pagues recargos innecesarios por falta de información.',
51
+ html: 'En el ámbito legal y tributario, los plazos y porcentajes son críticos. Proporcionamos herramientas de referencia para calcular el <strong>interés legal del dinero (3,25% en 2026)</strong> y los intereses de demora para deudas civiles o con Hacienda. Comprueba siempre la norma vigente antes de tomar una decisión.',
52
52
  },
53
53
  {
54
54
  type: 'title',
@@ -62,7 +62,7 @@ export const content: CategoryLocaleContent = {
62
62
  {
63
63
  type: 'list',
64
64
  items: [
65
- '<strong>Datos Actualizados:</strong> Tasas de interés, límites de IPC y variables fiscales revisadas para el ejercicio 2026.',
65
+ '<strong>Datos de referencia:</strong> Tasas de interés, límites de IPC y variables fiscales indicadas para el ejercicio 2026.',
66
66
  '<strong>Privacidad Total:</strong> Tus datos financieros personales se procesan estrictamente en el navegador sin almacenamiento en servidores.',
67
67
  '<strong>Rigor Matemático:</strong> Algoritmos de amortización y cálculo de interés real siguiendo estándares bancarios europeos.',
68
68
  '<strong>Transparencia Legal:</strong> Herramientas adaptadas a la legislación española vigente (Ley de Vivienda, Modelos Tributarios).',
@@ -71,7 +71,7 @@ export const content: CategoryLocaleContent = {
71
71
  {
72
72
  type: 'tip',
73
73
  title: 'Consejo Estratégico de Ahorro',
74
- html: '<p><strong>Estrategia 2026:</strong> En un entorno de inflación persistente, mantener el efectivo inactivo es una pérdida garantizada. Usa el simulador de interés compuesto para evaluar cómo pequeños aumentos en la tasa de retorno impactan drásticamente en tu jubilación.</p>',
74
+ html: '<p><strong>Estrategia 2026:</strong> En un entorno de inflación persistente, mantener el efectivo inactivo puede reducir su poder adquisitivo. Usa el simulador de interés compuesto para valorar cómo pequeños cambios en la rentabilidad pueden afectar a tu jubilación.</p>',
75
75
  },
76
76
  {
77
77
  type: 'title',
@@ -3,7 +3,7 @@ import type { CategoryLocaleContent } from '../../types';
3
3
  export const content: CategoryLocaleContent = {
4
4
  slug: 'finanse',
5
5
  title: 'Precyzyjne Narzędzia i Kalkulatory Finansowe',
6
- description: 'Zoptymalizuj swoje finanse dzięki bezpłatnym narzędziom online. Symulatory kredytów hipotecznych, kalkulator odsetek składanych, aktualizacje czynszu i odsetki za zwłokę zaktualizowane na 2026.',
6
+ description: 'Zoptymalizuj finanse dzięki darmowym narzędziom online: kredyty hipoteczne, odsetki składane, czynsz i odsetki za zwłokę w 2026 roku.',
7
7
  seo: [
8
8
  {
9
9
  type: 'title',
@@ -0,0 +1,76 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import type { CategoryLocaleContent } from '../types';
3
+
4
+ const EXPECTED_LOCALES = [
5
+ 'de', 'en', 'es', 'fr', 'id', 'it', 'ja', 'ko', 'nl', 'pl', 'pt', 'ru', 'sv', 'tr', 'zh',
6
+ ] as const;
7
+ const COMPACT_LOCALES = new Set(['ja', 'ko', 'zh']);
8
+
9
+ const localeModules = import.meta.glob('../category/i18n/*.ts', { eager: true }) as Record<
10
+ string,
11
+ { content: CategoryLocaleContent }
12
+ >;
13
+
14
+ function textFrom(value: unknown): string {
15
+ if (typeof value === 'string') return value.replace(/<[^>]*>/g, ' ');
16
+ if (Array.isArray(value)) return value.map(textFrom).join(' ');
17
+ if (value && typeof value === 'object') return Object.values(value).map(textFrom).join(' ');
18
+ return '';
19
+ }
20
+
21
+ const STRONG_CLAIM = /\b(?:garantiz\w*|guarante\w*|validat(?:ed)|valid(?:ated|ado|ada|ados|adas|ée|ées)|actualizad\w*)\b/iu;
22
+
23
+ function getContents(): Map<string, CategoryLocaleContent> {
24
+ return new Map(
25
+ Object.entries(localeModules).map(([file, module]) => [file.match(/\/([a-z]{2})\.ts$/u)?.[1] ?? file, module.content]),
26
+ );
27
+ }
28
+
29
+ function validateContent(locale: string, content: CategoryLocaleContent): string[] {
30
+ const failures: string[] = [];
31
+ const check = (condition: boolean, message: string) => { if (!condition) failures.push(`${locale}: ${message}`); };
32
+ const minimumTitleLength = COMPACT_LOCALES.has(locale) ? 4 : 12;
33
+ const minimumDescriptionLength = COMPACT_LOCALES.has(locale) ? 20 : 60;
34
+ check(content.title.trim().length >= minimumTitleLength && content.title.trim().length <= 70, 'title must use a useful 4/12–70 character length');
35
+ check(content.description.trim().length >= minimumDescriptionLength && content.description.trim().length <= 180, 'description must use a useful 20/60–180 character length');
36
+ check(content.seo.length >= 2, 'SEO needs at least two sections');
37
+
38
+ const seoText = textFrom(content.seo).replace(/\s+/g, ' ').trim();
39
+ const minimumSeoLength = COMPACT_LOCALES.has(locale) ? 120 : 240;
40
+ check(seoText.length >= minimumSeoLength, 'SEO copy must contain the minimum visible copy for its script');
41
+ check(content.seo.filter((section) => section.type === 'title').length >= 1, 'SEO needs a section heading');
42
+ check(!/[�]/u.test(seoText), 'SEO contains replacement characters');
43
+ check(!/ {2,}/u.test(seoText), 'SEO contains duplicated whitespace');
44
+ check(!STRONG_CLAIM.test(seoText), 'SEO contains an unsupported strong claim');
45
+
46
+ check(content.slug.trim().length > 0 && /^[a-z0-9-]+$/u.test(content.slug), 'slug must be a non-empty URL-safe value');
47
+ return failures;
48
+ }
49
+
50
+ describe('Category SEO quality contract', () => {
51
+ it('has one content file for every configured locale', () => {
52
+ const contents = getContents();
53
+ expect([...contents.keys()].sort()).toEqual([...EXPECTED_LOCALES].sort());
54
+ });
55
+
56
+ it('keeps metadata, SEO structure and copy quality above the minimum in every locale', () => {
57
+ const contents = getContents();
58
+ const english = contents.get('en');
59
+ expect(english, 'English category content is required as the structural reference').toBeDefined();
60
+
61
+ const failures = EXPECTED_LOCALES.flatMap((locale) => {
62
+ const content = contents.get(locale);
63
+ return content ? validateContent(locale, content) : [];
64
+ });
65
+
66
+ const englishShape = english?.seo.map((section) => section.type);
67
+ for (const locale of EXPECTED_LOCALES) {
68
+ const content = contents.get(locale);
69
+ if (content && JSON.stringify(content.seo.map((section) => section.type)) !== JSON.stringify(englishShape)) {
70
+ failures.push(`${locale}: SEO section types must match English`);
71
+ }
72
+ }
73
+
74
+ expect(failures, 'category SEO quality failures').toEqual([]);
75
+ }, 30000);
76
+ });