@jjlmoya/utils-nautical 1.7.0 → 1.8.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/tests/slug_language_code_format.test.ts +23 -0
- package/src/tool/endurance/i18n/de.ts +1 -1
- package/src/tool/endurance/i18n/id.ts +1 -1
- package/src/tool/endurance/i18n/it.ts +1 -1
- package/src/tool/endurance/i18n/nl.ts +1 -1
- package/src/tool/endurance/i18n/pl.ts +1 -1
- package/src/tool/endurance/i18n/pt.ts +1 -1
- package/src/tool/endurance/i18n/ru.ts +1 -1
- package/src/tool/endurance/i18n/sv.ts +1 -1
- package/src/tool/endurance/i18n/tr.ts +1 -1
- package/src/tool/nauticalConverter/i18n/de.ts +1 -1
- package/src/tool/nauticalConverter/i18n/id.ts +1 -1
- package/src/tool/nauticalConverter/i18n/it.ts +1 -1
- package/src/tool/nauticalConverter/i18n/nl.ts +1 -1
- package/src/tool/nauticalConverter/i18n/pl.ts +1 -1
- package/src/tool/nauticalConverter/i18n/pt.ts +1 -1
- package/src/tool/nauticalConverter/i18n/ru.ts +1 -1
- package/src/tool/nauticalConverter/i18n/sv.ts +1 -1
- package/src/tool/nauticalConverter/i18n/tr.ts +1 -1
- package/src/tool/sailArea/i18n/de.ts +1 -1
- package/src/tool/sailArea/i18n/id.ts +1 -1
- package/src/tool/sailArea/i18n/it.ts +1 -1
- package/src/tool/sailArea/i18n/nl.ts +1 -1
- package/src/tool/sailArea/i18n/pl.ts +1 -1
- package/src/tool/sailArea/i18n/pt.ts +1 -1
- package/src/tool/sailArea/i18n/ru.ts +1 -1
- package/src/tool/sailArea/i18n/sv.ts +1 -1
- package/src/tool/sailArea/i18n/tr.ts +1 -1
- package/src/tool/speedConverter/i18n/de.ts +1 -1
- package/src/tool/speedConverter/i18n/id.ts +1 -1
- package/src/tool/speedConverter/i18n/it.ts +1 -1
- package/src/tool/speedConverter/i18n/nl.ts +1 -1
- package/src/tool/speedConverter/i18n/pl.ts +1 -1
- package/src/tool/speedConverter/i18n/pt.ts +1 -1
- package/src/tool/speedConverter/i18n/ru.ts +1 -1
- package/src/tool/speedConverter/i18n/sv.ts +1 -1
- package/src/tool/speedConverter/i18n/tr.ts +1 -1
- package/src/tool/tideCalculator/i18n/de.ts +1 -1
- package/src/tool/tideCalculator/i18n/id.ts +1 -1
- package/src/tool/tideCalculator/i18n/it.ts +1 -1
- package/src/tool/tideCalculator/i18n/nl.ts +1 -1
- package/src/tool/tideCalculator/i18n/pl.ts +1 -1
- package/src/tool/tideCalculator/i18n/pt.ts +1 -1
- package/src/tool/tideCalculator/i18n/ru.ts +1 -1
- package/src/tool/tideCalculator/i18n/sv.ts +1 -1
- package/src/tool/tideCalculator/i18n/tr.ts +1 -1
- package/src/tool/underKeel/i18n/de.ts +1 -1
- package/src/tool/underKeel/i18n/id.ts +1 -1
- package/src/tool/underKeel/i18n/it.ts +1 -1
- package/src/tool/underKeel/i18n/nl.ts +1 -1
- package/src/tool/underKeel/i18n/pl.ts +1 -1
- package/src/tool/underKeel/i18n/pt.ts +1 -1
- package/src/tool/underKeel/i18n/ru.ts +1 -1
- package/src/tool/underKeel/i18n/sv.ts +1 -1
- package/src/tool/underKeel/i18n/tr.ts +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { ALL_TOOLS } from '../tools';
|
|
3
|
+
import type { ToolLocaleContent } from '../types';
|
|
4
|
+
|
|
5
|
+
describe('Slug Language Code Format Validation', () => {
|
|
6
|
+
ALL_TOOLS.forEach((tool) => {
|
|
7
|
+
describe(`Tool: ${tool.entry.id}`, () => {
|
|
8
|
+
it('slug should not end with 2-letter language codes like -ja, -ru, -ko', async () => {
|
|
9
|
+
const locales = Object.keys(tool.entry.i18n);
|
|
10
|
+
|
|
11
|
+
for (const locale of locales) {
|
|
12
|
+
const loader = tool.entry.i18n[locale as keyof typeof tool.entry.i18n];
|
|
13
|
+
const content = (await loader?.()) as ToolLocaleContent;
|
|
14
|
+
|
|
15
|
+
expect(
|
|
16
|
+
content.slug,
|
|
17
|
+
`Tool "${tool.entry.id}" locale "${locale}" slug ("${content.slug}") cannot end with a 2-letter language code (e.g., -ja, -ru, -ko).`,
|
|
18
|
+
).not.toMatch(/-[a-z]{2}$/);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'reichweiten-rechner
|
|
4
|
+
const slug = 'reichweiten-rechner';
|
|
5
5
|
const title = 'Reichweiten Rechner für Motorboote';
|
|
6
6
|
const description =
|
|
7
7
|
'Berechnen Sie Ihre maximale Reichweite und Sicherheitsdistanz basierend auf Kraftstoffverbrauch, Tankkapazität und Reisegeschwindigkeit. Kraftstoffmanagement für Motorboote.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-
|
|
4
|
+
const slug = 'kalkulator-daya-jelajah-kapal';
|
|
5
5
|
const title = 'Kalkulator Daya Jelajah Kapal';
|
|
6
6
|
const description =
|
|
7
7
|
'Hitung jangkauan maksimum dan jarak aman kapal Anda berdasarkan konsumsi bahan bakar, kapasitas tangki, dan kecepatan jelajah. Manajemen bahan bakar untuk kapal motor.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calcolatore-autonomia
|
|
4
|
+
const slug = 'calcolatore-autonomia';
|
|
5
5
|
const title = 'Calcolatore Autonomia Nautica';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcola la tua autonomia massima e la distanza di sicurezza in base al consumo di carburante, alla capacità del serbatoio e alla velocità di crociera. Gestione del carburante per barche a motore.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'calcolatore-autonomia-motore';
|
|
5
5
|
const title = 'Nautische Actieradius Calculator';
|
|
6
6
|
const description =
|
|
7
7
|
'Bereken uw maximale bereik und veilige afstand op basis van brandstofverbruik, tankinhoud en kruissnelheid. Brandstofbeheer voor motorboten.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'calcolatore-autonomia-polacco';
|
|
5
5
|
const title = 'Kalkulator Autonomii Jachtu';
|
|
6
6
|
const description =
|
|
7
7
|
'Oblicz maksymalny zasięg i bezpieczny dystans na podstawie zużycia paliwa, pojemności zbiornika i prędkości przelotowej. Zarządzanie paliwem dla łodzi motorowych.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calculadora-
|
|
4
|
+
const slug = 'calculadora-alcance-motor';
|
|
5
5
|
const title = 'Calculadora de Autonomia Náutica';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcule a sua autonomia máxima e distância de segurança com base no consumo de combustível, capacidade do tanque e velocidade de cruzeiro. Gestão de combustível para barcos a motor.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulator-morskoi-avtonomnosti';
|
|
5
5
|
const title = 'Калькулятор морской автономности';
|
|
6
6
|
const description =
|
|
7
7
|
'Рассчитайте максимальный запас хода и безопасную дистанцию на основе расхода топлива, емкости бака и крейсерской скорости. Управление топливом для моторных судов.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'rackvidds-kalkylator
|
|
4
|
+
const slug = 'rackvidds-kalkylator';
|
|
5
5
|
const title = 'Kalkylator för Maritim Räckvidd';
|
|
6
6
|
const description =
|
|
7
7
|
'Beräkna din maximala räckvidd och säkerhetsdistans baserat på bränsleförbrukning, tankkapacitet och marschfart. Bränslehantering för motorbåtar.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { EnduranceUI, EnduranceLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'menzil-hesaplayici
|
|
4
|
+
const slug = 'menzil-hesaplayici';
|
|
5
5
|
const title = 'Denizcilik Menzil Hesaplayıcı';
|
|
6
6
|
const description =
|
|
7
7
|
'Yakıt tüketimi, depo kapasitesi ve seyir hızına dayalı olarak maksimum menzilinizi ve güvenli mesafenizi hesaplayın. Motorlu tekneler için yakıt yönetimi.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'nautische-einheiten-umrechner
|
|
4
|
+
const slug = 'nautische-einheiten-umrechner';
|
|
5
5
|
const title = 'Einheitenumrechner für die Seefahrt';
|
|
6
6
|
const description =
|
|
7
7
|
'Rechnen Sie Seemeilen, Knoten, Faden und Luftdruck um. Enthält eine interaktive Beaufort-Skala für die Windgeschwindigkeit.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'konverter-satuan-nautika
|
|
4
|
+
const slug = 'konverter-satuan-nautika';
|
|
5
5
|
const title = 'Konverter Satuan Bahari';
|
|
6
6
|
const description =
|
|
7
7
|
'Konversi mil laut, knot, fathom (depa), dan tekanan atmosfer. Termasuk skala Beaufort interaktif untuk kecepatan angin.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'convertitore-unita
|
|
4
|
+
const slug = 'convertitore-unita';
|
|
5
5
|
const title = 'Convertitore di Unità Nautiche';
|
|
6
6
|
const description =
|
|
7
7
|
'Converti miglia nautiche, nodi, braccia e pressione atmosferica. Include la scala Beaufort interattiva per la velocità del vento.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'nautische-eenheden-omzetter
|
|
4
|
+
const slug = 'nautische-eenheden-omzetter';
|
|
5
5
|
const title = 'Nautische Eenheden Omzetter';
|
|
6
6
|
const description =
|
|
7
7
|
'Reken zeemijlen, knopen, vamen en luchtdruk om. Inclusief interactieve Beaufort-schaal voor windsnelheid.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'konwerter-jednostek
|
|
4
|
+
const slug = 'konwerter-jednostek';
|
|
5
5
|
const title = 'Konwerter Jednostek Morskich';
|
|
6
6
|
const description =
|
|
7
7
|
'Konwertuj mile morskie, węzły, sążnie i ciśnienie atmosferyczne. Zawiera interaktywną skalę Beauforta dla prędkości wiatru.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'conversor-unidades
|
|
4
|
+
const slug = 'conversor-unidades';
|
|
5
5
|
const title = 'Conversor de Unidades Náuticas';
|
|
6
6
|
const description =
|
|
7
7
|
'Converta milhas náuticas, nós, braças e pressão atmosférica. Inclui escala Beaufort interativa para a velocidade do vento.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'konverter-morskikh-edinits';
|
|
5
5
|
const title = 'Конвертер морских единиц';
|
|
6
6
|
const description =
|
|
7
7
|
'Конвертируйте морские мили, узлы, сажени и атмосферное давление. Включает интерактивную шкалу Бофорта для скорости ветра.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'nautiska-enheter-omvandlare
|
|
4
|
+
const slug = 'nautiska-enheter-omvandlare';
|
|
5
5
|
const title = 'Nautisk Enhetsomvandlare';
|
|
6
6
|
const description =
|
|
7
7
|
'Omvandla sjömil, knop, famnar och atmosfäriskt tryck. Inkluderar interaktiv Beaufort-skala för vindhastighet.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { NauticalConverterUI, NauticalConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'birim-donusturucu
|
|
4
|
+
const slug = 'birim-donusturucu';
|
|
5
5
|
const title = 'Denizcilik Birim Dönüştürücü';
|
|
6
6
|
const description =
|
|
7
7
|
'Deniz mili, knot, kulaç ve atmosferik basınç birimlerini dönüştürün. Rüzgar hızı için etkileşimli Beaufort ölçeğini içerir.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'segelflaechen-rechner
|
|
4
|
+
const slug = 'segelflaechen-rechner';
|
|
5
5
|
const title = 'Segelflächen und SAD Verhältnis Rechner';
|
|
6
6
|
const description =
|
|
7
7
|
'Berechnen Sie die Gesamtsegelfläche und das Verhältnis von Segelfläche zu Verdrängung (SA/D) Ihres Bootes. Nautische Leistungsanalyse basierend auf I-, J-, P- und E-Maßen.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-luas-layar
|
|
4
|
+
const slug = 'kalkulator-luas-layar';
|
|
5
5
|
const title = 'Kalkulator Luas Layar dan Rasio SA/D';
|
|
6
6
|
const description =
|
|
7
7
|
'Hitung total luas layar dan rasio luas layar terhadap berat kapal (SA/D) Anda. Analisis performa bahari berdasarkan pengukuran I, J, P, dan E.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calcolatore-superficie-velica
|
|
4
|
+
const slug = 'calcolatore-superficie-velica';
|
|
5
5
|
const title = 'Calcolatore Area Velica e Rapporto SA/D';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcola l\'area velica totale e il rapporto area velica/dislocamento della tua barca. Analisi delle prestazioni nautiche basata sulle misure I, J, P ed E.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'zeiloppervlak-calculator
|
|
4
|
+
const slug = 'zeiloppervlak-calculator';
|
|
5
5
|
const title = 'Zeiloppervlak en SA/D Ratio Calculator';
|
|
6
6
|
const description =
|
|
7
7
|
'Bereken het totale zeiloppervlak en de verhouding zeiloppervlak tot deplacement van uw boot. Nautische prestatieanalyse op basis van I, J, P en E metingen.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-powierzchni-zagli
|
|
4
|
+
const slug = 'kalkulator-powierzchni-zagli';
|
|
5
5
|
const title = 'Kalkulator Powierzchni Żagli i Współczynnika SA/D';
|
|
6
6
|
const description =
|
|
7
7
|
'Oblicz całkowitą powierzchnię żagli i współczynnik powierzchni żagli do wyporności Twojego jachtu. Analiza osiągów morskich na podstawie wymiarów I, J, P i E.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calculadora-area-velica
|
|
4
|
+
const slug = 'calculadora-area-velica';
|
|
5
5
|
const title = 'Calculadora de Área Vélica e Relação SA/D';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcule a área vélica total e a relação área vélica/deslocamento do seu barco. Análise de performance náutica baseada em medidas I, J, P e E.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulator-ploshadi-parusnosti';
|
|
5
5
|
const title = 'Калькулятор площади парусности и коэффициента SA/D';
|
|
6
6
|
const description =
|
|
7
7
|
'Рассчитайте общую площадь парусности и отношение площади парусов к водоизмещению (SA/D) вашей лодки. Морской анализ производительности на основе измерений I, J, P и E.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'segelyte-kalkylator
|
|
4
|
+
const slug = 'segelyte-kalkylator';
|
|
5
5
|
const title = 'Segelyte och SAD förhållande kalkylator';
|
|
6
6
|
const description =
|
|
7
7
|
'Beräkna den totala segelytan och förhållandet mellan segelyta och deplacement (SA/D) för din båt. Nautisk prestandaanalys baserad på I-, J-, P- och E-mått.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'yelken-alani-hesaplayici
|
|
4
|
+
const slug = 'yelken-alani-hesaplayici';
|
|
5
5
|
const title = 'Yelken Alanı ve SA/D Oranı Hesaplayıcı';
|
|
6
6
|
const description =
|
|
7
7
|
'Teknenizin toplam yelken alanını ve yelken alanının deplasmana oranını (SA/D) hesaplayın. I, J, P ve E ölçümlerine dayalı denizcilik performansı analizi.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'geschwindigkeits-umrechner
|
|
4
|
+
const slug = 'geschwindigkeits-umrechner';
|
|
5
5
|
const title = 'Nautischer Geschwindigkeitsumrechner und Beaufort Skala';
|
|
6
6
|
const description =
|
|
7
7
|
'Rechnen Sie sofort zwischen Knoten, km/h, m/s und mph um. Inklusive vollständiger Beaufort-Tabelle mit Beschreibungen des Seegangs und Windeffekten.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'pengonversi-kecepatan
|
|
4
|
+
const slug = 'pengonversi-kecepatan';
|
|
5
5
|
const title = 'Konverter Kecepatan Bahari dan Skala Beaufort';
|
|
6
6
|
const description =
|
|
7
7
|
'Konversi antara knot, km/jam, m/s, dan mph secara instan. Termasuk tabel Beaufort lengkap dengan deskripsi kondisi laut dan efek angin.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'conversore-velocita
|
|
4
|
+
const slug = 'conversore-velocita';
|
|
5
5
|
const title = 'Convertitore di Velocità Nautica e Scala Beaufort';
|
|
6
6
|
const description =
|
|
7
7
|
'Converti istantaneamente tra nodi, km/h, m/s e mph. Include la tabella Beaufort completa con descrizioni dello stato del mare ed effetti del vento.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'snelheidsomzetter
|
|
4
|
+
const slug = 'snelheidsomzetter';
|
|
5
5
|
const title = 'Nautische Snelheidsomzetter en Beaufort schaal';
|
|
6
6
|
const description =
|
|
7
7
|
'Reken direct om tussen knopen, km/u, m/s en mph. Inclusief volledige Beaufort-tabel met beschrijvingen van de zeetoestand en windeffecten.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-predkosci
|
|
4
|
+
const slug = 'kalkulator-predkosci';
|
|
5
5
|
const title = 'Kalkulator Prędkości Morskiej i Skala Beauforta';
|
|
6
6
|
const description =
|
|
7
7
|
'Natychmiastowe przeliczanie między węzłami, km/h, m/s i mph. Zawiera pełną tabelę Beauforta z opisami stanu morza i efektami wiatru.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'conversor-velocidade
|
|
4
|
+
const slug = 'conversor-velocidade';
|
|
5
5
|
const title = 'Conversor de Velocidade Náutica e Escala Beaufort';
|
|
6
6
|
const description =
|
|
7
7
|
'Converta instantaneamente entre nós, km/h, m/s e mph. Inclui a tabela de Beaufort completa com descrições do estado do mar e efeitos do vento.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'morskoi-konverter-skorosti';
|
|
5
5
|
const title = 'Морской конвертер скорости и шкала Бофорта';
|
|
6
6
|
const description =
|
|
7
7
|
'Мгновенно конвертируйте узлы, км/ч, м/с и мили/ч. Включает полную таблицу Бофорта с описанием состояния моря и воздействия ветра.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'hastighets-omvandlare
|
|
4
|
+
const slug = 'hastighets-omvandlare';
|
|
5
5
|
const title = 'Nautisk hastighetsomvandlare och Beaufortskalan';
|
|
6
6
|
const description =
|
|
7
7
|
'Konvertera omedelbart mellan knop, km/h, m/s och mph. Inkluderar fullständig Beaufort-tabell med beskrivningar av sjötillstånd och vindeffekter.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { SpeedConverterUI, SpeedConverterLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'hiz-donusturucu
|
|
4
|
+
const slug = 'hiz-donusturucu';
|
|
5
5
|
const title = 'Nautik Hız Dönüştürücü ve Beaufort Ölçeği';
|
|
6
6
|
const description =
|
|
7
7
|
'Knot, km/s, m/s ve mph birimleri arasında anında dönüştürme yapın. Deniz durumu açıklamaları ve rüzgar etkilerini içeren tam Beaufort tablosu dahildir.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'gezeiten-rechner
|
|
4
|
+
const slug = 'gezeiten-rechner';
|
|
5
5
|
const title = 'Gezeitenhöhenrechner';
|
|
6
6
|
const description =
|
|
7
7
|
'Schätzen Sie die Wassertiefe zu jedem Zeitpunkt des Gezeitenzyklus mithilfe der nautischen Zwölftel-Regel. Ideal für die Küstenplanung und das Studium für den Sportbootführerschein.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-pasang-surut
|
|
4
|
+
const slug = 'kalkulator-pasang-surut';
|
|
5
5
|
const title = 'Kalkulator Ketinggian Pasang Surut';
|
|
6
6
|
const description =
|
|
7
7
|
'Estimasi kedalaman air pada titik mana pun dalam siklus pasang surut menggunakan Aturan Seperdua Belas (Rule of Twelfths). Ideal untuk perencanaan pesisir dan studi lisensi nautika.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calcolatore-marea
|
|
4
|
+
const slug = 'calcolatore-marea';
|
|
5
5
|
const title = 'Calcolatore dell\'Altezza della Marea';
|
|
6
6
|
const description =
|
|
7
7
|
'Stima la profondità dell\'acqua in qualsiasi punto del ciclo di marea usando la Regola dei Dodicesimi. Ideale per la pianificazione costiera e lo studio per la patente nautica.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'getijde-calculator
|
|
4
|
+
const slug = 'getijde-calculator';
|
|
5
5
|
const title = 'Getijdenhoogte Calculator';
|
|
6
6
|
const description =
|
|
7
7
|
'Schat de waterdiepte op elk punt in de getijdencyclus met behulp van de nautische Zwölftel-Regel. Ideaal voor kustplanning en studie voor vaarbewijzen.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'kalkulator-plywow
|
|
4
|
+
const slug = 'kalkulator-plywow';
|
|
5
5
|
const title = 'Kalkulator Wysokości Pływów';
|
|
6
6
|
const description =
|
|
7
7
|
'Oszacuj głębokość wody w dowolnym punkcie cyklu pływów za pomocą nawigacyjnej zasady dwunastu części. Idealny do planowania przybrzeżnego i nauki do licencji morskiej.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'calculadora-mare
|
|
4
|
+
const slug = 'calculadora-mare';
|
|
5
5
|
const title = 'Calculadora de Altura de Marés';
|
|
6
6
|
const description =
|
|
7
7
|
'Estime a profundidade da água em qualquer ponto do ciclo de maré usando a Regra dos Dozeavos náutica. Ideal para planeamento costeiro e estudo para cartas de marinheiro.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulator-vysoty-priliva';
|
|
5
5
|
const title = 'Калькулятор высоты прилива';
|
|
6
6
|
const description =
|
|
7
7
|
'Оцените глубину воды в любой момент приливного цикла с помощью морского «правила двенадцатых». Идеально подходит для прибрежного планирования и подготовки к сдаче на судоводительские права.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'tidvattens-kalkylator
|
|
4
|
+
const slug = 'tidvattens-kalkylator';
|
|
5
5
|
const title = 'Kalkylator för tidvattenhöjd';
|
|
6
6
|
const description =
|
|
7
7
|
'Uppskatta vattennivån vid valfri tidpunkt i tidvattencykeln med den nautiska tolftedelsregeln. Idealisk för kustnära planering och studier för förarintyg.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'gelgit-hesaplayici
|
|
4
|
+
const slug = 'gelgit-hesaplayici';
|
|
5
5
|
const title = 'Gelgit Yüksekliği Hesaplayıcı';
|
|
6
6
|
const description =
|
|
7
7
|
'Nautik "On İkide Bir" (Rule of Twelfths) kuralını kullanarak gelgit döngüsünün herhangi bir noktasındaki su derinliğini tahmin edin. Kıyı planlaması ve amatör denizci belgesi çalışmaları için idealdir.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-rechner
|
|
4
|
+
const slug = 'ukc-rechner';
|
|
5
5
|
const title = 'Kalkulator für die Kielfreiheit UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Berechnen Sie das sichere Zeitfenster zum Überqueren von Untiefen, Kanälen oder tiefgangsbeschränkten Stellen. Geben Sie den Tiefgang Ihres Bootes, die Kartentiefe und Gezeitendaten ein, um das genaue sichere Durchfahrtsintervall zu erhalten.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulator-ruang-bebas-kapal';
|
|
5
5
|
const title = 'Kalkulator Ruang Bebas di Bawah Lunas UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Hitung jendela waktu aman untuk melintasi gosong pasir, kanal, atau titik dengan draf terbatas. Masukkan draf kapal, kedalaman peta, dan data pasang surut Anda.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-calcolatore
|
|
4
|
+
const slug = 'ukc-calcolatore';
|
|
5
5
|
const title = 'Calcolatore del Franchezza Sotto la Chiglia UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcola la finestra temporale sicura per attraversare secche, canali o punti con pescaggio limitato. Inserisci il pescaggio della barca, la profondità della carta e i dati di marea.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-calculator
|
|
4
|
+
const slug = 'ukc-calculator';
|
|
5
5
|
const title = 'Kielspeling UKC Calculator';
|
|
6
6
|
const description =
|
|
7
7
|
'Bereken het veilige tijdvenster om drempels, kanalen of diepgang-beperkte punten te passeren. Voer de diepgang van uw boot, de kaartdiepte en getijdegegevens in.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulator-rezerwy-pod-stepka';
|
|
5
5
|
const title = 'Kalkulator Rezerwy pod Stępką UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Oblicz bezpieczne okno czasowe na pokonanie mielizn, kanałów lub punktów z ograniczonym zanurzeniem. Wprowadź zanurzenie łodzi, głębokość z mapy i dane pływowe.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-calculadora
|
|
4
|
+
const slug = 'ukc-calculadora';
|
|
5
5
|
const title = 'Calculadora de Margem sob a Quilha UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Calcule a janela de tempo segura para cruzar bancos de areia, canais ou pontos com restrição de calado. Insira o calado do seu barco, a profundidade da carta e os dados de maré.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = '
|
|
4
|
+
const slug = 'kalkulyator-zapasa-glubiny';
|
|
5
5
|
const title = 'Калькулятор запаса глубины под килем UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Рассчитайте безопасное временное окно для прохода через мели, каналы или точки с ограниченной осадкой. Введите осадку судна, глубину по карте и данные о приливах.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-kalkylator
|
|
4
|
+
const slug = 'ukc-kalkylator';
|
|
5
5
|
const title = 'Kalkylator för kielspeling UKC';
|
|
6
6
|
const description =
|
|
7
7
|
'Beräkna det säkra tidsfönstret för att passera grund, kanaler eller punkter med begränsat djupgående. Ange båtens djupgående, sjökortsdjup och tidvattensdata.';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { UnderKeelUI, UnderKeelLocaleContent } from '../index';
|
|
3
3
|
|
|
4
|
-
const slug = 'ukc-hesaplayici
|
|
4
|
+
const slug = 'ukc-hesaplayici';
|
|
5
5
|
const title = 'Omurga Altı Boşluğu UKC Hesaplayıcı';
|
|
6
6
|
const description =
|
|
7
7
|
'Sığlıkları, kanalları veya su çekimi (draft) kısıtlı noktaları geçmek için güvenli zaman aralığını hesaplayın. Teknenizin draftını, harita derinliğini ve gelgit verilerini girin.';
|