@jjlmoya/utils-chrono 1.5.0 → 1.7.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.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +4 -0
  3. package/src/entries.ts +7 -1
  4. package/src/index.ts +2 -0
  5. package/src/tests/locale_completeness.test.ts +1 -1
  6. package/src/tests/tool_validation.test.ts +1 -1
  7. package/src/tool/service-interval-tracker/bibliography.astro +16 -0
  8. package/src/tool/service-interval-tracker/bibliography.ts +12 -0
  9. package/src/tool/service-interval-tracker/client.ts +233 -0
  10. package/src/tool/service-interval-tracker/component.astro +50 -0
  11. package/src/tool/service-interval-tracker/components/AddEditModal.astro +75 -0
  12. package/src/tool/service-interval-tracker/components/DashboardHeader.astro +14 -0
  13. package/src/tool/service-interval-tracker/components/EmptyState.astro +26 -0
  14. package/src/tool/service-interval-tracker/entry.ts +56 -0
  15. package/src/tool/service-interval-tracker/helpers.ts +82 -0
  16. package/src/tool/service-interval-tracker/i18n/de.ts +117 -0
  17. package/src/tool/service-interval-tracker/i18n/en.ts +170 -0
  18. package/src/tool/service-interval-tracker/i18n/es.ts +117 -0
  19. package/src/tool/service-interval-tracker/i18n/fr.ts +98 -0
  20. package/src/tool/service-interval-tracker/i18n/id.ts +89 -0
  21. package/src/tool/service-interval-tracker/i18n/it.ts +88 -0
  22. package/src/tool/service-interval-tracker/i18n/ja.ts +88 -0
  23. package/src/tool/service-interval-tracker/i18n/ko.ts +88 -0
  24. package/src/tool/service-interval-tracker/i18n/nl.ts +88 -0
  25. package/src/tool/service-interval-tracker/i18n/pl.ts +88 -0
  26. package/src/tool/service-interval-tracker/i18n/pt.ts +88 -0
  27. package/src/tool/service-interval-tracker/i18n/ru.ts +88 -0
  28. package/src/tool/service-interval-tracker/i18n/sv.ts +88 -0
  29. package/src/tool/service-interval-tracker/i18n/tr.ts +88 -0
  30. package/src/tool/service-interval-tracker/i18n/zh.ts +88 -0
  31. package/src/tool/service-interval-tracker/index.ts +11 -0
  32. package/src/tool/service-interval-tracker/renderer.ts +91 -0
  33. package/src/tool/service-interval-tracker/seo.astro +16 -0
  34. package/src/tool/service-interval-tracker/service-interval-tracker.css +767 -0
  35. package/src/tool/service-interval-tracker/utils.ts +58 -0
  36. package/src/tool/strap-length-calculator/bibliography.astro +16 -0
  37. package/src/tool/strap-length-calculator/bibliography.ts +12 -0
  38. package/src/tool/strap-length-calculator/client.ts +151 -0
  39. package/src/tool/strap-length-calculator/component.astro +46 -0
  40. package/src/tool/strap-length-calculator/components/BespokeResults.astro +60 -0
  41. package/src/tool/strap-length-calculator/components/CalculatorInputs.astro +64 -0
  42. package/src/tool/strap-length-calculator/components/Visualizer.astro +8 -0
  43. package/src/tool/strap-length-calculator/drawing.ts +265 -0
  44. package/src/tool/strap-length-calculator/entry.ts +52 -0
  45. package/src/tool/strap-length-calculator/helpers.ts +110 -0
  46. package/src/tool/strap-length-calculator/i18n/de.ts +311 -0
  47. package/src/tool/strap-length-calculator/i18n/en.ts +311 -0
  48. package/src/tool/strap-length-calculator/i18n/es.ts +311 -0
  49. package/src/tool/strap-length-calculator/i18n/fr.ts +311 -0
  50. package/src/tool/strap-length-calculator/i18n/id.ts +86 -0
  51. package/src/tool/strap-length-calculator/i18n/it.ts +311 -0
  52. package/src/tool/strap-length-calculator/i18n/ja.ts +86 -0
  53. package/src/tool/strap-length-calculator/i18n/ko.ts +86 -0
  54. package/src/tool/strap-length-calculator/i18n/nl.ts +311 -0
  55. package/src/tool/strap-length-calculator/i18n/pl.ts +311 -0
  56. package/src/tool/strap-length-calculator/i18n/pt.ts +311 -0
  57. package/src/tool/strap-length-calculator/i18n/ru.ts +86 -0
  58. package/src/tool/strap-length-calculator/i18n/sv.ts +86 -0
  59. package/src/tool/strap-length-calculator/i18n/tr.ts +86 -0
  60. package/src/tool/strap-length-calculator/i18n/zh.ts +86 -0
  61. package/src/tool/strap-length-calculator/index.ts +11 -0
  62. package/src/tool/strap-length-calculator/seo.astro +16 -0
  63. package/src/tool/strap-length-calculator/strap-length-calculator.css +234 -0
  64. package/src/tools.ts +4 -0
