@jjlmoya/utils-chrono 1.11.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 +6 -0
- package/src/entries.ts +10 -1
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +1 -1
- 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 +6 -0
|
@@ -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: 'Hoe weet ik of een horloge een echte GMT of een caller GMT is?',
|
|
9
|
+
answer: 'Een <strong>echte GMT</strong> (ook wel "flyer" GMT genoemd) laat je de lokale urenwijzer onafhankelijk verspringen — ideaal voor reizigers die vaak van tijdzone wisselen. Een <strong>caller GMT</strong> stelt de GMT-wijzer apart in terwijl de hoofdurenwijzer stil blijft staan, wat goedkoper is om te produceren. Zo herken je het verschil: trek de kroon in de tijdinstelpositie en draai. Als de urenwijzer in stappen van één uur verspringt zonder te stoppen, is het een echte GMT. Als de GMT-wijzer beweegt, is het een caller. Rolex gebruikt een echt GMT-kaliber (3285) in de GMT-Master II, terwijl veel betaalbare microbrands caller-uurwerken zoals de Seiko NH34 gebruiken.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Wat is het verschil tussen een GMT-horloge en een World Timer?',
|
|
13
|
+
answer: 'Een <strong>GMT-horloge</strong> houdt meestal twee tijdzones bij — je lokale tijd en een referentie (meestal UTC) — met behulp van een 24-uurs wijzer en een 24-uurs ring. Een <strong>World Timer</strong> toont alle 24 tijdzones in één oogopslag: het heeft een stedenring rond de wijzerplaat en een draaiende 24-uurs schijf. World Timers zoals de Patek Philippe 5230P of JLC Geophysic Universal Time laten je de tijd in elke stad direct aflezen. GMT\'s zijn eenvoudiger en betaalbaarder; World Timers zijn mechanisch complexer en doorgaans duurder. Deze tool werkt als een digitale World Timer, waarmee je zoveel steden kunt toevoegen als je nodig hebt.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Welke tijdzone geeft mijn horloge aan als er "GMT" op de wijzerplaat staat?',
|
|
17
|
+
answer: 'Als een horloge "GMT" op de wijzerplaat heeft staan, wijst de <strong>GMT-wijzer</strong> (meestal een vierde wijzer met een gekleurde pijlpunt) de tijd aan in een 24-uurs formaat. De meeste eigenaren stellen deze wijzer in op UTC (gecoördineerde wereldtijd) omdat alle tijdzones worden gedefinieerd als afwijkingen van UTC. De draaibare 24-uurs ring kan dan worden uitgelijnd om elke andere tijdzone af te lezen. Als de GMT-wijzer bijvoorbeeld naar 14 (2 PM) wijst en uw ringmarkeringen zijn uitgelijnd op UTC+2, leest u de Oost-Europese Tijd af. Deze tool helpt u precies die relatie te visualiseren.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Voeg elke stad toe aan je dashboard',
|
|
24
|
+
text: 'Typ een stadsnaam of tijdzone in de zoekbalk. Klik op een resultaat om het direct toe te voegen. Elke stad verschijnt als een live klokkaart met de actuele lokale tijd.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Verwijder steden wanneer je ze niet nodig hebt',
|
|
28
|
+
text: 'Beweeg over een klokkaart en klik op de ×-knop om deze te verwijderen. Je selectie wordt automatisch opgeslagen in je browser — sluit af en kom later terug, je dashboard is precies zoals je het hebt achtergelaten.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Gebruik het als GMT-referentie voor je horlogecollectie',
|
|
32
|
+
text: 'Stel je thuisstad in en voeg de tijdzones toe die je met je GMT-horloges bijhoudt. Gebruik de live offset-labels om te controleren of je ringuitlijning correct is voor elke gevolgde zone.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Wereldklok: Live Dashboard voor Meerdere Tijdzones';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-wereldklok',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Volg meerdere tijdzones live. Voeg elke stad toe en zie de actuele tijd elke seconde veranderen. Perfect voor horlogeliefhebbers met een GMT- of World Timer-horloge.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Wereldklok',
|
|
44
|
+
searchPlaceholder: 'Zoek stad of tijdzone...',
|
|
45
|
+
addLabel: 'Toevoegen',
|
|
46
|
+
removeLabel: 'Verwijderen',
|
|
47
|
+
noResults: 'Geen steden gevonden',
|
|
48
|
+
yourZones: 'Jouw tijdzones',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Wereldklok — Live Tijdzone-Dashboard voor Horlogeliefhebbers', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Of je nu een <strong>GMT-Master II</strong>, een <strong>World Timer</strong> bezit, of simpelweg meerdere tijdzones moet bijhouden voor werk of reizen, dit live dashboard toont je de actuele tijd in elke stad die je belangrijk vindt — allemaal in één oogopslag. Voeg New York, Londen, Tokio of elke andere stad toe en de tijd wordt elke seconde bijgewerkt. Je zones worden opgeslagen in je browser, zodat je ze nooit opnieuw hoeft in te stellen.' },
|
|
53
|
+
{ type: 'title', text: 'Waarom horlogeliefhebbers een wereldklok nodig hebben', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Als je <strong>GMT-horloges</strong> verzamelt, ken je het probleem: je stelt de ring in om een tweede tijdzone te volgen, maar de verschuivingen veranderen met de zomertijd, of je hebt meerdere GMT\'s en wilt vergelijken hoe elke een andere stad volgt. Deze tool lost dat op. Voeg de steden toe die je horloges volgen en zie direct hun huidige offset en tijd. Geen hoofdrekenen meer — kijk gewoon naar de kaart en weet precies waar je GMT-wijzer naartoe zou moeten wijzen.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Welke Past bij Jouw Stijl?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Een <strong>GMT-horloge</strong> (zoals de Rolex GMT-Master II "Pepsi" of Tudor Black Bay Pro) gebruikt een 24-uurs wijzer en een draaibare ring om twee tijdzones te volgen. Een <strong>World Timer</strong> (zoals de Nomos Zürich Weltzeit of Omega Seamaster Worldtimer) toont alle 24 zones tegelijk met een stedenring en een 24-uurs schijf. Dit dashboard werkt als een World Timer: je kunt alle steden tegelijk zien. Gebruik het om te beslissen welke complicatie bij jouw levensstijl past voordat je tot aanschaf overgaat.' },
|
|
57
|
+
{ type: 'title', text: 'Praktisch Gebruik Verder dan Horloges Verzamelen', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Thuiswerkers die moeiteloos vergaderingen plannen over tijdzones heen',
|
|
61
|
+
'Veelreizigers die tegelijkertijd thuis en bestemming in de gaten houden',
|
|
62
|
+
'Handelaren die marktopeningen in New York, Londen, Tokio en Sydney volgen',
|
|
63
|
+
'Iedereen die wil weten "hoe laat is het in..." zonder te hoeven googelen',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Live Wereldklok', icon: 'mdi:clock-time-eight', badge: 'TIJD', html: 'De tijden worden live elke seconde bijgewerkt met behulp van de ingebouwde tijdzone-database van je browser. Zomertijdoverschakelingen worden automatisch verwerkt. Er worden geen gegevens naar een server verzonden.' },
|
|
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: 'Jak rozpoznać, czy zegarek to prawdziwy GMT, czy caller GMT?',
|
|
9
|
+
answer: '<strong>Prawdziwy GMT</strong> (zwany też "flyer" GMT) pozwala na samodzielne przestawianie lokalnej wskazówki godzinowej — idealny dla podróżujących, którzy często zmieniają strefy czasowe. <strong>Caller GMT</strong> reguluje wskazówkę GMT oddzielnie, podczas gdy główna wskazówka godzinowa pozostaje nieruchoma, co jest tańsze w produkcji. Jak je odróżnić: wyciągnij koronkę do pozycji ustawiania czasu i obróć. Jeśli wskazówka godzinowa skacze co jedną godzinę bez zatrzymywania się, to prawdziwy GMT. Jeśli natomiast porusza się wskazówka GMT, to caller. Rolex używa prawdziwego kalibru GMT (3285) w GMT-Master II, podczas gdy wiele przystępnych cenowo microbrandomów stosuje mechanizmy caller, takie jak Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Jaka jest różnica między zegarkiem GMT a World Timer?',
|
|
13
|
+
answer: '<strong>Zegarek GMT</strong> zwykle śledzi dwie strefy czasowe — czas lokalny i czas referencyjny (najczęściej UTC) — za pomocą 24-godzinnej wskazówki i 24-godzinnego bezela. <strong>World Timer</strong> pokazuje wszystkie 24 strefy czasowe jednocześnie: ma pierścień z nazwami miast wokół tarczy i obracający się 24-godzinny dysk. World Timery, takie jak Patek Philippe 5230P czy JLC Geophysic Universal Time, pozwalają błyskawicznie odczytać czas w dowolnym mieście. GMT są prostsze i bardziej przystępne cenowo; World Timery są mechanicznie bardziej złożone i zazwyczaj droższe. To narzędzie działa jak cyfrowy World Timer, umożliwiając dodanie tylu miast, ile potrzebujesz.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Którą strefę czasową pokazuje mój zegarek, gdy na tarczy widnieje napis "GMT"?',
|
|
17
|
+
answer: 'Gdy na tarczy zegarka widnieje napis "GMT", <strong>wskazówka GMT</strong> (zazwyczaj czwarta wskazówka z kolorową grocikiem) wskazuje czas w formacie 24-godzinnym. Większość właścicieli ustawia tę wskazówkę na UTC (uniwersalny czas koordynowany), ponieważ wszystkie strefy czasowe są definiowane jako przesunięcia względem UTC. Obrotowy 24-godzinny bezel można następnie wyrównać, aby odczytać dowolną inną strefę czasową. Na przykład, jeśli wskazówka GMT wskazuje 14 (2 po południu), a znaczniki bezela są ustawione na UTC+2, odczytujesz czas wschodnioeuropejski. To narzędzie pomaga wizualizować dokładnie tę zależność.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Dodaj dowolne miasto do swojego pulpitu',
|
|
24
|
+
text: 'Wpisz nazwę miasta lub strefy czasowej w pasku wyszukiwania. Kliknij wynik, aby natychmiast go dodać. Każde miasto pojawia się jako żywa karta zegara z aktualnym czasem lokalnym.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Usuwaj miasta, gdy nie są już potrzebne',
|
|
28
|
+
text: 'Najedź kursorem na kartę zegara i kliknij przycisk ×, aby ją usunąć. Twój wybór jest automatycznie zapisywany w przeglądarce — zamknij okno i wróć później, a pulpit będzie dokładnie taki, jak go zostawiłeś.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Używaj jako punktu odniesienia GMT dla swojej kolekcji zegarków',
|
|
32
|
+
text: 'Ustaw swoje miasto macierzyste i dodaj strefy czasowe, które śledzisz za pomocą swoich zegarków GMT. Korzystaj z etykiet przesunięcia na żywo, aby sprawdzić, czy ustawienie bezela jest prawidłowe dla każdej śledzonej strefy.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Zegar Światowy: Pulpit na Żywo z Wieloma Strefami Czasowymi';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-zegar-swiatowy',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Śledź wiele stref czasowych na żywo. Dodaj dowolne miasto i obserwuj aktualizację czasu co sekundę. Idealne dla entuzjastów zegarków z GMT lub World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Zegar Światowy',
|
|
44
|
+
searchPlaceholder: 'Szukaj miasta lub strefy czasowej...',
|
|
45
|
+
addLabel: 'Dodaj',
|
|
46
|
+
removeLabel: 'Usuń',
|
|
47
|
+
noResults: 'Nie znaleziono miast',
|
|
48
|
+
yourZones: 'Twoje strefy czasowe',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Zegar Światowy — Pulpit Stref Czasowych na Żywo dla Entuzjastów Zegarków', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Niezależnie od tego, czy posiadasz <strong>GMT-Master II</strong>, <strong>World Timer</strong>, czy po prostu musisz śledzić wiele stref czasowych do pracy lub w podróży, ten pulpit na żywo pokazuje aktualny czas w każdym mieście, które cię interesuje — wszystko na pierwszy rzut oka. Dodaj Nowy Jork, Londyn, Tokio lub dowolne miasto, a czas aktualizuje się co sekundę. Twoje strefy są zapisywane w przeglądarce, więc nigdy nie musisz konfigurować ich ponownie.' },
|
|
53
|
+
{ type: 'title', text: 'Dlaczego entuzjaści zegarków potrzebują zegara światowego', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Jeśli kolekcjonujesz <strong>zegarki GMT</strong>, znasz ten problem: ustawiasz bezel, by śledzić drugą strefę czasową, ale przesunięcia zmieniają się wraz z czasem letnim, albo masz kilka GMT i chcesz porównać, jak każdy z nich śledzi inne miasto. To narzędzie rozwiązuje ten problem. Dodaj miasta, które śledzą twoje zegarki, i natychmiast zobacz ich aktualne przesunięcie i czas. Żadnej matematyki w pamięci — wystarczy spojrzeć na kartę i dokładnie wiedzieć, gdzie powinna wskazywać twoja wskazówka GMT.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — który pasuje do twojego stylu?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: '<strong>Zegarek GMT</strong> (taki jak Rolex GMT-Master II "Pepsi" czy Tudor Black Bay Pro) używa 24-godzinnej wskazówki i obrotowego bezela do śledzenia dwóch stref czasowych. <strong>World Timer</strong> (taki jak Nomos Zürich Weltzeit czy Omega Seamaster Worldtimer) pokazuje wszystkie 24 strefy naraz za pomocą pierścienia miast i 24-godzinnego dysku. Ten pulpit naśladuje World Timer: możesz zobaczyć wszystkie miasta jednocześnie. Użyj go, aby zdecydować, która komplikacja pasuje do twojego stylu życia przed zakupem.' },
|
|
57
|
+
{ type: 'title', text: 'Praktyczne zastosowania poza kolekcjonowaniem zegarków', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Pracownicy zdalni umawiający spotkania między strefami czasowymi bez zamieszania',
|
|
61
|
+
'Często podróżujący, którzy jednocześnie obserwują dom i cel podróży',
|
|
62
|
+
'Traderzy śledzący otwarcia rynków w Nowym Jorku, Londynie, Tokio i Sydney',
|
|
63
|
+
'Każdy, kto chce wiedzieć "która jest godzina w..." bez googlowania',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Zegar Światowy na Żywo', icon: 'mdi:clock-time-eight', badge: 'CZAS', html: 'Czasy aktualizują się na żywo co sekundę przy użyciu wbudowanej w przeglądarkę bazy danych stref czasowych. Przejścia na czas letni są obsługiwane automatycznie. Żadne dane nie są wysyłane do żadnego serwera.' },
|
|
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: 'Como saber se um relógio é um GMT verdadeiro ou um caller GMT?',
|
|
9
|
+
answer: 'Um <strong>GMT verdadeiro</strong> (também chamado de "flyer" GMT) permite que você salte o ponteiro das horas local de forma independente — ideal para viajantes que mudam de fuso horário com frequência. Um <strong>caller GMT</strong> ajusta o ponteiro GMT separadamente enquanto o ponteiro das horas principal permanece fixo, o que é mais barato de fabricar. Para diferenciá-los: puxe a coroa para a posição de acerto das horas e gire. Se o ponteiro das horas saltar em incrementos de uma hora sem parar, é um GMT verdadeiro. Se o ponteiro GMT se mover, é um caller. A Rolex usa um calibre GMT verdadeiro (3285) no GMT-Master II, enquanto muitas micro-marcas acessíveis usam movimentos caller como o Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Qual é a diferença entre um relógio GMT e um World Timer?',
|
|
13
|
+
answer: 'Um <strong>relógio GMT</strong> geralmente acompanha dois fusos horários — a hora local e uma referência (normalmente UTC) — usando um ponteiro de 24 horas e um bisel de 24 horas. Um <strong>World Timer</strong> mostra todos os 24 fusos horários de uma vez: tem um anel de cidades à volta do mostrador e um disco de 24 horas que roda. World Timers como o Patek Philippe 5230P ou o JLC Geophysic Universal Time permitem-lhe ler as horas em qualquer cidade instantaneamente. Os GMTs são mais simples e acessíveis; os World Timers são mecanicamente mais complexos e tipicamente mais caros. Esta ferramenta funciona como um World Timer digital, permitindo-lhe adicionar quantas cidades precisar.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Qual fuso horário o meu relógio mostra quando diz "GMT"?',
|
|
17
|
+
answer: 'Quando um relógio tem "GMT" no mostrador, o <strong>ponteiro GMT</strong> (geralmente um quarto ponteiro com uma ponta de seta colorida) aponta para a hora no formato de 24 horas. A maioria dos utilizadores ajusta este ponteiro para UTC (Tempo Universal Coordenado) porque todos os fusos horários são definidos como desvios do UTC. O bisel giratório de 24 horas pode então ser alinhado para ler qualquer outro fuso horário. Por exemplo, se o ponteiro GMT apontar para 14 (2 da tarde) e as marcas do bisel o alinharem com UTC+2, está a ler a Hora da Europa Oriental. Esta ferramenta ajuda-o a visualizar exatamente essa relação.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Adicione qualquer cidade ao seu painel',
|
|
24
|
+
text: 'Digite o nome de uma cidade ou fuso horário na barra de pesquisa. Clique num resultado para o adicionar instantaneamente. Cada cidade aparece como um cartão de relógio ao vivo com a hora local atual.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Remova cidades quando não precisar delas',
|
|
28
|
+
text: 'Passe o rato sobre qualquer cartão de relógio e clique no botão × para o remover. A sua seleção é guardada automaticamente no seu navegador — feche e volte mais tarde e o seu painel estará exatamente como o deixou.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Use-o como referência GMT para a sua coleção de relógios',
|
|
32
|
+
text: 'Defina a sua cidade de origem e adicione os fusos horários que acompanha com os seus relógios GMT. Use as etiquetas de desvio ao vivo para verificar se o alinhamento do seu bisel está correto para cada zona monitorizada.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Relógio Mundial: Painel ao Vivo com Múltiplos Fusos Horários';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'relogio-mundial-gmt',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Acompanhe vários fusos horários ao vivo. Adicione qualquer cidade e veja a hora atual a ser atualizada a cada segundo. Perfeito para entusiastas de relógios com GMT ou World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Relógio Mundial',
|
|
44
|
+
searchPlaceholder: 'Pesquisar cidade ou fuso horário...',
|
|
45
|
+
addLabel: 'Adicionar',
|
|
46
|
+
removeLabel: 'Remover',
|
|
47
|
+
noResults: 'Nenhuma cidade encontrada',
|
|
48
|
+
yourZones: 'Os seus fusos horários',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Relógio Mundial — Painel de Fusos Horários ao Vivo para Entusiastas de Relógios', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Quer possua um <strong>GMT-Master II</strong>, um <strong>World Timer</strong>, ou simplesmente precise de acompanhar vários fusos horários para trabalho ou viagens, este painel ao vivo mostra-lhe a hora atual em cada cidade que lhe interessa — tudo num relance. Adicione Nova Iorque, Londres, Tóquio ou qualquer cidade, e a hora é atualizada a cada segundo. As suas zonas são guardadas no seu navegador para que nunca tenha de reconfigurar.' },
|
|
53
|
+
{ type: 'title', text: 'Porque é que os entusiastas de relógios precisam de um relógio mundial', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Se coleciona <strong>relógios GMT</strong>, conhece a dificuldade: ajusta o bisel para acompanhar um segundo fuso horário, mas os desvios mudam com a hora de verão, ou simplesmente tem vários GMTs e quer comparar como cada um segue uma cidade diferente. Esta ferramenta resolve isso. Adicione as cidades que os seus relógios acompanham e veja instantaneamente o seu desvio e hora atual. Sem cálculos mentais — basta olhar para o cartão e saber exatamente para onde o seu ponteiro GMT deve apontar.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — qual se adequa ao seu estilo?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'Um <strong>relógio GMT</strong> (como o Rolex GMT-Master II "Pepsi" ou Tudor Black Bay Pro) usa um ponteiro de 24 horas e um bisel giratório para acompanhar dois fusos horários. Um <strong>World Timer</strong> (como o Nomos Zürich Weltzeit ou Omega Seamaster Worldtimer) mostra todos os 24 fusos ao mesmo tempo usando um anel de cidades e um disco de 24 horas. Este painel imita um World Timer: pode ver todas as cidades ao mesmo tempo. Use-o para decidir qual complicação se adequa ao seu estilo de vida antes de comprar.' },
|
|
57
|
+
{ type: 'title', text: 'Usos práticos para além da coleção de relógios', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Trabalhadores remotos a agendar reuniões entre fusos horários sem confusão',
|
|
61
|
+
'Viajantes frequentes a manter um olho em casa e no destino simultaneamente',
|
|
62
|
+
'Traders a acompanhar as aberturas dos mercados em Nova Iorque, Londres, Tóquio e Sydney',
|
|
63
|
+
'Qualquer pessoa que queira saber "que horas são em..." sem precisar de pesquisar no Google',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Relógio Mundial ao Vivo', icon: 'mdi:clock-time-eight', badge: 'HORA', html: 'As horas são atualizadas ao vivo a cada segundo usando a base de dados de fusos horários incorporada do seu navegador. As transições de hora de verão são tratadas automaticamente. Nenhum dado é enviado para qualquer 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: 'Как определить, настоящий GMT в часах или caller GMT?',
|
|
9
|
+
answer: '<strong>Настоящий GMT</strong> (также называемый «flyer» GMT) позволяет переводить местную часовую стрелку независимо — идеально для путешественников, которые часто меняют часовые пояса. <strong>Caller GMT</strong> регулирует GMT-стрелку отдельно, пока основная часовая стрелка остаётся на месте — это дешевле в производстве. Как их отличить: вытяните заводную головку в положение установки времени и поверните. Если часовая стрелка прыгает с шагом в один час без остановки — это настоящий GMT. Если вместо этого движется GMT-стрелка — это caller. Rolex использует настоящий GMT-калибр (3285) в GMT-Master II, в то время как многие доступные микробренды применяют механизмы caller, такие как Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'В чём разница между GMT-часами и World Timer?',
|
|
13
|
+
answer: '<strong>GMT-часы</strong> обычно отслеживают два часовых пояса — местное время и эталон (обычно UTC) — с помощью 24-часовой стрелки и 24-часового безеля. <strong>World Timer</strong> показывает все 24 часовых пояса сразу: у него есть кольцо городов вокруг циферблата и вращающийся 24-часовой диск. World Timer, такие как Patek Philippe 5230P или JLC Geophysic Universal Time, позволяют мгновенно узнать время в любом городе. GMT проще и доступнее; World Timer механически сложнее и, как правило, дороже. Этот инструмент работает как цифровой World Timer, позволяя добавлять столько городов, сколько вам нужно.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Какой часовой пояс показывают мои часы, если на циферблате написано «GMT»?',
|
|
17
|
+
answer: 'Когда на циферблате часов указано «GMT», <strong>GMT-стрелка</strong> (обычно четвёртая стрелка с цветным наконечником) указывает время в 24-часовом формате. Большинство владельцев устанавливают эту стрелку на UTC (всемирное координированное время), поскольку все часовые пояса определяются как смещения от UTC. Вращающийся 24-часовой безель затем можно выровнять для чтения любого другого часового пояса. Например, если GMT-стрелка указывает на 14 (2 часа дня), а метки безеля выровнены по UTC+2, вы читаете восточноевропейское время. Этот инструмент помогает визуализировать именно эту взаимосвязь.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Добавьте любой город на панель',
|
|
24
|
+
text: 'Введите название города или часового пояса в строку поиска. Нажмите на результат, чтобы мгновенно добавить его. Каждый город отображается в виде живой карточки часов с текущим местным временем.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Удаляйте города, когда они не нужны',
|
|
28
|
+
text: 'Наведите курсор на карточку часов и нажмите кнопку ×, чтобы удалить её. Ваш выбор автоматически сохраняется в браузере — закройте и вернитесь позже, ваша панель останется в точности такой, какой вы её оставили.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Используйте как GMT-ориентир для вашей коллекции часов',
|
|
32
|
+
text: 'Установите свой домашний город и добавьте часовые пояса, которые вы отслеживаете с помощью ваших GMT-часов. Используйте живые метки смещения, чтобы проверить, правильна ли выверка безеля для каждой отслеживаемой зоны.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Мировые часы: панель мониторинга нескольких часовых поясов';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-mirovye-chasy',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Отслеживайте несколько часовых поясов в реальном времени. Добавьте любой город и наблюдайте, как текущее время обновляется каждую секунду. Идеально для энтузиастов часов с GMT или World Timer.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Мировые часы',
|
|
44
|
+
searchPlaceholder: 'Поиск города или часового пояса...',
|
|
45
|
+
addLabel: 'Добавить',
|
|
46
|
+
removeLabel: 'Удалить',
|
|
47
|
+
noResults: 'Города не найдены',
|
|
48
|
+
yourZones: 'Ваши часовые пояса',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Мировые часы — панель часовых поясов для энтузиастов часов', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Будь у вас <strong>GMT-Master II</strong>, <strong>World Timer</strong> или просто необходимость отслеживать несколько часовых поясов для работы или путешествий, эта панель в реальном времени показывает текущее время в каждом важном для вас городе — всё одним взглядом. Добавьте Нью-Йорк, Лондон, Токио или любой другой город, и время будет обновляться каждую секунду. Ваши пояса сохраняются в браузере, так что вам никогда не придётся настраивать их заново.' },
|
|
53
|
+
{ type: 'title', text: 'Зачем энтузиастам часов мировые часы', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Если вы коллекционируете <strong>GMT-часы</strong>, вы знаете эту проблему: вы устанавливаете безель для отслеживания второго часового пояса, но смещения меняются из-за перехода на летнее время, или у вас просто несколько GMT, и вы хотите сравнить, как каждый из них отслеживает разные города. Этот инструмент решает эту задачу. Добавьте города, которые отслеживают ваши часы, и мгновенно увидите их текущее смещение и время. Никакой математики в уме — просто посмотрите на карточку и точно знайте, куда должна указывать ваша GMT-стрелка.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — что подходит именно вам?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: '<strong>GMT-часы</strong> (такие как Rolex GMT-Master II «Pepsi» или Tudor Black Bay Pro) используют 24-часовую стрелку и вращающийся безель для отслеживания двух часовых поясов. <strong>World Timer</strong> (такие как Nomos Zürich Weltzeit или Omega Seamaster Worldtimer) показывают все 24 пояса одновременно с помощью кольца городов и 24-часового диска. Эта панель имитирует World Timer: вы видите все города сразу. Используйте её, чтобы решить, какая усложнение подходит вашему образу жизни, прежде чем совершать покупку.' },
|
|
57
|
+
{ type: 'title', text: 'Практическое применение помимо коллекционирования часов', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Удалённые сотрудники, планирующие встречи между часовыми поясами без путаницы',
|
|
61
|
+
'Часто путешествующие, следящие за домом и местом назначения одновременно',
|
|
62
|
+
'Трейдеры, отслеживающие открытие рынков в Нью-Йорке, Лондоне, Токио и Сиднее',
|
|
63
|
+
'Все, кто хочет узнать «сколько сейчас времени в...» без гугления',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Мировые часы в реальном времени', icon: 'mdi:clock-time-eight', badge: 'ВРЕМЯ', html: 'Время обновляется в реальном времени каждую секунду, используя встроенную базу данных часовых поясов вашего браузера. Переход на летнее время обрабатывается автоматически. Никакие данные не отправляются на сервер.' },
|
|
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: 'Hur vet jag om en klocka är en äkta GMT eller en caller GMT?',
|
|
9
|
+
answer: 'En <strong>äkta GMT</strong> (även kallad "flyer"-GMT) låter dig hoppa den lokala timvisaren oberoende — idealisk för resenärer som ofta byter tidszon. En <strong>caller GMT</strong> justerar GMT-visaren separat medan huvudtimvisaren är stilla, vilket är billigare att tillverka. Så här skiljer du dem åt: dra ut kronan till tidsinställningsläget och vrid. Om timvisaren hoppar i steg om en timme utan att stanna är det en äkta GMT. Om GMT-visaren rör sig istället är det en caller. Rolex använder ett äkta GMT-kaliber (3285) i GMT-Master II, medan många prisvärda mikromärken använder caller-verk som Seiko NH34.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Vad är skillnaden mellan en GMT-klocka och en World Timer?',
|
|
13
|
+
answer: 'En <strong>GMT-klocka</strong> håller vanligtvis koll på två tidszoner — din lokala tid och en referens (oftast UTC) — med hjälp av en 24-timmarsvisare och en 24-timmarsring. En <strong>World Timer</strong> visar alla 24 tidszoner på en gång: den har en stadsring runt urtavlan och en roterande 24-timmarsskiva. World Timers som Patek Philippe 5230P eller JLC Geophysic Universal Time låter dig läsa av tiden i vilken stad som helst direkt. GMT-klockor är enklare och mer prisvärda; World Timers är mekaniskt mer komplexa och vanligtvis dyrare. Det här verktyget fungerar som en digital World Timer och låter dig lägga till så många städer du behöver.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Vilken tidszon visar min klocka när det står "GMT"?',
|
|
17
|
+
answer: 'När en klocka har "GMT" på urtavlan pekar <strong>GMT-visaren</strong> (vanligtvis en fjärde visare med en färgad pilspets) på tiden i 24-timmarsformat. De flesta ägare ställer in denna visare på UTC (koordinerad universell tid) eftersom alla tidszoner definieras som avvikelser från UTC. Den roterande 24-timmarsringen kan sedan justeras för att läsa av vilken annan tidszon som helst. Om GMT-visaren till exempel pekar på 14 (kl 14) och dina ringmarkeringar är inställda på UTC+2, läser du av östeuropeisk tid. Det här verktyget hjälper dig att visualisera precis det förhållandet.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Lägg till valfri stad på din instrumentpanel',
|
|
24
|
+
text: 'Skriv ett stadsnamn eller en tidszon i sökfältet. Klicka på ett resultat för att lägga till det direkt. Varje stad visas som ett liveklockkort med aktuell lokal tid.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Ta bort städer när du inte behöver dem',
|
|
28
|
+
text: 'Hovra över ett klockkort och klicka på ×-knappen för att ta bort det. Ditt urval sparas automatiskt i din webbläsare — stäng och kom tillbaka senare, din instrumentpanel är precis som du lämnade den.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Använd den som GMT-referens för din klockkollektion',
|
|
32
|
+
text: 'Ange din hemstad och lägg till de tidszoner du följer med dina GMT-klockor. Använd live-offset-etiketterna för att kontrollera om din ringinställning är korrekt för varje zon.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Världsklocka: Live Dashboard med Flera Tidszoner';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-varldsklocka',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Följ flera tidszoner live. Lägg till valfri stad och se den aktuella tiden uppdateras varje sekund. Perfekt för klockentusiaster med GMT- eller World Timer-klockor.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Världsklocka',
|
|
44
|
+
searchPlaceholder: 'Sök stad eller tidszon...',
|
|
45
|
+
addLabel: 'Lägg till',
|
|
46
|
+
removeLabel: 'Ta bort',
|
|
47
|
+
noResults: 'Inga städer hittades',
|
|
48
|
+
yourZones: 'Dina tidszoner',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Världsklocka — Live Dashboard för Tidszoner för Klockentusiaster', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'Oavsett om du äger en <strong>GMT-Master II</strong>, en <strong>World Timer</strong>, eller helt enkelt behöver hålla koll på flera tidszoner för arbete eller resor, visar denna live-instrumentpanel den aktuella tiden i varje stad du bryr dig om — allt på en gång. Lägg till New York, London, Tokyo eller vilken stad som helst, och tiden uppdateras varje sekund. Dina zoner sparas i webbläsaren så att du aldrig behöver konfigurera om.' },
|
|
53
|
+
{ type: 'title', text: 'Varför klockentusiaster behöver en världsklocka', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Om du samlar på <strong>GMT-klockor</strong> känner du till problemet: du ställer in ringen för att följa en andra tidszon, men offset ändras med sommartid, eller så har du flera GMT och vill jämföra hur var och en följer en annan stad. Det här verktyget löser det. Lägg till de städer dina klockor följer och se omedelbart deras aktuella offset och tid. Ingen huvudräkning — titta bara på kortet och vet exakt var din GMT-visare ska peka.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Vilken passar din stil?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: 'En <strong>GMT-klocka</strong> (som Rolex GMT-Master II "Pepsi" eller Tudor Black Bay Pro) använder en 24-timmarsvisare och en roterande ring för att följa två tidszoner. En <strong>World Timer</strong> (som Nomos Zürich Weltzeit eller Omega Seamaster Worldtimer) visar alla 24 zoner samtidigt med en stadsring och en 24-timmarsskiva. Denna instrumentpanel fungerar som en World Timer: du kan se alla städer samtidigt. Använd den för att bestämma vilken komplikation som passar din livsstil innan du köper.' },
|
|
57
|
+
{ type: 'title', text: 'Praktisk användning utöver klockinsamling', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Distansarbetare som schemalägger möten över tidszoner utan förvirring',
|
|
61
|
+
'Frekventa resenärer som håller koll på hemmet och destinationen samtidigt',
|
|
62
|
+
'Traders som följer marknadsöppningar i New York, London, Tokyo och Sydney',
|
|
63
|
+
'Alla som vill veta "vad är klockan i..." utan att googla',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Live Världsklocka', icon: 'mdi:clock-time-eight', badge: 'TID', html: 'Tiderna uppdateras live varje sekund med hjälp av webbläsarens inbyggda tidszondatabas. Sommartidsövergångar hanteras automatiskt. Inga data skickas till någon 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: 'Bir saatin gerçek GMT mi yoksa caller GMT mi olduğunu nasıl anlarım?',
|
|
9
|
+
answer: '<strong>Gerçek GMT</strong> ("flyer" GMT olarak da bilinir) yerel saat akrebinin bağımsız olarak ayarlanmasına olanak tanır — sık sık saat dilimi değiştiren gezginler için idealdir. <strong>Caller GMT</strong>, ana akrep sabit kalırken GMT kolunun ayrı olarak ayarlandığı, üretimi daha ucuz olan bir mekanizmadır. Ayırt etmek için: kurma kolunu saat ayar konumuna çekin ve çevirin. Akrep bir saatlik artışlarla durmadan atlıyorsa gerçek GMT\'dir. GMT kolu hareket ediyorsa caller\'dır. Rolex, GMT-Master II\'de gerçek GMT kalibresi (3285) kullanırken, birçok uygun fiyatlı mikromarka Seiko NH34 gibi caller mekanizmaları tercih eder.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'GMT saat ile World Timer arasındaki fark nedir?',
|
|
13
|
+
answer: 'Bir <strong>GMT saati</strong> genellikle iki saat dilimini takip eder — yerel saatiniz ve bir referans (genellikle UTC) — 24 saat kolu ve 24 saat bezeli kullanarak. Bir <strong>World Timer</strong> ise 24 saat dilimini aynı anda gösterir: kadranın etrafında bir şehir halkası ve dönen bir 24 saat diski bulunur. Patek Philippe 5230P veya JLC Geophysic Universal Time gibi World Timer\'lar, herhangi bir şehirdeki saati anında okumanızı sağlar. GMT\'ler daha basit ve daha uygun fiyatlıdır; World Timer\'lar mekanik olarak daha karmaşık ve genellikle daha pahalıdır. Bu araç, ihtiyacınız kadar şehir eklemenize izin veren dijital bir World Timer gibi çalışır.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Kadranında "GMT" yazan bir saat hangi saat dilimini gösterir?',
|
|
17
|
+
answer: 'Bir saatin kadranında "GMT" yazdığında, <strong>GMT kolu</strong> (genellikle renkli bir ok ucuna sahip dördüncü kol) saati 24 saat formatında gösterir. Çoğu kullanıcı bu kolu UTC\'ye (Eşgüdümlü Evrensel Zaman) ayarlar çünkü tüm saat dilimleri UTC\'den fark olarak tanımlanır. Dönen 24 saat bezeli daha sonra herhangi bir başka saat dilimini okuyacak şekilde hizalanabilir. Örneğin, GMT kolu 14\'ü (öğleden sonra 2) gösteriyorsa ve bezel işaretleriniz UTC+2\'ye hizalanmışsa, Doğu Avrupa Saati\'ni okuyorsunuzdur. Bu araç, tam olarak bu ilişkiyi görselleştirmenize yardımcı olur.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Panonuza istediğiniz şehri ekleyin',
|
|
24
|
+
text: 'Arama çubuğuna bir şehir adı veya saat dilimi yazın. Bir sonuca tıklayarak anında ekleyin. Her şehir, geçerli yerel saati gösteren canlı bir saat kartı olarak görünür.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'İhtiyacınız olmayan şehirleri kaldırın',
|
|
28
|
+
text: 'Herhangi bir saat kartının üzerine gelin ve kaldırmak için × düğmesine tıklayın. Seçiminiz tarayıcınıza otomatik olarak kaydedilir — kapatın ve daha sonra geri gelin, panonuz tam olarak bıraktığınız gibi durur.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Saat koleksiyonunuz için GMT referansı olarak kullanın',
|
|
32
|
+
text: 'Ana şehrinizi ayarlayın ve GMT saatlerinizle takip ettiğiniz saat dilimlerini ekleyin. Her bir bölge için bezel hizalamanızın doğru olup olmadığını kontrol etmek için canlı fark etiketlerini kullanın.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Dünya Saati: Canlı Çoklu Saat Dilimi Panosu';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-dunya-saati',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Birden fazla saat dilimini canlı olarak takip edin. Herhangi bir şehri ekleyin ve geçerli saatin her saniye güncellendiğini görün. GMT veya World Timer saati olan saat meraklıları için mükemmel.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Dünya Saati',
|
|
44
|
+
searchPlaceholder: 'Şehir veya saat dilimi ara...',
|
|
45
|
+
addLabel: 'Ekle',
|
|
46
|
+
removeLabel: 'Kaldır',
|
|
47
|
+
noResults: 'Şehir bulunamadı',
|
|
48
|
+
yourZones: 'Saat Dilimleriniz',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: 'Dünya Saati — Saat Meraklıları için Canlı Saat Dilimi Panosu', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: 'İster bir <strong>GMT-Master II</strong>\'niz, ister bir <strong>World Timer</strong>\'ınız olsun, ya da sadece iş veya seyahat için birden fazla saat dilimini takip etmeniz gereksin, bu canlı pano önemsediğiniz her şehirdeki güncel saati bir bakışta gösterir. New York, Londra, Tokyo veya herhangi bir şehri ekleyin ve saat her saniye güncellensin. Bölgeleriniz tarayıcınıza kaydedilir, böylece asla yeniden yapılandırmanız gerekmez.' },
|
|
53
|
+
{ type: 'title', text: 'Saat Meraklıları Neden Bir Dünya Saatine İhtiyaç Duyar?', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: 'Eğer <strong>GMT saatleri</strong> koleksiyonu yapıyorsanız, zorluğu bilirsiniz: ikinci bir saat dilimini takip etmek için bezeli ayarlarsınız, ancak farklar Yaz Saati ile değişir veya birden fazla GMT\'niz vardır ve her birinin farklı bir şehri nasıl takip ettiğini karşılaştırmak istersiniz. Bu araç bunu çözer. Saatlerinizin takip ettiği şehirleri ekleyin ve anlık farklarını ve saatlerini görün. Artık zihinsel hesaplama yok — sadece karta bakın ve GMT kolunuzun tam olarak nereyi göstermesi gerektiğini bilin.' },
|
|
55
|
+
{ type: 'title', text: 'GMT vs World Timer — Hangisi Tarzınıza Uyuyor?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: '<strong>GMT saati</strong> (Rolex GMT-Master II "Pepsi" veya Tudor Black Bay Pro gibi) iki saat dilimini takip etmek için 24 saat kolu ve dönen bir bezel kullanır. <strong>World Timer</strong> (Nomos Zürich Weltzeit veya Omega Seamaster Worldtimer gibi) bir şehir halkası ve 24 saat diski kullanarak 24 bölgenin tamamını aynı anda gösterir. Bu pano bir World Timer\'ı taklit eder: tüm şehirleri aynı anda görebilirsiniz. Satın almadan önce hangi komplikasyonun yaşam tarzınıza uyduğuna karar vermek için kullanın.' },
|
|
57
|
+
{ type: 'title', text: 'Saat Koleksiyonculuğunun Ötesinde Pratik Kullanımlar', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'Saat dilimleri arasında toplantı planlayan uzaktan çalışanlar',
|
|
61
|
+
'Evi ve varış noktasını aynı anda takip eden sık seyahat edenler',
|
|
62
|
+
'New York, Londra, Tokyo ve Sidney\'deki piyasa açılışlarını takip eden yatırımcılar',
|
|
63
|
+
'Google\'a sormadan "... şu anda saat kaç?" bilmek isteyen herkes',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: 'Canlı Dünya Saati', icon: 'mdi:clock-time-eight', badge: 'SAAT', html: 'Saatler, tarayıcınızın yerleşik saat dilimi veritabanını kullanarak her saniye canlı olarak güncellenir. Yaz Saati geçişleri otomatik olarak işlenir. Hiçbir veri herhangi bir sunucuya gönderilmez.' },
|
|
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: '如何判断手表是真GMT还是呼叫器GMT?',
|
|
9
|
+
answer: '<strong>真GMT</strong>(又称"飞行者"GMT)可以独立调整本地时针——适合频繁跨时区旅行的用户。<strong>呼叫器GMT</strong>则是在主时针不动的情况下单独调整GMT指针,制造成本较低。区分方法:将表冠拉出到时间设定位置并旋转。如果时针以一小时为单位跳动而不停顿,就是真GMT;如果GMT指针随之移动,就是呼叫器GMT。劳力士在GMT-Master II中使用真GMT机芯(3285),而许多平价微品牌则采用精工NH34等呼叫器GMT机芯。',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'GMT手表和世界时手表有什么区别?',
|
|
13
|
+
answer: '<strong>GMT手表</strong>通常通过24小时指针和24小时表圈来追踪两个时区——您的本地时间和一个参考时间(通常是UTC)。<strong>世界时手表</strong>则同时显示全部24个时区:表盘周围有城市圈,并有一个旋转的24小时盘。百达翡丽5230P或积家地球物理天文台世界时等世界时手表可以让您即时读取任何城市的时间。GMT更简单、更实惠;世界时机芯更复杂,价格通常更高。本工具就像一个数字版世界时手表,您可以根据需要添加任意数量的城市。',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '手表表盘上写着"GMT"时,显示的是哪个时区?',
|
|
17
|
+
answer: '当手表表盘上标有"GMT"时,<strong>GMT指针</strong>(通常是带有彩色箭头的第四根指针)以24小时制指示时间。大多数用户将此指针设置为UTC(协调世界时),因为所有时区都定义为相对于UTC的偏移量。旋转式24小时表圈可以对齐以读取任何其他时区。例如,如果GMT指针指向14(下午2点),而您的表圈标记对齐到UTC+2,那么您读出的就是东欧时间。本工具可以帮助您直观地理解这种对应关系。',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: '将任意城市添加到您的仪表盘',
|
|
24
|
+
text: '在搜索栏中输入城市名称或时区。点击搜索结果即可立即添加。每个城市都会以实时时钟卡片的形式显示当前的当地时间。',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: '移除不需要的城市',
|
|
28
|
+
text: '将鼠标悬停在任意时钟卡片上,点击×按钮即可移除。您的选择会自动保存在浏览器中——关闭后再次打开,仪表盘将保持原样。',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: '将其用作手表收藏的GMT参考',
|
|
32
|
+
text: '设置您的家乡城市,并添加您通过GMT手表追踪的时区。使用实时偏移标签检查每个追踪时区的表圈对齐是否正确。',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = '世界时钟:多时区实时仪表盘';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GMTWorldTimerUI> = {
|
|
39
|
+
slug: 'gmt-world-timer',
|
|
40
|
+
title,
|
|
41
|
+
description: '实时追踪多个时区。添加任意城市,实时查看每秒更新的当前时间。适合拥有GMT或世界时手表的钟表爱好者。',
|
|
42
|
+
ui: {
|
|
43
|
+
title: '世界时钟',
|
|
44
|
+
searchPlaceholder: '搜索城市或时区...',
|
|
45
|
+
addLabel: '添加',
|
|
46
|
+
removeLabel: '移除',
|
|
47
|
+
noResults: '未找到城市',
|
|
48
|
+
yourZones: '我的时区',
|
|
49
|
+
},
|
|
50
|
+
seo: [
|
|
51
|
+
{ type: 'title', text: '世界时钟 — 为钟表爱好者打造的实时时区仪表盘', level: 2 },
|
|
52
|
+
{ type: 'paragraph', html: '无论您拥有<strong>GMT-Master II</strong>、<strong>世界时手表</strong>,还是仅仅需要为工作或旅行追踪多个时区,这个实时仪表盘都能让您一目了然地看到每个关注城市的当前时间。添加纽约、伦敦、东京或任意城市,时间每秒更新。您的时区保存在浏览器中,无需重复配置。' },
|
|
53
|
+
{ type: 'title', text: '为什么钟表爱好者需要世界时钟', level: 3 },
|
|
54
|
+
{ type: 'paragraph', html: '如果您收藏<strong>GMT手表</strong>,一定遇到过这样的困扰:您调好表圈追踪第二个时区,但夏令时导致偏移变化,或者您拥有多块GMT手表,想比较它们如何追踪不同城市。本工具可以解决这个问题。添加您手表追踪的城市,立即查看它们的当前偏移和时间。无需心算——只需看一眼卡片,就能确切知道您的GMT指针应该指向哪里。' },
|
|
55
|
+
{ type: 'title', text: 'GMT与世界时 — 哪种风格适合您?', level: 3 },
|
|
56
|
+
{ type: 'paragraph', html: '<strong>GMT手表</strong>(如劳力士GMT-Master II"百事圈"或帝舵Black Bay Pro)使用24小时指针和旋转表圈来追踪两个时区。<strong>世界时手表</strong>(如诺莫斯苏黎世世界时或欧米茄海马世界时)通过城市圈和24小时盘同时显示所有24个时区。本仪表盘模拟了世界时手表:您可以同时查看所有城市。在购买之前,用它来帮助您决定哪种复杂功能更适合您的生活方式。' },
|
|
57
|
+
{ type: 'title', text: '超越手表收藏的实用功能', level: 3 },
|
|
58
|
+
{
|
|
59
|
+
type: 'list', items: [
|
|
60
|
+
'远程工作者跨时区安排会议,不再混淆',
|
|
61
|
+
'频繁旅行者同时关注家乡和目的地的时间',
|
|
62
|
+
'交易者追踪纽约、伦敦、东京和悉尼的市场开盘时间',
|
|
63
|
+
'任何人想快速知道"...现在几点?"而无需搜索',
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{ type: 'diagnostic', variant: 'info', title: '实时世界时钟', icon: 'mdi:clock-time-eight', badge: '时间', html: '时间使用浏览器内置的时区数据库每秒实时更新。夏令时转换自动处理。不会向任何服务器发送任何数据。' },
|
|
67
|
+
],
|
|
68
|
+
faq,
|
|
69
|
+
bibliography,
|
|
70
|
+
howTo,
|
|
71
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
72
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ToolDefinition } from '../../types';
|
|
2
|
+
import { gmtWorldTimer } from './entry';
|
|
3
|
+
|
|
4
|
+
export * from './entry';
|
|
5
|
+
|
|
6
|
+
export const GMT_WORLD_TIMER_TOOL: ToolDefinition = {
|
|
7
|
+
entry: gmtWorldTimer,
|
|
8
|
+
Component: () => import('./component.astro'),
|
|
9
|
+
SEOComponent: () => import('./seo.astro'),
|
|
10
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { gmtWorldTimer } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
interface Props { locale?: KnownLocale; }
|
|
6
|
+
const { locale = 'en' } = Astro.props;
|
|
7
|
+
const loader = gmtWorldTimer.i18n[locale] || gmtWorldTimer.i18n.en;
|
|
8
|
+
const content = await loader?.();
|
|
9
|
+
if (!content) return null;
|
|
10
|
+
---
|
|
11
|
+
{content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { perpetualCalendar } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'en' } = Astro.props as Props;
|
|
11
|
+
const loader = perpetualCalendar.i18n[locale] || perpetualCalendar.i18n.en;
|
|
12
|
+
const content = await loader?.();
|
|
13
|
+
if (!content) return null;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
{content && <SharedBibliography links={content.bibliography} />}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{
|
|
5
|
+
name: 'Perpetual Calendar - Wikipedia',
|
|
6
|
+
url: 'https://en.wikipedia.org/wiki/Perpetual_calendar',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'Patek Philippe Perpetual Calendar',
|
|
10
|
+
url: 'https://www.patek.com/en/manufacture/quality-and-fine-workmanship/calendar-watches',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'How a Perpetual Calendar Works - Hodinkee',
|
|
14
|
+
url: 'https://www.hodinkee.com/watch101/perpetual-calendar',
|
|
15
|
+
},
|
|
16
|
+
];
|