@jjlmoya/utils-chrono 1.10.0 → 1.16.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 +1 -1
- package/src/category/index.ts +8 -0
- package/src/entries.ts +13 -1
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +1 -1
- package/src/tool/gear-train-explorer/bibliography.astro +16 -0
- package/src/tool/gear-train-explorer/bibliography.ts +12 -0
- package/src/tool/gear-train-explorer/client.ts +146 -0
- package/src/tool/gear-train-explorer/component.astro +17 -0
- package/src/tool/gear-train-explorer/components/GearPanel.astro +102 -0
- package/src/tool/gear-train-explorer/entry.ts +53 -0
- package/src/tool/gear-train-explorer/gear-train-explorer.css +172 -0
- package/src/tool/gear-train-explorer/gears.ts +148 -0
- package/src/tool/gear-train-explorer/helpers.ts +49 -0
- package/src/tool/gear-train-explorer/i18n/de.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/en.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/es.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/fr.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/id.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/it.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/ja.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/ko.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/nl.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/pl.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/pt.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/ru.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/sv.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/tr.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/zh.ts +98 -0
- package/src/tool/gear-train-explorer/index.ts +11 -0
- package/src/tool/gear-train-explorer/movements.ts +61 -0
- package/src/tool/gear-train-explorer/scene.ts +120 -0
- package/src/tool/gear-train-explorer/seo.astro +16 -0
- package/src/tool/gear-train-explorer/state.ts +30 -0
- package/src/tool/gmt-world-timer/bibliography.astro +11 -0
- package/src/tool/gmt-world-timer/bibliography.ts +7 -0
- package/src/tool/gmt-world-timer/client.ts +250 -0
- package/src/tool/gmt-world-timer/component.astro +13 -0
- package/src/tool/gmt-world-timer/components/GmtPanel.astro +18 -0
- package/src/tool/gmt-world-timer/entry.ts +34 -0
- package/src/tool/gmt-world-timer/gmt-world-timer.css +239 -0
- package/src/tool/gmt-world-timer/helpers.ts +28 -0
- package/src/tool/gmt-world-timer/i18n/de.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/en.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/es.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/fr.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/id.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/it.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/ja.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/ko.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/nl.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/pl.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/pt.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/ru.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/sv.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/tr.ts +72 -0
- package/src/tool/gmt-world-timer/i18n/zh.ts +72 -0
- package/src/tool/gmt-world-timer/index.ts +11 -0
- package/src/tool/gmt-world-timer/seo.astro +11 -0
- package/src/tool/perpetual-calendar/bibliography.astro +16 -0
- package/src/tool/perpetual-calendar/bibliography.ts +16 -0
- package/src/tool/perpetual-calendar/calendar.ts +24 -0
- package/src/tool/perpetual-calendar/client.ts +98 -0
- package/src/tool/perpetual-calendar/component.astro +17 -0
- package/src/tool/perpetual-calendar/components/CalendarPanel.astro +49 -0
- package/src/tool/perpetual-calendar/dial.ts +176 -0
- package/src/tool/perpetual-calendar/entry.ts +48 -0
- package/src/tool/perpetual-calendar/helpers.ts +49 -0
- package/src/tool/perpetual-calendar/i18n/de.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/en.ts +102 -0
- package/src/tool/perpetual-calendar/i18n/es.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/fr.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/id.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/it.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/ja.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/ko.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/nl.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/pl.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/pt.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/ru.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/sv.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/tr.ts +85 -0
- package/src/tool/perpetual-calendar/i18n/zh.ts +85 -0
- package/src/tool/perpetual-calendar/index.ts +11 -0
- package/src/tool/perpetual-calendar/perpetual-calendar.css +181 -0
- package/src/tool/perpetual-calendar/seo.astro +16 -0
- package/src/tool/perpetual-calendar/state.ts +26 -0
- package/src/tool/tourbillon-visualizer/bibliography.astro +11 -0
- package/src/tool/tourbillon-visualizer/bibliography.ts +7 -0
- package/src/tool/tourbillon-visualizer/client.ts +122 -0
- package/src/tool/tourbillon-visualizer/component.astro +126 -0
- package/src/tool/tourbillon-visualizer/components/TourbillonPanel.astro +66 -0
- package/src/tool/tourbillon-visualizer/entry.ts +51 -0
- package/src/tool/tourbillon-visualizer/helpers.ts +35 -0
- package/src/tool/tourbillon-visualizer/i18n/de.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/en.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/es.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/fr.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/id.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/it.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/ja.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/ko.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/nl.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/pl.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/pt.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/ru.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/sv.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/tr.ts +96 -0
- package/src/tool/tourbillon-visualizer/i18n/zh.ts +96 -0
- package/src/tool/tourbillon-visualizer/index.ts +11 -0
- package/src/tool/tourbillon-visualizer/renderer/base.ts +78 -0
- package/src/tool/tourbillon-visualizer/renderer/cage.ts +115 -0
- package/src/tool/tourbillon-visualizer/renderer/esc.ts +160 -0
- package/src/tool/tourbillon-visualizer/seo.astro +11 -0
- package/src/tool/tourbillon-visualizer/state.ts +21 -0
- package/src/tool/tourbillon-visualizer/tourbillon.ts +9 -0
- package/src/tools.ts +8 -0
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
.theme-dark .gmt-tool {
|
|
2
|
+
--clock-face: color-mix(in srgb, var(--bg-surface) 60%, #000);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.gmt-tool {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
gap: 1.5rem;
|
|
9
|
+
|
|
10
|
+
--clock-face: var(--bg-surface);
|
|
11
|
+
--clock-bezel: color-mix(in srgb, var(--accent) 35%, transparent);
|
|
12
|
+
--clock-marks: var(--text-muted);
|
|
13
|
+
--clock-hour: var(--accent);
|
|
14
|
+
--clock-min: var(--text-base);
|
|
15
|
+
--clock-sec: var(--color-error);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.gmt-search-w {
|
|
19
|
+
position: relative;
|
|
20
|
+
max-width: 420px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.gmt-search {
|
|
24
|
+
width: 100%;
|
|
25
|
+
padding: 0.8rem 1.1rem;
|
|
26
|
+
border: 1.5px solid var(--border-base);
|
|
27
|
+
border-radius: 0.85rem;
|
|
28
|
+
background: var(--bg-surface);
|
|
29
|
+
color: var(--text-base);
|
|
30
|
+
font-size: 0.9rem;
|
|
31
|
+
outline: none;
|
|
32
|
+
transition: border-color 0.15s ease;
|
|
33
|
+
box-sizing: border-box;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.gmt-search:focus {
|
|
37
|
+
border-color: var(--accent);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.gmt-search::placeholder {
|
|
41
|
+
color: var(--text-base);
|
|
42
|
+
opacity: 0.3;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.gmt-dropdown {
|
|
46
|
+
position: absolute;
|
|
47
|
+
top: 100%;
|
|
48
|
+
left: 0;
|
|
49
|
+
right: 0;
|
|
50
|
+
z-index: 50;
|
|
51
|
+
margin-top: 0.3rem;
|
|
52
|
+
border: 1px solid var(--border-base);
|
|
53
|
+
border-radius: 0.85rem;
|
|
54
|
+
background: var(--bg-surface);
|
|
55
|
+
max-height: 280px;
|
|
56
|
+
overflow-y: auto;
|
|
57
|
+
display: none;
|
|
58
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.gmt-dropdown.open {
|
|
62
|
+
display: block;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.gmt-dd-item {
|
|
66
|
+
padding: 0.65rem 0.9rem;
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
justify-content: space-between;
|
|
71
|
+
font-size: 0.85rem;
|
|
72
|
+
color: var(--text-base);
|
|
73
|
+
transition: background 0.1s ease;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.gmt-dd-item:first-child {
|
|
77
|
+
border-radius: 0.85rem 0.85rem 0 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.gmt-dd-item:last-child {
|
|
81
|
+
border-radius: 0 0 0.85rem 0.85rem;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.gmt-dd-item:hover {
|
|
85
|
+
background: color-mix(in srgb, var(--accent) 12%, transparent);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.gmt-dd-item.taken {
|
|
89
|
+
opacity: 0.3;
|
|
90
|
+
pointer-events: none;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.gmt-dd-offset {
|
|
94
|
+
font-size: 0.75rem;
|
|
95
|
+
opacity: 0.5;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.gmt-dd-empty {
|
|
99
|
+
padding: 1rem;
|
|
100
|
+
text-align: center;
|
|
101
|
+
font-size: 0.8rem;
|
|
102
|
+
color: var(--text-base);
|
|
103
|
+
opacity: 0.4;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.gmt-grid {
|
|
107
|
+
display: grid;
|
|
108
|
+
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
109
|
+
gap: 1rem;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.gmt-card {
|
|
113
|
+
position: relative;
|
|
114
|
+
display: flex;
|
|
115
|
+
flex-direction: column;
|
|
116
|
+
align-items: center;
|
|
117
|
+
gap: 0.75rem;
|
|
118
|
+
padding: 1.75rem 1rem 1.15rem;
|
|
119
|
+
background: var(--bg-surface);
|
|
120
|
+
border: 1px solid var(--border-base);
|
|
121
|
+
border-radius: 1.25rem;
|
|
122
|
+
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
123
|
+
min-height: 300px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.gmt-card:hover {
|
|
127
|
+
border-color: color-mix(in srgb, var(--accent) 40%, var(--border-base));
|
|
128
|
+
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.gmt-card-remove {
|
|
132
|
+
position: absolute;
|
|
133
|
+
top: 0.6rem;
|
|
134
|
+
right: 0.6rem;
|
|
135
|
+
width: 1.6rem;
|
|
136
|
+
height: 1.6rem;
|
|
137
|
+
border: none;
|
|
138
|
+
border-radius: 50%;
|
|
139
|
+
background: color-mix(in srgb, var(--text-base) 8%, transparent);
|
|
140
|
+
color: var(--text-base);
|
|
141
|
+
font-size: 0.85rem;
|
|
142
|
+
line-height: 1;
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-items: center;
|
|
146
|
+
justify-content: center;
|
|
147
|
+
opacity: 0;
|
|
148
|
+
transition: opacity 0.15s ease;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.gmt-card:hover .gmt-card-remove {
|
|
152
|
+
opacity: 0.4;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.gmt-card-remove:hover {
|
|
156
|
+
opacity: 1;
|
|
157
|
+
background: color-mix(in srgb, var(--accent) 20%, transparent);
|
|
158
|
+
color: var(--accent);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.gmt-card-clock-w {
|
|
162
|
+
width: 160px;
|
|
163
|
+
height: 160px;
|
|
164
|
+
display: flex;
|
|
165
|
+
align-items: center;
|
|
166
|
+
justify-content: center;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.gmt-card-clock {
|
|
170
|
+
width: 100%;
|
|
171
|
+
height: 100%;
|
|
172
|
+
display: block;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.gmt-card-info {
|
|
176
|
+
display: flex;
|
|
177
|
+
flex-direction: column;
|
|
178
|
+
align-items: center;
|
|
179
|
+
gap: 0.2rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.gmt-card-city {
|
|
183
|
+
font-size: 0.8rem;
|
|
184
|
+
font-weight: 600;
|
|
185
|
+
text-transform: uppercase;
|
|
186
|
+
letter-spacing: 0.1em;
|
|
187
|
+
color: var(--text-base);
|
|
188
|
+
opacity: 0.5;
|
|
189
|
+
overflow: hidden;
|
|
190
|
+
text-overflow: ellipsis;
|
|
191
|
+
white-space: nowrap;
|
|
192
|
+
max-width: 180px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.gmt-card-time {
|
|
196
|
+
font-size: 1rem;
|
|
197
|
+
font-weight: 500;
|
|
198
|
+
line-height: 1.4;
|
|
199
|
+
color: var(--text-base);
|
|
200
|
+
letter-spacing: 0.05em;
|
|
201
|
+
font-variant-numeric: tabular-nums;
|
|
202
|
+
opacity: 0.8;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.gmt-card-offset {
|
|
206
|
+
font-size: 0.7rem;
|
|
207
|
+
font-weight: 500;
|
|
208
|
+
color: var(--text-base);
|
|
209
|
+
opacity: 0.35;
|
|
210
|
+
letter-spacing: 0.03em;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
@media (max-width: 640px) {
|
|
214
|
+
.gmt-grid {
|
|
215
|
+
grid-template-columns: repeat(2, 1fr);
|
|
216
|
+
gap: 0.6rem;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.gmt-card {
|
|
220
|
+
padding: 1.2rem 0.6rem 0.85rem;
|
|
221
|
+
min-height: 220px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.gmt-card-clock-w {
|
|
225
|
+
width: 120px;
|
|
226
|
+
height: 120px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.gmt-card-time {
|
|
230
|
+
font-size: 0.85rem;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
@media (max-width: 400px) {
|
|
235
|
+
.gmt-grid {
|
|
236
|
+
grid-template-columns: 1fr;
|
|
237
|
+
gap: 0.6rem;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { WithContext, Thing } from 'schema-dts';
|
|
2
|
+
import type { FAQItem, HowToStep } from '../../types';
|
|
3
|
+
|
|
4
|
+
function buildFAQ(faq: FAQItem[]): WithContext<Thing> {
|
|
5
|
+
return {
|
|
6
|
+
'@context': 'https://schema.org', '@type': 'FAQPage',
|
|
7
|
+
'mainEntity': faq.map((f) => ({ '@type': 'Question', 'name': f.question, 'acceptedAnswer': { '@type': 'Answer', 'text': f.answer } })),
|
|
8
|
+
} as unknown as WithContext<Thing>;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function buildApp(title: string): WithContext<Thing> {
|
|
12
|
+
return {
|
|
13
|
+
'@context': 'https://schema.org', '@type': 'SoftwareApplication', 'name': title,
|
|
14
|
+
'operatingSystem': 'All', 'applicationCategory': 'UtilitiesApplication',
|
|
15
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
16
|
+
} as unknown as WithContext<Thing>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function buildHowTo(title: string, howTo: HowToStep[]): WithContext<Thing> {
|
|
20
|
+
return {
|
|
21
|
+
'@context': 'https://schema.org', '@type': 'HowTo', 'name': title,
|
|
22
|
+
'step': howTo.map((h) => ({ '@type': 'HowToStep', 'name': h.name, 'text': h.text })),
|
|
23
|
+
} as unknown as WithContext<Thing>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function buildSchemas(title: string, faq: FAQItem[], howTo: HowToStep[]): WithContext<Thing>[] {
|
|
27
|
+
return [buildFAQ(faq), buildApp(title), buildHowTo(title, howTo)];
|
|
28
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { GMTWorldTimerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import { buildSchemas } from '../helpers';
|
|
5
|
+
|
|
6
|
+
const faq = [
|
|
7
|
+
{
|
|
8
|
+
question: 'Woran erkenne ich, ob eine Uhr eine echte GMT oder eine Caller-GMT ist?',
|
|
9
|
+
answer: 'Eine <strong>echte GMT</strong> (auch "Flyer"-GMT genannt) lässt sich der lokale Stundenzeiger unabhängig verstellen - ideal für Reisende, die häufig die Zeitzone wechseln. Eine <strong>Caller-GMT</strong> dagegen stellt den GMT-Zeiger separat ein, während der Hauptstundenzeiger stehen bleibt. Das ist günstiger in der Herstellung. So unterscheidest du sie: Ziehe die Krone in die Zeitstellposition und drehe sie. Springt der Stundenzeiger stundenweise vor, ohne anzuhalten, hast du eine echte GMT. Bewegt sich stattdessen der GMT-Zeiger, ist es eine Caller. Rolex verbaut ein echtes GMT-Kaliber (3285) in der GMT-Master II, während viele erschwingliche Mikromarken auf Caller-Werke wie das Seiko NH34 setzen.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Was ist der Unterschied zwischen einer GMT-Uhr und einer World Timer?',
|
|
13
|
+
answer: 'Eine <strong>GMT-Uhr</strong> zeigt in der Regel zwei Zeitzonen an - die lokale Zeit und eine Referenz (meist UTC) - mithilfe eines 24-Stunden-Zeigers und einer 24-Stunden-Lünette. Eine <strong>World Timer</strong> hingegen zeigt alle 24 Zeitzonen auf einmal: Sie hat einen Städtering um das Zifferblatt und eine rotierende 24-Stunden-Scheibe. World Timer wie die Patek Philippe 5230P oder die JLC Geophysic Universal Time lassen dich die Zeit jeder Stadt sofort ablesen. GMT-Uhren sind einfacher und günstiger; World Timer sind mechanisch aufwändiger und meist teurer. Dieses Tool funktioniert wie ein digitaler World Timer - du kannst so viele Städte hinzufügen, wie du brauchst.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Welche Zeitzone zeigt meine Uhr an, wenn auf dem Zifferblatt "GMT" steht?',
|
|
17
|
+
answer: 'Wenn eine Uhr "GMT" auf dem Zifferblatt trägt, zeigt der <strong>GMT-Zeiger</strong> (meist ein vierter Zeiger mit farbiger Pfeilspitze) die Zeit im 24-Stunden-Format an. Die meisten Besitzer stellen diesen Zeiger auf UTC (koordinierte Weltzeit) ein, da alle Zeitzonen als Abweichungen von UTC definiert sind. Die drehbare 24-Stunden-Lünette kann dann ausgerichtet werden, um jede andere Zeitzone abzulesen. Zeigt der GMT-Zeiger zum Beispiel auf 14 (14 Uhr) und die Lünettenmarkierungen sind auf UTC+2 ausgerichtet, liest du die Osteuropäische Zeit ab. Mit diesem Tool kannst du genau diesen Zusammenhang visualisieren.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Beliebige Stadt zu deinem Dashboard hinzufügen',
|
|
24
|
+
text: 'Gib einen Stadt- oder Zeitzonennamen in die Suchleiste ein. Klicke auf ein Ergebnis, um es sofort hinzuzufügen. Jede Stadt erscheint als Live-Uhrkarte mit der aktuellen Ortszeit.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Städte entfernen, wenn du sie nicht mehr brauchst',
|
|
28
|
+
text: 'Fahre mit der Maus über eine Uhrkarte und klicke auf den x-Button, um sie zu entfernen. Deine Auswahl wird automatisch im Browser gespeichert - schließe das Fenster und komm später wieder, dein Dashboard ist genau so, wie du es verlassen hast.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Als GMT-Referenz für deine Uhrensammlung nutzen',
|
|
32
|
+
text: 'Lege deine Heimatstadt fest und füge die Zeitzonen hinzu, die du mit deinen GMT-Uhren verfolgst. Nutze die Live-Offset-Labels, um zu prüfen, ob deine Lünettenausrichtung für jede verfolgte Zone stimmt.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Weltzeituhr: Live Dashboard für mehrere Zeitzonen';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-weltzeituhr',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Verfolge mehrere Zeitzonen live. Füge beliebige Städte hinzu und sieh die aktuelle Zeit sekündlich aktualisiert. Perfekt für Uhrenliebhaber mit GMT- oder World-Timer-Uhren.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Weltzeituhr',
|
|
44
|
+
searchPlaceholder: 'Stadt oder Zeitzone suchen...',
|
|
45
|
+
addLabel: 'Hinzufügen',
|
|
46
|
+
removeLabel: 'Entfernen',
|
|
47
|
+
noResults: 'Keine Städte gefunden',
|
|
48
|
+
yourZones: 'Deine Zeitzonen',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Weltzeituhr: Live Zeitzonen Dashboard für Uhrenliebhaber', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Ob du eine <strong>GMT-Master II</strong>, eine <strong>World Timer</strong> besitzt oder einfach beruflich oder privat mehrere Zeitzonen im Blick behalten musst - dieses Live Dashboard zeigt dir auf einen Blick die aktuelle Zeit in jeder Stadt, die dir wichtig ist. Füge New York, London, Tokio oder jede andere Stadt hinzu, und die Zeit wird jede Sekunde aktualisiert. Deine Zonen werden im Browser gespeichert, sodass du sie nie neu konfigurieren musst.' },
|
|
53
|
+
{ type: 'title', text: 'Warum Uhrenliebhaber eine Weltzeituhr brauchen', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Wenn du <strong>GMT-Uhren</strong> sammelst, kennst du das Problem: Du stellst die Lünette ein, um eine zweite Zeitzone zu verfolgen, aber die Offset-Änderungen durch die Sommerzeit oder der Besitz mehrerer GMTs machen den Vergleich schwierig. Dieses Tool löst das. Füge die Städte hinzu, die deine Uhren verfolgen, und sieh sofort ihren aktuellen Offset und die Uhrzeit. Kein Kopfrechnen mehr - schau einfach auf die Karte und weiß genau, worauf dein GMT-Zeiger zeigen sollte.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs. World Timer: welcher Stil passt zu dir?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Eine <strong>GMT-Uhr</strong> (wie die Rolex GMT-Master II "Pepsi" oder Tudor Black Bay Pro) nutzt einen 24-Stunden-Zeiger und eine drehbare Lünette, um zwei Zeitzonen zu verfolgen. Eine <strong>World Timer</strong> (wie die Nomos Zürich Weltzeit oder Omega Seamaster Worldtimer) zeigt alle 24 Zonen auf einmal dank eines Städterings und einer 24-Stunden-Scheibe. Dieses Dashboard funktioniert wie ein World Timer: Du siehst alle Städte auf einmal. Nutze es, um vor dem Kauf zu entscheiden, welche Komplikation am besten zu deinem Lebensstil passt.' },
|
|
57
|
+
{ type: 'title', text: 'Praktische Anwendungen jenseits des Uhrensammelns', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Remote-Mitarbeiter, die Meetings über Zeitzonen hinweg planen',
|
|
61
|
+
'Vielreisende, die Heimat und Zielort gleichzeitig im Blick behalten',
|
|
62
|
+
'Trader, die die Marktöffnungen in New York, London, Tokio und Sydney verfolgen',
|
|
63
|
+
'Jeder, der wissen will, "wie spät ist es gerade in..." ohne googeln zu müssen',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Weltzeituhr Live', icon: 'mdi:clock-time-eight', badge: 'ZEIT', html: 'Die Zeiten werden live jede Sekunde aktualisiert - direkt in deinem Browser mit der integrierten Zeitzonendatenbank. Sommerzeitumstellungen werden automatisch berücksichtigt. Es werden keine Daten an einen Server gesendet.' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { GMTWorldTimerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import { buildSchemas } from '../helpers';
|
|
5
|
+
|
|
6
|
+
const faq = [
|
|
7
|
+
{
|
|
8
|
+
question: 'How do I know if a watch is a true GMT or a caller GMT?',
|
|
9
|
+
answer: 'A <strong>true GMT</strong> (also called "flyer" GMT) lets you jump the local hour hand independently — ideal for travelers who change time zones frequently. A <strong>caller GMT</strong> adjusts the GMT hand independently while the main hour hand stays fixed, which is cheaper to manufacture. To tell them apart: pull the crown to the time-setting position and rotate. If the hour hand jumps in one-hour increments without stopping, it\'s a true GMT. If the GMT hand moves instead, it\'s a caller. Rolex uses a true GMT calibre (3285) in the GMT-Master II, while many affordable microbrands use caller movements like the Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'What\'s the difference between a GMT watch and a World Timer?',
|
|
13
|
+
answer: 'A <strong>GMT watch</strong> usually tracks two time zones — your local time and a reference (usually UTC) — using a 24-hour hand and a 24-hour bezel. A <strong>World Timer</strong> shows all 24 time zones at once: it has a city ring around the dial and a 24-hour disc that rotates. World Timers like the Patek Philippe 5230P or JLC Geophysic Universal Time let you read the time in any city instantly. GMTs are simpler and more affordable; World Timers are mechanically more complex and typically more expensive. This tool works more like a digital World Timer, letting you add as many cities as you need.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'What time zone does my watch show when it says "GMT"?',
|
|
17
|
+
answer: 'When a watch has "GMT" on the dial, the <strong>GMT hand</strong> (usually a fourth hand with a colored arrow tip) typically points to the time in a 24-hour format. Most owners set this hand to UTC (Coordinated Universal Time) because all time zones are defined as offsets from UTC. The rotating 24-hour bezel can then be aligned to read any other time zone. For example, if the GMT hand points to 14 (2 PM) and your bezel markers align it to UTC+2, you\'re reading Eastern European Time. This tool helps you visualise exactly that relationship.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Add any city to your dashboard',
|
|
24
|
+
text: 'Type a city name or time zone in the search bar. Click on a result to add it instantly. Each city appears as a live clock card with the current local time.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Remove cities when you don\'t need them',
|
|
28
|
+
text: 'Hover any clock card and click the × button to remove it. Your selection is saved automatically in your browser — close and come back later and your dashboard is exactly as you left it.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Use it as a GMT reference for your watch collection',
|
|
32
|
+
text: 'Set your home city and add the time zones you track with your GMT watches. Use the live offset labels to check if your bezel alignment is correct for each tracked zone.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'World Clock: Live Multiple Time Zone Dashboard';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-world-timer',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Track multiple time zones live. Add any city and see its current time update every second. Perfect for watch enthusiasts with GMT or World Timer watches.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'World Clock',
|
|
44
|
+
searchPlaceholder: 'Search city or time zone...',
|
|
45
|
+
addLabel: 'Add',
|
|
46
|
+
removeLabel: 'Remove',
|
|
47
|
+
noResults: 'No cities found',
|
|
48
|
+
yourZones: 'Your Time Zones',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'World Clock — Live Time Zone Dashboard for Watch Enthusiasts', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Whether you own a <strong>GMT-Master II</strong>, a <strong>World Timer</strong>, or simply need to track multiple time zones for work or travel, this live dashboard shows you the current time in every city you care about — all at a glance. Add New York, London, Tokyo, or any city, and the time updates every second. Your zones are saved in your browser so you never have to reconfigure.' },
|
|
53
|
+
{ type: 'title', text: 'Why Watch Enthusiasts Need a World Clock', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'If you collect <strong>GMT watches</strong>, you know the struggle: you set the bezel to track a second time zone, but offsets change with Daylight Saving Time, or you simply own multiple GMTs and want to compare how each one tracks a different city. This tool solves that. Add the cities your watches track, and instantly see their current offset and time. No more mental math — just look at the card and know exactly what your GMT hand should be pointing to.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Which One Matches Your Style?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'A <strong>GMT watch</strong> (like the Rolex GMT-Master II "Pepsi" or Tudor Black Bay Pro) uses a 24-hour hand and a rotating bezel to track two time zones. A <strong>World Timer</strong> (like the Nomos Zürich Weltzeit or Omega Seamaster Worldtimer) shows all 24 zones at once using a city ring and a 24-hour disc. This dashboard mimics a World Timer: you can see every city at once. Use it to decide which complication fits your lifestyle before you buy.' },
|
|
57
|
+
{ type: 'title', text: 'Practical Uses Beyond Watch Collecting', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Remote workers scheduling across time zones without confusion',
|
|
61
|
+
'Frequent travelers keeping an eye on home and destination simultaneously',
|
|
62
|
+
'Traders tracking market openings in New York, London, Tokyo, and Sydney',
|
|
63
|
+
'Anyone who wants to know "what time is it right now in..." without Googling',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Live World Clock', icon: 'mdi:clock-time-eight', badge: 'TIME', html: 'Times update live every second using your browser\'s built-in time zone database. Daylight Saving Time transitions are handled automatically. No data is sent to any server.' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { GMTWorldTimerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import { buildSchemas } from '../helpers';
|
|
5
|
+
|
|
6
|
+
const faq = [
|
|
7
|
+
{
|
|
8
|
+
question: '¿Cómo saber si un reloj es un GMT auténtico o un caller GMT?',
|
|
9
|
+
answer: 'Un <strong>GMT auténtico</strong> (también llamado "flyer" GMT) permite saltar la hora local de forma independiente — ideal para viajeros que cambian de huso horario con frecuencia. Un <strong>caller GMT</strong> ajusta la aguja GMT por separado mientras la hora principal permanece fija, lo que es más barato de fabricar. Para distinguirlos: saca la corona a la posición de ajuste de hora y gírala. Si la aguja de la hora salta en incrementos de una hora sin detenerse, es un GMT auténtico. Si se mueve la aguja GMT, es un caller. Rolex usa un calibre GMT auténtico (3285) en el GMT-Master II, mientras que muchas micro-marcas asequibles usan movimientos caller como el Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: '¿Cuál es la diferencia entre un reloj GMT y un World Timer?',
|
|
13
|
+
answer: 'Un <strong>reloj GMT</strong> normalmente sigue dos husos horarios — la hora local y una referencia (generalmente UTC) — usando una aguja de 24 horas y un bisel de 24 horas. Un <strong>World Timer</strong> muestra los 24 husos horarios de una vez: tiene un anillo de ciudades alrededor de la esfera y un disco de 24 horas que gira. World Timers como el Patek Philippe 5230P o el JLC Geophysic Universal Time te permiten leer la hora de cualquier ciudad al instante. Los GMT son más simples y asequibles; los World Timer son mecánicamente más complejos y típicamente más caros. Esta herramienta funciona como un World Timer digital, permitiéndote añadir tantas ciudades como necesites.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '¿Qué huso horario muestra mi reloj cuando dice "GMT"?',
|
|
17
|
+
answer: 'Cuando un reloj tiene "GMT" en la esfera, la <strong>aguja GMT</strong> (normalmente una cuarta aguja con punta de flecha de color) señala la hora en formato de 24 horas. La mayoría de los propietarios la ajustan a UTC (Tiempo Universal Coordinado) porque todos los husos horarios se definen como desviaciones de UTC. El bisel giratorio de 24 horas puede alinearse para leer cualquier otro huso horario. Por ejemplo, si la aguja GMT señala las 14 (2 PM) y las marcas del bisel la alinean con UTC+2, estás leyendo la Hora de Europa del Este. Esta herramienta te ayuda a visualizar exactamente esa relación.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Añade cualquier ciudad a tu panel',
|
|
24
|
+
text: 'Escribe el nombre de una ciudad o huso horario en la barra de búsqueda. Haz clic en un resultado para añadirlo al instante. Cada ciudad aparece como una tarjeta de reloj en vivo con la hora local actual.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Elimina ciudades cuando no las necesites',
|
|
28
|
+
text: 'Pasa el ratón sobre cualquier tarjeta de reloj y haz clic en el botón × para eliminarla. Tu selección se guarda automáticamente en tu navegador — cierra y vuelve más tarde y tu panel estará exactamente como lo dejaste.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Úsalo como referencia GMT para tu colección de relojes',
|
|
32
|
+
text: 'Establece tu ciudad de origen y añade los husos horarios que sigues con tus relojes GMT. Usa las etiquetas de desfase en vivo para comprobar si la alineación de tu bisel es correcta para cada zona.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Reloj Mundial: Panel en Vivo con Múltiples Husos Horarios';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'reloj-mundial-gmt',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Sigue múltiples husos horarios en vivo. Añade cualquier ciudad y ve su hora actual actualizándose cada segundo. Perfecto para entusiastas de los relojes con GMT o World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Reloj Mundial',
|
|
44
|
+
searchPlaceholder: 'Buscar ciudad o huso horario...',
|
|
45
|
+
addLabel: 'Añadir',
|
|
46
|
+
removeLabel: 'Eliminar',
|
|
47
|
+
noResults: 'No se encontraron ciudades',
|
|
48
|
+
yourZones: 'Tus husos horarios',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Reloj Mundial — Panel de Husos Horarios en Vivo para Entusiastas del Reloj', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Ya sea que tengas un <strong>GMT-Master II</strong>, un <strong>World Timer</strong>, o simplemente necesites seguir múltiples husos horarios por trabajo o viajes, este panel en vivo te muestra la hora actual en cada ciudad que te importa — todo de un vistazo. Añade Nueva York, Londres, Tokio o cualquier ciudad, y la hora se actualiza cada segundo. Tus zonas se guardan en tu navegador para que nunca tengas que reconfigurarlas.' },
|
|
53
|
+
{ type: 'title', text: 'Por qué los entusiastas del reloj necesitan un reloj mundial', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Si coleccionas <strong>relojes GMT</strong>, conoces la lucha: ajustas el bisel para seguir un segundo huso, pero los desfases cambian con el horario de verano, o simplemente tienes múltiples GMT y quieres comparar cómo cada uno sigue una ciudad diferente. Esta herramienta lo soluciona. Añade las ciudades que tus relojes siguen y ve al instante su desfase y hora actual. Nada de cálculos mentales — solo mira la tarjeta y sabrás exactamente hacia dónde debe apuntar tu aguja GMT.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — ¿Cuál se adapta a tu estilo?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Un <strong>reloj GMT</strong> (como el Rolex GMT-Master II "Pepsi" o Tudor Black Bay Pro) usa una aguja de 24 horas y un bisel giratorio para seguir dos husos horarios. Un <strong>World Timer</strong> (como el Nomos Zürich Weltzeit u Omega Seamaster Worldtimer) muestra las 24 zonas a la vez mediante un anillo de ciudades y un disco de 24 horas. Este panel imita un World Timer: puedes ver todas las ciudades a la vez. Úsalo para decidir qué complicación se ajusta a tu estilo de vida antes de comprar.' },
|
|
57
|
+
{ type: 'title', text: 'Usos prácticos más allá del coleccionismo de relojes', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Trabajadores remotos coordinando reuniones entre husos horarios sin confusiones',
|
|
61
|
+
'Viajeros frecuentes vigilando su hogar y destino simultáneamente',
|
|
62
|
+
'Traders siguiendo las aperturas de bolsa en Nueva York, Londres, Tokio y Sídney',
|
|
63
|
+
'Cualquiera que quiera saber "¿qué hora es ahora en…?" sin tener que buscar en Google',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Reloj Mundial en Vivo', icon: 'mdi:clock-time-eight', badge: 'HORA', html: 'Las horas se actualizan en vivo cada segundo usando la base de datos de husos horarios de tu navegador. Los cambios por horario de verano se manejan automáticamente. No se envía ningún dato a ningún servidor.' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { GMTWorldTimerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import { buildSchemas } from '../helpers';
|
|
5
|
+
|
|
6
|
+
const faq = [
|
|
7
|
+
{
|
|
8
|
+
question: 'Comment savoir si une montre est une vraie GMT ou une caller GMT ?',
|
|
9
|
+
answer: 'Une <strong>vraie GMT</strong> (aussi appelée « flyer » GMT) permet de faire sauter l\'aiguille des heures locale indépendamment — idéale pour les voyageurs qui changent souvent de fuseau horaire. Une <strong>caller GMT</strong> ajuste l\'aiguille GMT séparément tandis que l\'aiguille des heures principale reste fixe, ce qui est moins cher à produire. Pour les distinguer : tirez la couronne en position de réglage de l\'heure et tournez-la. Si l\'aiguille des heures saute par paliers d\'une heure sans s\'arrêter, c\'est une vraie GMT. Si l\'aiguille GMT bouge à la place, c\'est une caller. Rolex utilise un calibre vraie GMT (3285) dans la GMT-Master II, tandis que de nombreuses micro-marques abordables emploient des mouvements caller comme le Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Quelle est la différence entre une montre GMT et une World Timer ?',
|
|
13
|
+
answer: 'Une <strong>montre GMT</strong> suit généralement deux fuseaux horaires — l\'heure locale et une référence (généralement UTC) — à l\'aide d\'une aiguille 24 heures et d\'une lunette 24 heures. Une <strong>World Timer</strong> affiche les 24 fuseaux horaires d\'un coup : elle possède un anneau de villes autour du cadran et un disque 24 heures qui tourne. Les World Timers comme la Patek Philippe 5230P ou la JLC Geophysic Universal Time vous permettent de lire l\'heure de n\'importe quelle ville instantanément. Les GMT sont plus simples et plus abordables ; les World Timer sont mécaniquement plus complexes et généralement plus chères. Cet outil fonctionne comme une World Timer numérique, vous permettant d\'ajouter autant de villes que nécessaire.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Quel fuseau horaire ma montre affiche-t-elle quand elle indique « GMT » ?',
|
|
17
|
+
answer: 'Quand une montre porte « GMT » sur le cadran, l\'<strong>aiguille GMT</strong> (généralement une quatrième aiguille avec une pointe de flèche colorée) indique l\'heure au format 24 heures. La plupart des propriétaires règlent cette aiguille sur UTC (temps universel coordonné) car tous les fuseaux horaires sont définis comme des décalages par rapport à UTC. La lunette rotative 24 heures peut ensuite être alignée pour lire n\'importe quel autre fuseau horaire. Par exemple, si l\'aiguille GMT pointe vers 14 (2 PM) et que les repères de votre lunette l\'alignent sur UTC+2, vous lisez l\'heure de l\'Europe de l\'Est. Cet outil vous aide à visualiser exactement cette relation.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Ajoutez n\'importe quelle ville à votre tableau de bord',
|
|
24
|
+
text: 'Tapez le nom d\'une ville ou d\'un fuseau horaire dans la barre de recherche. Cliquez sur un résultat pour l\'ajouter instantanément. Chaque ville apparaît comme une carte horaire en direct avec l\'heure locale actuelle.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Supprimez les villes dont vous n\'avez plus besoin',
|
|
28
|
+
text: 'Survolez une carte horaire et cliquez sur le bouton × pour la supprimer. Votre sélection est automatiquement sauvegardée dans votre navigateur — fermez la page et revenez plus tard, votre tableau de bord est exactement comme vous l\'avez laissé.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Utilisez-le comme référence GMT pour votre collection de montres',
|
|
32
|
+
text: 'Définissez votre ville de référence et ajoutez les fuseaux horaires que vous suivez avec vos montres GMT. Utilisez les étiquettes de décalage en direct pour vérifier si l\'alignement de votre lunette est correct pour chaque zone suivie.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Horloge Mondiale : Tableau de Bord en Direct pour Fuseaux Horaires Multiples';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'horloge-mondiale-gmt',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Suivez plusieurs fuseaux horaires en direct. Ajoutez n\'importe quelle ville et voyez son heure actuelle se mettre à jour chaque seconde. Parfait pour les passionnés de montres GMT ou World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Horloge Mondiale',
|
|
44
|
+
searchPlaceholder: 'Rechercher une ville ou un fuseau horaire...',
|
|
45
|
+
addLabel: 'Ajouter',
|
|
46
|
+
removeLabel: 'Supprimer',
|
|
47
|
+
noResults: 'Aucune ville trouvée',
|
|
48
|
+
yourZones: 'Vos fuseaux horaires',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Horloge Mondiale — Tableau de Bord des Fuseaux Horaires pour Passionnés de Montres', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Que vous possédiez une <strong>GMT-Master II</strong>, une <strong>World Timer</strong>, ou que vous ayez simplement besoin de suivre plusieurs fuseaux horaires pour le travail ou les voyages, ce tableau de bord en direct vous montre l\'heure actuelle dans chaque ville qui compte pour vous — tout d\'un coup d\'œil. Ajoutez New York, Londres, Tokyo ou n\'importe quelle ville, et l\'heure se met à jour chaque seconde. Vos zones sont sauvegardées dans votre navigateur pour que vous n\'ayez jamais à les reconfigurer.' },
|
|
53
|
+
{ type: 'title', text: 'Pourquoi les passionnés de montres ont besoin d\'une horloge mondiale', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Si vous collectionnez les <strong>montres GMT</strong>, vous connaissez le problème : vous réglez la lunette pour suivre un second fuseau, mais les décalages changent avec l\'heure d\'été, ou vous possédez simplement plusieurs GMT et voulez comparer comment chacune suit une ville différente. Cet outil résout tout ça. Ajoutez les villes que vos montres suivent et voyez instantanément leur décalage et l\'heure actuelle. Plus de calcul mental — regardez simplement la carte et sachez exactement où votre aiguille GMT devrait pointer.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Laquelle correspond à votre style ?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Une <strong>montre GMT</strong> (comme la Rolex GMT-Master II « Pepsi » ou la Tudor Black Bay Pro) utilise une aiguille 24 heures et une lunette rotative pour suivre deux fuseaux horaires. Une <strong>World Timer</strong> (comme la Nomos Zürich Weltzeit ou l\'Omega Seamaster Worldtimer) affiche les 24 zones à la fois grâce à un anneau de villes et un disque 24 heures. Ce tableau de bord imite une World Timer : vous pouvez voir toutes les villes en même temps. Utilisez-le pour décider quelle complication correspond à votre style de vie avant d\'acheter.' },
|
|
57
|
+
{ type: 'title', text: 'Utilisations pratiques au-delà de la collection de montres', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Travailleurs à distance planifiant des réunions entre fuseaux horaires sans confusion',
|
|
61
|
+
'Voyageurs fréquents gardant un œil sur leur domicile et leur destination simultanément',
|
|
62
|
+
'Traders suivant les ouvertures des marchés à New York, Londres, Tokyo et Sydney',
|
|
63
|
+
'Quiconque veut savoir « quelle heure il est à… » sans avoir à chercher sur Google',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Horloge Mondiale en Direct', icon: 'mdi:clock-time-eight', badge: 'HEURE', html: 'Les heures se mettent à jour en direct chaque seconde grâce à la base de données de fuseaux horaires de votre navigateur. Les changements d\'heure d\'été sont gérés automatiquement. Aucune donnée n\'est envoyée à un serveur.' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { GMTWorldTimerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import { buildSchemas } from '../helpers';
|
|
5
|
+
|
|
6
|
+
const faq = [
|
|
7
|
+
{
|
|
8
|
+
question: 'Bagaimana cara mengetahui apakah sebuah jam adalah true GMT atau caller GMT?',
|
|
9
|
+
answer: '<strong>True GMT</strong> (disebut juga "flyer" GMT) memungkinkan Anda mengubah jarum jam lokal secara independen — ideal untuk pelancong yang sering berganti zona waktu. <strong>Caller GMT</strong> menyesuaikan jarum GMT secara terpisah sementara jarum jam utama tetap diam, yang lebih murah untuk diproduksi. Cara membedakannya: tarik mahkota ke posisi pengaturan waktu dan putar. Jika jarum jam melompat dalam kenaikan satu jam tanpa berhenti, itu adalah true GMT. Jika jarum GMT yang bergerak, itu adalah caller. Rolex menggunakan kaliber true GMT (3285) di GMT-Master II, sementara banyak microbrand terjangkau menggunakan mesin caller seperti Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Apa perbedaan antara jam GMT dan World Timer?',
|
|
13
|
+
answer: 'Sebuah <strong>jam GMT</strong> biasanya melacak dua zona waktu — waktu lokal Anda dan referensi (biasanya UTC) — menggunakan jarum 24 jam dan bezel 24 jam. Sebuah <strong>World Timer</strong> menampilkan semua 24 zona waktu sekaligus: memiliki cincin kota di sekeliling dial dan piringan 24 jam yang berputar. World Timer seperti Patek Philippe 5230P atau JLC Geophysic Universal Time memungkinkan Anda membaca waktu di kota mana pun secara instan. GMT lebih sederhana dan lebih terjangkau; World Timer secara mekanis lebih kompleks dan biasanya lebih mahal. Alat ini bekerja seperti World Timer digital, memungkinkan Anda menambahkan kota sebanyak yang Anda butuhkan.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Zona waktu apa yang ditunjukkan jam saya ketika bertuliskan "GMT"?',
|
|
17
|
+
answer: 'Ketika sebuah jam bertuliskan "GMT" di dial-nya, <strong>jarum GMT</strong> (biasanya jarum keempat dengan ujung panah berwarna) menunjuk ke waktu dalam format 24 jam. Sebagian besar pemilik mengatur jarum ini ke UTC (Waktu Universal Terkoordinasi) karena semua zona waktu didefinisikan sebagai offset dari UTC. Bezel 24 jam yang dapat diputar kemudian dapat disejajarkan untuk membaca zona waktu lainnya. Misalnya, jika jarum GMT menunjuk ke 14 (jam 2 siang) dan marka bezel Anda menyelaraskannya ke UTC+2, Anda sedang membaca Waktu Eropa Timur. Alat ini membantu Anda memvisualisasikan hubungan tersebut.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Tambahkan kota apa pun ke dasbor Anda',
|
|
24
|
+
text: 'Ketik nama kota atau zona waktu di bilah pencarian. Klik hasilnya untuk menambahkannya secara instan. Setiap kota muncul sebagai kartu jam langsung dengan waktu lokal saat ini.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Hapus kota saat tidak diperlukan lagi',
|
|
28
|
+
text: 'Arahkan kursor ke kartu jam dan klik tombol × untuk menghapusnya. Pilihan Anda disimpan secara otomatis di browser — tutup dan kembali lagi nanti, dasbor Anda persis seperti yang Anda tinggalkan.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Gunakan sebagai referensi GMT untuk koleksi jam tangan Anda',
|
|
32
|
+
text: 'Atur kota asal Anda dan tambahkan zona waktu yang Anda lacak dengan jam GMT Anda. Gunakan label offset langsung untuk memeriksa apakah penyelarasan bezel Anda sudah benar untuk setiap zona yang dilacak.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Jam Dunia: Dasbor Zona Waktu Langsung';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'jam-dunia-gmt',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Lacak beberapa zona waktu secara langsung. Tambahkan kota mana pun dan lihat waktu saat ini diperbarui setiap detik. Sempurna untuk penggemar jam dengan jam GMT atau World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Jam Dunia',
|
|
44
|
+
searchPlaceholder: 'Cari kota atau zona waktu...',
|
|
45
|
+
addLabel: 'Tambah',
|
|
46
|
+
removeLabel: 'Hapus',
|
|
47
|
+
noResults: 'Kota tidak ditemukan',
|
|
48
|
+
yourZones: 'Zona Waktu Anda',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Jam Dunia — Dasbor Zona Waktu Langsung untuk Penggemar Jam', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Baik Anda memiliki <strong>GMT-Master II</strong>, <strong>World Timer</strong>, atau sekadar perlu melacak beberapa zona waktu untuk kerja atau perjalanan, dasbor langsung ini menunjukkan waktu saat ini di setiap kota yang Anda pedulikan — semua dalam sekali lihat. Tambahkan New York, London, Tokyo, atau kota mana pun, dan waktu diperbarui setiap detik. Zona Anda disimpan di browser sehingga Anda tidak perlu mengonfigurasi ulang.' },
|
|
53
|
+
{ type: 'title', text: 'Mengapa Penggemar Jam Membutuhkan Jam Dunia', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Jika Anda mengoleksi <strong>jam GMT</strong>, Anda tahu kesulitannya: Anda menyetel bezel untuk melacak zona waktu kedua, tetapi offset berubah karena Waktu Musim Panas, atau Anda memiliki beberapa GMT dan ingin membandingkan bagaimana masing-masing melacak kota yang berbeda. Alat ini memecahkan masalah itu. Tambahkan kota yang dilacak jam Anda, dan langsung lihat offset serta waktu saat ini. Tidak perlu menghitung manual — cukup lihat kartu dan tahu persis ke mana jarum GMT Anda harus menunjuk.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Mana yang Sesuai dengan Gaya Anda?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Sebuah <strong>jam GMT</strong> (seperti Rolex GMT-Master II "Pepsi" atau Tudor Black Bay Pro) menggunakan jarum 24 jam dan bezel berputar untuk melacak dua zona waktu. Sebuah <strong>World Timer</strong> (seperti Nomos Zürich Weltzeit atau Omega Seamaster Worldtimer) menampilkan semua 24 zona sekaligus menggunakan cincin kota dan piringan 24 jam. Dasbor ini meniru World Timer: Anda dapat melihat semua kota sekaligus. Gunakan untuk memutuskan komplikasi mana yang cocok dengan gaya hidup Anda sebelum membeli.' },
|
|
57
|
+
{ type: 'title', text: 'Penggunaan Praktis di Luar Koleksi Jam', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Pekerja jarak jauh menjadwalkan lintas zona waktu tanpa kebingungan',
|
|
61
|
+
'Pelancong sering memantau rumah dan tujuan secara bersamaan',
|
|
62
|
+
'Trader melacak pembukaan pasar di New York, London, Tokyo, dan Sydney',
|
|
63
|
+
'Siapa pun yang ingin tahu "sekarang jam berapa di..." tanpa mencari di Google',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Jam Dunia Langsung', icon: 'mdi:clock-time-eight', badge: 'WAKTU', html: 'Waktu diperbarui langsung setiap detik menggunakan basis data zona waktu bawaan browser Anda. Transisi Waktu Musim Panas ditangani secara otomatis. Tidak ada data yang dikirim ke server mana pun.' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|