@@ -0,0 +1,117 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { ServiceIntervalTrackerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<ServiceIntervalTrackerUI> = {
6
+ slug: 'serviceintervall-tracker',
7
+ title: 'Uhren Serviceintervall Tracker',
8
+ description: 'Verfolgen und verwalten Sie die Serviceintervalle Ihrer Uhrensammlung. Erkennen Sie auf einen Blick, wann jede Uhr zur Wartung ansteht.',
9
+ ui: {
10
+ title: 'Service Tracker',
11
+ addWatch: 'Uhr hinzufügen',
12
+ editWatch: 'Uhr bearbeiten',
13
+ cancel: 'Abbrechen',
14
+ save: 'Speichern',
15
+ deleteWatch: 'Entfernen',
16
+ confirmDelete: 'Diese Uhr aus Ihrer Sammlung entfernen?',
17
+ emptyTitle: 'Ihre Sammlung ist leer',
18
+ emptyDesc: 'Verfolgen Sie die Serviceintervalle Ihrer Uhren und verpassen Sie nie wieder eine Wartung.',
19
+ emptyAction: 'Erste Uhr hinzufügen',
20
+ healthy: 'in Ordnung',
21
+ due: 'anstehend',
22
+ overdue: 'überfällig',
23
+ nameLabel: 'Uhrenname',
24
+ namePlaceholder: 'z. B. Rolex Submariner',
25
+ movementLabel: 'Uhrwerkstyp',
26
+ movementAuto: 'Automatik',
27
+ movementManual: 'Handaufzug',
28
+ movementQuartz: 'Quarz',
29
+ movementKinetic: 'Kinetisch',
30
+ dateLabel: 'Letztes Servicedatum',
31
+ neverServiced: 'Neu oder nie gewartet',
32
+ lastServiceLabel: 'Letzter Service',
33
+ nextServiceLabel: 'Nächster Service',
34
+ serviced: 'Gewartet am',
35
+ newWatch: 'Neu',
36
+ years: 'J.',
37
+ collectionHealth: 'Gesundheit der Sammlung',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Uhren-Serviceintervall-Tracker: Wissen, wann ein Service ansteht', level: 2 },
41
+ { type: 'paragraph', html: 'Eine mechanische Uhr ist ein Präzisionsinstrument mit Hunderten von beweglichen Teilen. Schmiermittel trocknen aus, Dichtungen verschleißen und die Ganggenauigkeit lässt mit der Zeit nach. Für Sammler ist es wichtig, die Wartungsdaten im Blick zu behalten.' },
42
+ { type: 'title', text: 'Warum Serviceintervalle wichtig sind', level: 3 },
43
+ {
44
+ type: 'glossary', items: [
45
+ { term: 'Automatik (3-5 Jahre)', definition: 'Federhaus, Klinkenräder und Rotorlager sind ständiger Reibung ausgesetzt. Altes Öl verharzt und beschleunigt den Verschleiß.' },
46
+ { term: 'Handaufzug (3-5 Jahre)', definition: 'Ähnliches Intervall wie bei Automatikuhren. Aufzugswelle und Kupplungsmechanismus werden durch tägliches Aufziehen beansprucht.' },
47
+ { term: 'Quarz (5-10 Jahre)', definition: 'Weniger bewegliche Teile, aber die Batterie kann auslaufen und Dichtungen müssen erneuert werden, um die Wasserdichtigkeit zu erhalten.' },
48
+ { term: 'Kinetisch (5 Jahre)', definition: 'Kombiniert automatischen Aufzug mit Quarz-Zeitmessung. Der Akku oder Kondensator hat eine begrenzte Lebensdauer.' },
49
+ ]
50
+ },
51
+ { type: 'diagnostic', variant: 'info', title: 'Anzeichen für einen notwendigen Service', icon: 'mdi:information', badge: 'WICHTIG', html: 'Wenn die Uhr mehr als 15-20 Sekunden pro Tag vor- oder nachgeht, sich die Krone schwergängig anfühlt oder Kondenswasser unter dem Glas sichtbar ist, warten Sie nicht das Intervall ab. Lassen Sie die Uhr sofort warten.' },
52
+ ],
53
+ faq: [
54
+ {
55
+ question: 'Wie oft sollte eine Automatikuhr gewartet werden?',
56
+ answer: 'Die meisten Hersteller empfehlen ein Serviceintervall von 3 bis 5 Jahren. In der Praxis laufen viele Uhren 5-7 Jahre einwandfrei. Bei starker Gangabweichung oder verringerter Gangreserve sollte der Service früher erfolgen.',
57
+ },
58
+ {
59
+ question: 'Benötigen Quarzuhren eine regelmäßige Wartung?',
60
+ answer: 'Ja, wenn auch seltener. Die Batterie sollte alle 2-3 Jahre gewechselt werden, um Auslaufen zu verhindern. Ein kompletter Service inklusive Dichtungswechsel wird alle 5-10 Jahre empfohlen.',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ { name: 'Uhr hinzufügen', text: 'Geben Sie Name, Werkstyp und das letzte Servicedatum ein. Der Tracker berechnet den nächsten Service automatisch.' },
66
+ { name: 'Dashboard prüfen', text: 'Jede Uhr zeigt einen Fortschrittsbalken und einen farbcodierten Status: grün (in Ordnung), gelb (anstehend), rot (überfällig).' },
67
+ ],
68
+ schemas: [
69
+ {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'FAQPage',
72
+ 'mainEntity': [
73
+ {
74
+ '@type': 'Question',
75
+ 'name': 'Wie oft sollte eine Automatikuhr gewartet werden?',
76
+ 'acceptedAnswer': {
77
+ '@type': 'Answer',
78
+ 'text': 'Die meisten Hersteller empfehlen ein Serviceintervall von 3 bis 5 Jahren. In der Praxis laufen viele Uhren 5-7 Jahre einwandfrei.'
79
+ }
80
+ },
81
+ {
82
+ '@type': 'Question',
83
+ 'name': 'Benötigen Quarzuhren eine regelmäßige Wartung?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': 'Ja, wenn auch seltener. Die Batterie sollte alle 2-3 Jahre gewechselt werden. Ein kompletter Service inklusive Dichtungswechsel wird alle 5-10 Jahre empfohlen.'
87
+ }
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ '@context': 'https://schema.org',
93
+ '@type': 'SoftwareApplication',
94
+ 'name': 'Uhren-Serviceintervall-Tracker',
95
+ 'operatingSystem': 'All',
96
+ 'applicationCategory': 'LifestyleApplication',
97
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
98
+ } as any,
99
+ {
100
+ '@context': 'https://schema.org',
101
+ '@type': 'HowTo',
102
+ 'name': 'Uhren-Serviceintervall-Tracker',
103
+ 'step': [
104
+ {
105
+ '@type': 'HowToStep',
106
+ 'name': 'Uhr hinzufügen',
107
+ 'text': 'Geben Sie Name, Werkstyp und das letzte Servicedatum ein.'
108
+ },
109
+ {
110
+ '@type': 'HowToStep',
111
+ 'name': 'Dashboard prüfen',
112
+ 'text': 'Jede Uhr zeigt einen Fortschrittsbalken und einen farbcodierten Status.'
113
+ }
114
+ ]
115
+ }
116
+ ]
117
+ };
@@ -0,0 +1,170 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { ServiceIntervalTrackerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<ServiceIntervalTrackerUI> = {
6
+ slug: 'service-interval-tracker',
7
+ title: 'Watch Service Interval Tracker',
8
+ description: 'Track and manage service intervals for your watch collection. Know when each watch is due for maintenance at a glance.',
9
+ ui: {
10
+ title: 'Service Tracker',
11
+ addWatch: 'Add Watch',
12
+ editWatch: 'Edit Watch',
13
+ cancel: 'Cancel',
14
+ save: 'Save',
15
+ deleteWatch: 'Remove',
16
+ confirmDelete: 'Remove this watch from your collection?',
17
+ emptyTitle: 'Your collection is empty',
18
+ emptyDesc: 'Track service intervals for your watches and never miss a maintenance again.',
19
+ emptyAction: 'Add your first watch',
20
+ healthy: 'healthy',
21
+ due: 'due',
22
+ overdue: 'overdue',
23
+ nameLabel: 'Watch name',
24
+ namePlaceholder: 'e.g. Rolex Submariner',
25
+ movementLabel: 'Movement type',
26
+ movementAuto: 'Automatic',
27
+ movementManual: 'Manual',
28
+ movementQuartz: 'Quartz',
29
+ movementKinetic: 'Kinetic',
30
+ dateLabel: 'Last service date',
31
+ neverServiced: 'New or never serviced',
32
+ lastServiceLabel: 'Last service',
33
+ nextServiceLabel: 'Next service',
34
+ serviced: 'Serviced',
35
+ newWatch: 'New',
36
+ years: 'yr',
37
+ collectionHealth: 'Collection health',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Watch Service Interval Tracker: Know When to Service Your Watches', level: 2 },
41
+ { type: 'paragraph', html: 'A mechanical watch is a precision instrument with hundreds of moving parts. The lubricants dry out, gaskets degrade, and the rate drifts over time. Keeping track of when each watch was last serviced and when it is next due is the single most important habit for any collector. This tracker helps you stay on top of maintenance across your entire collection.' },
42
+ { type: 'title', text: 'Why Service Intervals Matter', level: 3 },
43
+ {
44
+ type: 'glossary', items: [
45
+ { term: 'Automatic (3-5 years)', definition: 'The mainspring barrel, reverser wheels, and rotor bearing experience constant wear. Old oil turns gummy and accelerates component wear.' },
46
+ { term: 'Manual (3-5 years)', definition: 'Similar interval to automatics. The crown stem and keyless work endure repeated winding cycles.' },
47
+ { term: 'Quartz (5-10 years)', definition: 'Fewer moving parts but the battery can leak, and gaskets still need replacing to maintain water resistance.' },
48
+ { term: 'Kinetic (5 years)', definition: 'Combines automatic winding with quartz timekeeping. The capacitor or battery has a finite lifespan.' },
49
+ ]
50
+ },
51
+ { type: 'diagnostic', variant: 'info', title: 'Signs Your Watch Needs Service', icon: 'mdi:information', badge: 'WATCH FOR', html: 'If the watch is running more than 15-20 seconds per day fast or slow, the crown feels gritty when winding, the date does not click over crisply at midnight, or you see condensation under the crystal, do not wait for the interval. Service it immediately.' },
52
+ { type: 'title', text: 'Track Your Collection', level: 3 },
53
+ { type: 'paragraph', html: 'Add each watch in your collection with its movement type and last service date. The tracker calculates the next recommended service, shows a progress bar of the current service cycle, and color-codes each watch: <strong>green</strong> for healthy, <strong>amber</strong> for due within 6 months, and <strong>red</strong> for overdue. Your data stays in your browser using localStorage, so there is nothing to sign up for.' },
54
+ ],
55
+ faq: [
56
+ {
57
+ question: 'How often should I service my automatic watch?',
58
+ answer: 'Most manufacturers recommend servicing an automatic movement every 3 to 5 years. In practice, many watches run well for 5-7 years before needing attention. If you notice significant rate drift, reduced power reserve, or a gritty winding feel, service it sooner.',
59
+ },
60
+ {
61
+ question: 'Do quartz watches need regular service?',
62
+ answer: 'Yes, though less frequently. The battery should be replaced every 2-3 years to prevent leakage damage. A full service including gasket replacement is recommended every 5-10 years to maintain water resistance and keep the movement clean.',
63
+ },
64
+ {
65
+ question: 'What happens if I never service my watch?',
66
+ answer: 'The lubricants will eventually dry out, causing increased friction and wear on pivots, jewel bearings, and the escapement. This can lead to expensive damage like broken balance staffs, worn pallet stones, or a seized mainspring. Regular service is cheaper than a full restoration.',
67
+ },
68
+ {
69
+ question: 'Can I overwind a manual watch?',
70
+ answer: 'Modern manual watches have a slipping mainspring that prevents overwinding. You will feel a firm stop when fully wound. Force is not needed. If the crown feels stiff or gritty, have the watch inspected rather than forcing it.',
71
+ },
72
+ {
73
+ question: 'Does the service interval change if I wear the watch daily vs occasionally?',
74
+ answer: 'Yes. A watch worn daily experiences more wear on the automatic winding system and should be serviced closer to the 3-year mark. Watches in regular rotation (worn 1-2 days a week) can often stretch to 5 years. Watches stored long-term should still be serviced before being worn again, as the lubricants degrade regardless of use.',
75
+ },
76
+ ],
77
+ bibliography,
78
+ howTo: [
79
+ {
80
+ name: 'Add a watch to your collection',
81
+ text: 'Enter the watch name, movement type, last service date (if known), and the recommended service interval. The tracker computes the next service date automatically.',
82
+ },
83
+ {
84
+ name: 'Check your dashboard',
85
+ text: 'Each watch shows a progress bar of its service cycle and a color-coded status: green (healthy), amber (due soon), or red (overdue). The summary at the top gives you a quick overview of your collection health.',
86
+ },
87
+ {
88
+ name: 'Update after service',
89
+ text: 'When a watch is serviced, remove the old entry and add it again with the new service date. This keeps your tracking accurate and resets the progress bar.',
90
+ },
91
+ ],
92
+ schemas: [
93
+ {
94
+ '@context': 'https://schema.org',
95
+ '@type': 'FAQPage',
96
+ 'mainEntity': [
97
+ {
98
+ '@type': 'Question',
99
+ 'name': 'How often should I service my automatic watch?',
100
+ 'acceptedAnswer': {
101
+ '@type': 'Answer',
102
+ 'text': 'Most manufacturers recommend servicing an automatic movement every 3 to 5 years. In practice, many watches run well for 5-7 years before needing attention.',
103
+ },
104
+ },
105
+ {
106
+ '@type': 'Question',
107
+ 'name': 'Do quartz watches need regular service?',
108
+ 'acceptedAnswer': {
109
+ '@type': 'Answer',
110
+ 'text': 'Yes. The battery should be replaced every 2-3 years. A full service including gasket replacement is recommended every 5-10 years.',
111
+ },
112
+ },
113
+ {
114
+ '@type': 'Question',
115
+ 'name': 'What happens if I never service my watch?',
116
+ 'acceptedAnswer': {
117
+ '@type': 'Answer',
118
+ 'text': 'The lubricants will dry out, causing increased friction and wear. This can lead to expensive damage like broken balance staffs or a seized mainspring.',
119
+ },
120
+ },
121
+ {
122
+ '@type': 'Question',
123
+ 'name': 'Can I overwind a manual watch?',
124
+ 'acceptedAnswer': {
125
+ '@type': 'Answer',
126
+ 'text': 'Modern manual watches have a slipping mainspring that prevents overwinding. You will feel a firm stop when fully wound.',
127
+ },
128
+ },
129
+ {
130
+ '@type': 'Question',
131
+ 'name': 'Does the service interval change with daily wear?',
132
+ 'acceptedAnswer': {
133
+ '@type': 'Answer',
134
+ 'text': 'Yes. Daily wear means more wear on the winding system, so service closer to 3 years. Occasional wear can stretch to 5 years.',
135
+ },
136
+ },
137
+ ],
138
+ },
139
+ {
140
+ '@context': 'https://schema.org',
141
+ '@type': 'SoftwareApplication',
142
+ 'name': 'Watch Service Interval Tracker',
143
+ 'operatingSystem': 'All',
144
+ 'applicationCategory': 'LifestyleApplication',
145
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
146
+ },
147
+ {
148
+ '@context': 'https://schema.org',
149
+ '@type': 'HowTo',
150
+ 'name': 'How to track watch service intervals',
151
+ 'step': [
152
+ {
153
+ '@type': 'HowToStep',
154
+ 'name': 'Add a watch',
155
+ 'text': 'Enter the watch name, movement type, last service date, and service interval.',
156
+ },
157
+ {
158
+ '@type': 'HowToStep',
159
+ 'name': 'Check your dashboard',
160
+ 'text': 'Each watch shows a progress bar and color-coded status for quick health assessment.',
161
+ },
162
+ {
163
+ '@type': 'HowToStep',
164
+ 'name': 'Update after service',
165
+ 'text': 'When a watch is serviced, add a new entry with the updated service date.',
166
+ },
167
+ ],
168
+ },
169
+ ],
170
+ };
@@ -0,0 +1,117 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { ServiceIntervalTrackerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<ServiceIntervalTrackerUI> = {
6
+ slug: 'rastreador-intervalo-servicio',
7
+ title: 'Rastreador de Intervalos de Servicio de Relojes',
8
+ description: 'Realiza un seguimiento y gestiona los intervalos de servicio para tu colección de relojes. Conoce a simple vista cuándo debe realizarse el mantenimiento.',
9
+ ui: {
10
+ title: 'Rastreador de Servicio',
11
+ addWatch: 'Añadir reloj',
12
+ editWatch: 'Editar reloj',
13
+ cancel: 'Cancelar',
14
+ save: 'Guardar',
15
+ deleteWatch: 'Eliminar',
16
+ confirmDelete: '¿Eliminar este reloj de tu colección?',
17
+ emptyTitle: 'Tu colección está vacía',
18
+ emptyDesc: 'Haz un seguimiento de los intervalos de servicio de tus relojes y nunca te saltes un mantenimiento.',
19
+ emptyAction: 'Añadir tu primer reloj',
20
+ healthy: 'al día',
21
+ due: 'próximo',
22
+ overdue: 'vencido',
23
+ nameLabel: 'Nombre del reloj',
24
+ namePlaceholder: 'ej. Rolex Submariner',
25
+ movementLabel: 'Tipo de movimiento',
26
+ movementAuto: 'Automático',
27
+ movementManual: 'Manual',
28
+ movementQuartz: 'Cuarzo',
29
+ movementKinetic: 'Kinético',
30
+ dateLabel: 'Fecha del último servicio',
31
+ neverServiced: 'Nuevo o nunca mantenido',
32
+ lastServiceLabel: 'Último servicio',
33
+ nextServiceLabel: 'Siguiente servicio',
34
+ serviced: 'Servicio realizado',
35
+ newWatch: 'Nuevo',
36
+ years: 'a',
37
+ collectionHealth: 'Salud de la colección',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Rastreador de Intervalos de Servicio de Relojes: Mantén tu colección al día', level: 2 },
41
+ { type: 'paragraph', html: 'Un reloj mecánico es un instrumento de precisión con cientos de piezas móviles. Los lubricantes se secan, las juntas se desgastan y la precisión disminuye con el tiempo. Controlar las fechas de mantenimiento es fundamental para los coleccionistas.' },
42
+ { type: 'title', text: 'Por qué importan los intervalos de servicio', level: 3 },
43
+ {
44
+ type: 'glossary', items: [
45
+ { term: 'Automático (3-5 años)', definition: 'El barrilete, las ruedas inversoras y el cojinete del rotor experimentan un desgaste constante. El aceite viejo se vuelve gomoso.' },
46
+ { term: 'Manual (3-5 años)', definition: 'Intervalo similar al automático. La tija y el sistema de remontuar soportan ciclos repetidos de carga.' },
47
+ { term: 'Cuarzo (5-10 años)', definition: 'Menos piezas móviles pero la pila puede sulfatarse y las juntas necesitan reemplazo para mantener la hermeticidad.' },
48
+ { term: 'Kinético (5 años)', definition: 'Combina carga automática con precisión de cuarzo. El acumulador o condensador tiene una vida útil limitada.' },
49
+ ]
50
+ },
51
+ { type: 'diagnostic', variant: 'info', title: 'Señales de que tu reloj necesita revisión', icon: 'mdi:information', badge: 'ATENCIÓN', html: 'Si el reloj varía más de 15-20 segundos al día, la corona se siente arenosa al darle cuerda o notas condensación bajo el cristal, llévalo al servicio técnico de inmediato.' },
52
+ ],
53
+ faq: [
54
+ {
55
+ question: '¿Con qué frecuencia se debe revisar un reloj automático?',
56
+ answer: 'La mayoría de fabricantes recomiendan revisiones cada 3 a 5 años. En la práctica, muchos funcionan bien de 5 a 7 años. Si notas desvíos de hora o menor reserva de marcha, no esperes más.',
57
+ },
58
+ {
59
+ question: '¿Los relojes de cuarzo necesitan mantenimiento?',
60
+ answer: 'Sí, aunque menos a menudo. Reemplaza la pila cada 2 o 3 años para evitar fugas. Se aconseja una revisión completa con cambio de juntas cada 5-10 años.',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ { name: 'Añadir un reloj', text: 'Introduce el nombre, tipo de movimiento y última revisión. El rastreador calculará la fecha del próximo servicio.' },
66
+ { name: 'Consultar el panel', text: 'Cada reloj muestra una barra de progreso y un color de estado: verde (al día), ámbar (próximo) o rojo (vencido).' },
67
+ ],
68
+ schemas: [
69
+ {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'FAQPage',
72
+ 'mainEntity': [
73
+ {
74
+ '@type': 'Question',
75
+ 'name': '¿Con qué frecuencia se debe revisar un reloj automático?',
76
+ 'acceptedAnswer': {
77
+ '@type': 'Answer',
78
+ 'text': 'La mayoría de fabricantes recomiendan revisiones cada 3 a 5 años. En la práctica, muchos funcionan bien de 5 a 7 años.'
79
+ }
80
+ },
81
+ {
82
+ '@type': 'Question',
83
+ 'name': '¿Los relojes de cuarzo necesitan mantenimiento?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': 'Sí, aunque menos a menudo. Reemplaza la pila cada 2 o 3 años para evitar fugas. Se aconseja una revisión completa con cambio de juntas cada 5-10 años.'
87
+ }
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ '@context': 'https://schema.org',
93
+ '@type': 'SoftwareApplication',
94
+ 'name': 'Rastreador de Intervalos de Servicio de Relojes',
95
+ 'operatingSystem': 'All',
96
+ 'applicationCategory': 'LifestyleApplication',
97
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
98
+ } as any,
99
+ {
100
+ '@context': 'https://schema.org',
101
+ '@type': 'HowTo',
102
+ 'name': 'Rastreador de Intervalos de Servicio de Relojes',
103
+ 'step': [
104
+ {
105
+ '@type': 'HowToStep',
106
+ 'name': 'Añadir un reloj',
107
+ 'text': 'Introduce el nombre, tipo de movimiento y última revisión.'
108
+ },
109
+ {
110
+ '@type': 'HowToStep',
111
+ 'name': 'Consultar el panel',
112
+ 'text': 'Cada reloj muestra una barra de progreso y un color de estado.'
113
+ }
114
+ ]
115
+ }
116
+ ]
117
+ };
@@ -0,0 +1,98 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { ServiceIntervalTrackerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<ServiceIntervalTrackerUI> = {
6
+ slug: 'suivi-intervalle-entretien',
7
+ title: 'Suivi des Intervalles d\'Entretien de Montres',
8
+ description: 'Suivez et gérez les intervalles d\'entretien de votre collection de montres. Sachez en un coup d\'œil quand chaque montre doit être révisée.',
9
+ ui: {
10
+ title: 'Suivi d\'Entretien',
11
+ addWatch: 'Ajouter une montre',
12
+ editWatch: 'Modifier la montre',
13
+ cancel: 'Annuler',
14
+ save: 'Enregistrer',
15
+ deleteWatch: 'Supprimer',
16
+ confirmDelete: 'Supprimer cette montre de votre collection ?',
17
+ emptyTitle: 'Votre collection est vide',
18
+ emptyDesc: 'Suivez les intervalles d\'entretien de vos montres pour ne plus jamais manquer une révision.',
19
+ emptyAction: 'Ajouter votre première montre',
20
+ healthy: 'à jour',
21
+ due: 'proche',
22
+ overdue: 'dépassé',
23
+ nameLabel: 'Nom de la montre',
24
+ namePlaceholder: 'ex. Rolex Submariner',
25
+ movementLabel: 'Type de mouvement',
26
+ movementAuto: 'Automatique',
27
+ movementManual: 'Manuel',
28
+ movementQuartz: 'Quartz',
29
+ movementKinetic: 'Kinetic',
30
+ dateLabel: 'Date du dernier entretien',
31
+ neverServiced: 'Neuve ou jamais révisée',
32
+ lastServiceLabel: 'Dernier entretien',
33
+ nextServiceLabel: 'Prochain entretien',
34
+ serviced: 'Révisée le',
35
+ newWatch: 'Neuve',
36
+ years: 'ans',
37
+ collectionHealth: 'Santé de la collection',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Suivi des Intervalles d\'Entretien : Prenez soin de vos montres', level: 2 },
41
+ { type: 'paragraph', html: 'Une montre mécanique est un instrument de précision comportant des centaines de pièces mobiles. Les lubrifiants sèchent, les joints s\'usent et la précision dérive avec le temps.' },
42
+ { type: 'title', text: 'Pourquoi planifier les révisions de vos montres', level: 3 },
43
+ {
44
+ type: 'glossary', items: [
45
+ { term: 'Automatique (3-5 ans)', definition: 'Le barillet, les inverseurs et les roulements du rotor subissent une friction constante. Les huiles usées épaississent.' },
46
+ { term: 'Manuel (3-5 ans)', definition: 'Intervalle similaire aux automatiques. La tige et le mécanisme de remontoir sont sollicités à chaque remontage.' },
47
+ { term: 'Quartz (5-10 ans)', definition: 'Moins de pièces d\'usure mais la pile peut couler et les joints doivent être changés pour garantir l\'étanchéité.' },
48
+ { term: 'Kinetic (5 ans)', definition: 'Combine remontage automatique et précision du quartz. Le condensateur a une durée de vie limitée.' },
49
+ ]
50
+ },
51
+ ],
52
+ faq: [
53
+ {
54
+ question: 'À quelle fréquence réviser une montre automatique ?',
55
+ answer: 'La plupart des fabricants suggèrent un entretien tous les 3 à 5 ans. En pratique, beaucoup fonctionnent 5 à 7 ans sans problème. Faites-la réviser plus tôt en cas de dérive importante.',
56
+ },
57
+ ],
58
+ bibliography,
59
+ howTo: [
60
+ { name: 'Ajouter une montre', text: 'Saisissez le nom, le mouvement et la date de révision. Le système calcule la prochaine échéance.' },
61
+ ],
62
+ schemas: [
63
+ {
64
+ '@context': 'https://schema.org',
65
+ '@type': 'FAQPage',
66
+ 'mainEntity': [
67
+ {
68
+ '@type': 'Question',
69
+ 'name': 'À quelle fréquence réviser une montre automatique ?',
70
+ 'acceptedAnswer': {
71
+ '@type': 'Answer',
72
+ 'text': 'La plupart des fabricants suggèrent un entretien tous les 3 à 5 ans. En pratique, beaucoup fonctionnent 5 à 7 ans sans problème.'
73
+ }
74
+ }
75
+ ]
76
+ },
77
+ {
78
+ '@context': 'https://schema.org',
79
+ '@type': 'SoftwareApplication',
80
+ 'name': 'Suivi des Intervalles d\'Entretien de Montres',
81
+ 'operatingSystem': 'All',
82
+ 'applicationCategory': 'LifestyleApplication',
83
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
84
+ } as any,
85
+ {
86
+ '@context': 'https://schema.org',
87
+ '@type': 'HowTo',
88
+ 'name': 'Suivi des Intervalles d\'Entretien de Montres',
89
+ 'step': [
90
+ {
91
+ '@type': 'HowToStep',
92
+ 'name': 'Ajouter une montre',
93
+ 'text': 'Saisissez le nom, le mouvement et la date de révision.'
94
+ }
95
+ ]
96
+ }
97
+ ]
98
+ };
@@ -0,0 +1,89 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { ServiceIntervalTrackerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<ServiceIntervalTrackerUI> = {
6
+ slug: 'pelacak-interval-servis',
7
+ title: 'Pelacak Interval Servis Jam Tangan',
8
+ description: 'Lacak dan kelola interval servis koleksi jam tangan Anda. Ketahui kapan waktu perawatan setiap jam tangan dengan mudah.',
9
+ ui: {
10
+ title: 'Pelacak Servis',
11
+ addWatch: 'Tambah Jam',
12
+ editWatch: 'Edit Jam',
13
+ cancel: 'Batal',
14
+ save: 'Simpan',
15
+ deleteWatch: 'Hapus',
16
+ confirmDelete: 'Hapus jam tangan ini dari koleksi Anda?',
17
+ emptyTitle: 'Koleksi Anda kosong',
18
+ emptyDesc: 'Lacak interval servis jam tangan Anda agar tidak pernah melewatkan jadwal perawatan lagi.',
19
+ emptyAction: 'Tambah jam tangan pertama',
20
+ healthy: 'aman',
21
+ due: 'mendekati',
22
+ overdue: 'terlewat',
23
+ nameLabel: 'Nama jam tangan',
24
+ namePlaceholder: 'mis. Rolex Submariner',
25
+ movementLabel: 'Jenis mesin',
26
+ movementAuto: 'Otomatis',
27
+ movementManual: 'Manual',
28
+ movementQuartz: 'Kuarsa',
29
+ movementKinetic: 'Kinetik',
30
+ dateLabel: 'Tanggal servis terakhir',
31
+ neverServiced: 'Baru atau belum pernah diservis',
32
+ lastServiceLabel: 'Servis terakhir',
33
+ nextServiceLabel: 'Servis berikutnya',
34
+ serviced: 'Diservis',
35
+ newWatch: 'Baru',
36
+ years: 'thn',
37
+ collectionHealth: 'Kesehatan koleksi',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Pelacak Interval Servis Jam Tangan: Lindungi Investasi Anda', level: 2 },
41
+ { type: 'paragraph', html: 'Jam tangan mekanis adalah instrumen presisi dengan ratusan komponen bergerak. Pelumas dapat mengering, gasket rusak, dan akurasi berkurang seiring waktu.' },
42
+ ],
43
+ faq: [
44
+ {
45
+ question: 'Seberapa sering jam tangan otomatis harus diservis?',
46
+ answer: 'Sebagian besar produsen merekomendasikan servis setiap 3 hingga 5 tahun sekali. Jam tangan biasanya dapat bertahan 5-7 tahun sebelum kinerjanya menurun.',
47
+ }
48
+ ],
49
+ bibliography,
50
+ howTo: [
51
+ { name: 'Tambah jam tangan', text: 'Masukkan nama jam, jenis mesin, dan tanggal servis terakhir. Alat akan menghitung jadwal servis berikutnya secara otomatis.' }
52
+ ],
53
+ schemas: [
54
+ {
55
+ '@context': 'https://schema.org',
56
+ '@type': 'FAQPage',
57
+ 'mainEntity': [
58
+ {
59
+ '@type': 'Question',
60
+ 'name': 'Seberapa sering jam tangan otomatis harus diservis?',
61
+ 'acceptedAnswer': {
62
+ '@type': 'Answer',
63
+ 'text': 'Sebagian besar produsen merekomendasikan servis setiap 3 hingga 5 tahun sekali.'
64
+ }
65
+ }
66
+ ]
67
+ },
68
+ {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ 'name': 'Pelacak Interval Servis Jam Tangan',
72
+ 'operatingSystem': 'All',
73
+ 'applicationCategory': 'LifestyleApplication',
74
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
75
+ } as any,
76
+ {
77
+ '@context': 'https://schema.org',
78
+ '@type': 'HowTo',
79
+ 'name': 'Pelacak Interval Servis Jam Tangan',
80
+ 'step': [
81
+ {
82
+ '@type': 'HowToStep',
83
+ 'name': 'Tambah jam tangan',
84
+ 'text': 'Masukkan nama jam, jenis mesin, dan tanggal servis terakhir.'
85
+ }
86
+ ]
87
+ }
88
+ ]
89
+ };