@jjlmoya/utils-health 1.4.0 → 1.6.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/i18n/de.ts +60 -0
- package/src/category/i18n/id.ts +60 -0
- package/src/category/i18n/it.ts +60 -0
- package/src/category/i18n/ja.ts +60 -0
- package/src/category/i18n/ko.ts +60 -0
- package/src/category/i18n/nl.ts +60 -0
- package/src/category/i18n/pl.ts +60 -0
- package/src/category/i18n/pt.ts +60 -0
- package/src/category/i18n/ru.ts +60 -0
- package/src/category/i18n/sv.ts +60 -0
- package/src/category/i18n/tr.ts +60 -0
- package/src/category/i18n/zh.ts +60 -0
- package/src/category/index.ts +13 -1
- package/src/index.ts +1 -1
- package/src/tests/category_validation.test.ts +73 -0
- package/src/tools.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'gesundheit',
|
|
5
|
+
title: 'Online Gesundheitstools',
|
|
6
|
+
description:
|
|
7
|
+
'Kostenlose Gesundheitsrechner und Hilfsmittel: BMI, Körperfettanteil, Kalorien, Flüssigkeitszufuhr und mehr. Basierend auf internationalen medizinischen Standards.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Was Sie in dieser Kategorie finden',
|
|
12
|
+
items: [
|
|
13
|
+
'BMI-Rechner mit visueller Skala und WHO-Kategorien',
|
|
14
|
+
'Ergebnisse basierend auf verifizierten medizinischen Algorithmen',
|
|
15
|
+
'Völlig kostenlos, ohne Registrierung oder Tracking-Cookies',
|
|
16
|
+
'Vollständige Privatsphäre: Berechnungen erfolgen auf Ihrem Gerät',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Wissenschaftlich fundierte Gesundheitstools',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Persönliche Gesundheit ist einer der Bereiche, in denen präzise Informationen einen echten Unterschied machen. Unsere Sammlung von <strong>Online-Gesundheitshilfsmitteln</strong> ist darauf ausgelegt, objektive Daten bereitzustellen, die auf den Standards der Weltgesundheitsorganisation (WHO) und anderer international anerkannter medizinischer Institutionen basieren.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'Im Gegensatz zu mobilen Apps, die Zugriff auf persönliche Daten oder Gerätesensoren erfordern, funktionieren alle diese Tools direkt im Browser. <strong>Keine Gesundheitsdaten verlassen Ihr Gerät</strong>. Keine Server, keine Speicherung, keine Benutzerprofile.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Warum eine Zahl nicht alles ist',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Gesundheitsrechner bieten eine <strong>orientierungsgebende Referenz</strong>, keine Diagnose. Der Body-Mass-Index ist beispielsweise ein nützliches statistisches Screening-Tool für die allgemeine Bevölkerung, unterscheidet jedoch nicht zwischen Muskelgewebe und Körperfett. Ein Leistungssportler kann einen technisch erhöhten BMI haben, ohne metabolische Gesundheitsprobleme aufzuweisen.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Wichtiger medizinischer Haftungsausschluss',
|
|
44
|
+
html: 'Alle Tools in dieser Kategorie sind informations- und bildungsbedingt. Sie ersetzen unter keinen Umständen das Urteil eines Gesundheitsfachmanns. Wenn Sie gesundheitliche Bedenken haben, wenden Sie sich immer an Ihren Arzt oder Spezialisten.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Grundlagen der Gesundheitsmetriken',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Body-Mass-Index):</strong> Gewichts-/Größenverhältnis. WHO-Screening-Indikator zur Klassifizierung des Ernährungsstatus bei Erwachsenen.',
|
|
55
|
+
'<strong>Privacy by Design:</strong> Berechnungen ausschließlich auf dem Client durchgeführt. Keine Telemetrie, keine Tracking-Cookies, keine Analyse persönlicher Daten.',
|
|
56
|
+
'<strong>Internationale Standards:</strong> Die verwendeten Bereiche und Schwellenwerte entsprechen den von der WHO und medizinischen Referenzorganisationen veröffentlichten Richtlinien.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'kesehatan',
|
|
5
|
+
title: 'Alat Kesehatan Online',
|
|
6
|
+
description:
|
|
7
|
+
'Kalkulator dan utilitas kesehatan gratis: BMI, persentase lemak tubuh, kalori, hidrasi, dan lainnya. Berdasarkan standar medis internasional.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Apa yang akan Anda temukan di kategori ini',
|
|
12
|
+
items: [
|
|
13
|
+
'Kalkulator BMI dengan skala visual dan kategori WHO',
|
|
14
|
+
'Hasil berdasarkan algoritma medis yang terverifikasi',
|
|
15
|
+
'Sepenuhnya gratis, tanpa pendaftaran atau cookie pelacak',
|
|
16
|
+
'Privasi penuh: perhitungan dilakukan di perangkat Anda',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Alat Kesehatan Berbasis Sains',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Kesehatan pribadi adalah salah satu bidang di mana informasi yang tepat membuat perbedaan nyata. Koleksi <strong>utilitas kesehatan online</strong> kami dirancang untuk memberikan data objektif, berdasarkan standar Organisasi Kesehatan Dunia (WHO) dan lembaga medis internasional lainnya yang diakui.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'Berbeda dengan aplikasi mobile yang memerlukan akses ke data pribadi atau sensor perangkat, semua alat ini bekerja langsung di browser. <strong>Tidak ada data kesehatan yang meninggalkan perangkat Anda</strong>. Tidak ada server, tidak ada penyimpanan, tidak ada profil pengguna.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Mengapa sebuah angka bukan segalanya',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Kalkulator kesehatan menawarkan <strong>referensi indikatif</strong>, bukan diagnosis. Indeks Massa Tubuh, misalnya, adalah alat skrining statistik yang berguna untuk populasi umum, tetapi tidak membedakan antara jaringan otot dan lemak tubuh. Atlet elit mungkin memiliki BMI yang secara teknis tinggi tanpa menunjukkan masalah kesehatan metabolik.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Disclaimer medis penting',
|
|
44
|
+
html: 'Semua alat dalam kategori ini bersifat informatif dan edukatif. Mereka tidak menggantikan penilaian tenaga kesehatan dalam keadaan apapun. Jika Anda memiliki kekhawatiran tentang kesehatan Anda, selalu konsultasikan dengan dokter atau spesialis Anda.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Dasar-dasar Metrik Kesehatan',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Indeks Massa Tubuh):</strong> Rasio berat/tinggi badan. Indikator skrining WHO untuk mengklasifikasikan status gizi pada orang dewasa.',
|
|
55
|
+
'<strong>Privasi by Design:</strong> Perhitungan dilakukan secara eksklusif di klien. Tidak ada telemetri, tidak ada cookie pelacak, tidak ada analisis data pribadi.',
|
|
56
|
+
'<strong>Standar internasional:</strong> Rentang dan ambang batas yang digunakan sesuai dengan pedoman yang diterbitkan oleh WHO dan badan medis referensi.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'salute',
|
|
5
|
+
title: 'Strumenti di Salute Online',
|
|
6
|
+
description:
|
|
7
|
+
'Calcolatori e utilità per la salute gratuiti: BMI, percentuale di grasso corporeo, calorie, idratazione e altro. Basati su standard medici internazionali.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Cosa troverete in questa categoria',
|
|
12
|
+
items: [
|
|
13
|
+
'Calcolatore BMI con scala visiva e categorie OMS',
|
|
14
|
+
'Risultati basati su algoritmi medici verificati',
|
|
15
|
+
'Completamente gratuito, senza registrazione o cookie di tracciamento',
|
|
16
|
+
'Piena privacy: i calcoli avvengono sul tuo dispositivo',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Strumenti di Salute Basati sulla Scienza',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'La salute personale è uno dei settori in cui le informazioni precise fanno una vera differenza. La nostra raccolta di <strong>utilità per la salute online</strong> è progettata per fornire dati oggettivi, basati sugli standard dell\'Organizzazione Mondiale della Sanità (OMS) e di altri istituti medici internazionalmente riconosciuti.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'A differenza delle app mobili che richiedono l\'accesso ai dati personali o ai sensori del dispositivo, tutti questi strumenti funzionano direttamente nel browser. <strong>Nessun dato sanitario lascia il tuo dispositivo</strong>. Nessun server, nessuna archiviazione, nessun profilo utente.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Perché un numero non è tutto',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'I calcolatori di salute offrono un <strong>riferimento indicativo</strong>, non una diagnosi. L\'Indice di Massa Corporea, ad esempio, è un utile strumento di screening statistico per la popolazione generale, ma non distingue tra tessuto muscolare e grasso corporeo. Un atleta d\'élite può avere un BMI tecnicamente elevato senza presentare problemi di salute metabolica.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Importante avvertenza medica',
|
|
44
|
+
html: 'Tutti gli strumenti in questa categoria sono di natura informativa ed educativa. Non sostituiscono in nessun caso il giudizio di un professionista sanitario. Se hai preoccupazioni riguardo alla tua salute, consulta sempre il tuo medico o specialista.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Fondamentali delle Metriche di Salute',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Indice di Massa Corporea):</strong> Rapporto peso/altezza. Indicatore di screening OMS per classificare lo stato nutrizionale negli adulti.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Calcoli eseguiti esclusivamente sul client. Nessuna telemetria, nessun cookie di tracciamento, nessuna analisi di dati personali.',
|
|
56
|
+
'<strong>Standard internazionali:</strong> Gli intervalli e le soglie utilizzati corrispondono alle linee guida pubblicate dall\'OMS e dagli organismi medici di riferimento.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'health',
|
|
5
|
+
title: 'オンライン健康ツール',
|
|
6
|
+
description:
|
|
7
|
+
'無料の健康計算機とユーティリティ:BMI、体脂肪率、カロリー、水分補給など。国際医療基準に基づいています。',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'このカテゴリで見つけられるもの',
|
|
12
|
+
items: [
|
|
13
|
+
'視覚的スケールとWHOカテゴリを備えたBMI計算機',
|
|
14
|
+
'検証済み医療アルゴリズムに基づく結果',
|
|
15
|
+
'完全無料、登録やトラッキングクッキー不要',
|
|
16
|
+
'完全なプライバシー:計算はデバイス上で実行',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: '科学に基づく健康ツール',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: '個人の健康は、正確な情報が本当の違いをもたらす分野の一つです。私たちの<strong>オンライン健康ユーティリティ</strong>のコレクションは、世界保健機関(WHO)や国際的に認められた医療機関の基準に基づき、客観的なデータを提供するように設計されています。',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: '個人データやデバイスセンサーへのアクセスを必要とするモバイルアプリとは異なり、これらのツールはすべてブラウザで直接動作します。<strong>健康データはデバイスから外に出ません</strong>。サーバーなし、保存なし、ユーザープロファイルなし。',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: '数字だけが全てではない理由',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: '健康計算機は<strong>参考指標</strong>を提供するものであり、診断ではありません。例えば、体格指数(BMI)は一般集団に対する有用な統計スクリーニングツールですが、筋肉組織と体脂肪を区別しません。エリートアスリートは代謝的な健康問題なしに技術的に高いBMIを持つ場合があります。',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: '重要な医療免責事項',
|
|
44
|
+
html: 'このカテゴリのすべてのツールは情報提供・教育的な性質のものです。いかなる状況においても医療専門家の判断に代わるものではありません。健康に関する懸念がある場合は、必ず医師または専門医に相談してください。',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: '健康指標の基礎',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI(体格指数):</strong>体重/身長比。成人の栄養状態を分類するWHOスクリーニング指標。',
|
|
55
|
+
'<strong>Privacy by Design:</strong>計算はクライアント上のみで実行。テレメトリなし、トラッキングクッキーなし、個人データ分析なし。',
|
|
56
|
+
'<strong>国際標準:</strong>使用する範囲と閾値はWHOおよび参照医療機関が発行したガイドラインに対応。',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'health',
|
|
5
|
+
title: '온라인 건강 도구',
|
|
6
|
+
description:
|
|
7
|
+
'무료 건강 계산기 및 유틸리티: BMI, 체지방률, 칼로리, 수분 보충 등. 국제 의료 표준을 기반으로 합니다.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: '이 카테고리에서 찾을 수 있는 것',
|
|
12
|
+
items: [
|
|
13
|
+
'시각적 척도와 WHO 범주가 있는 BMI 계산기',
|
|
14
|
+
'검증된 의료 알고리즘을 기반으로 한 결과',
|
|
15
|
+
'완전 무료, 등록이나 추적 쿠키 없음',
|
|
16
|
+
'완전한 개인정보 보호: 계산이 기기에서 이루어짐',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: '과학 기반 건강 도구',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: '개인 건강은 정확한 정보가 실질적인 차이를 만드는 분야 중 하나입니다. 우리의 <strong>온라인 건강 유틸리티</strong> 컬렉션은 세계보건기구(WHO)와 국제적으로 인정받은 다른 의료 기관의 표준을 바탕으로 객관적인 데이터를 제공하도록 설계되었습니다.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: '개인 데이터나 기기 센서에 접근이 필요한 모바일 앱과 달리, 이 모든 도구는 브라우저에서 직접 작동합니다. <strong>건강 데이터는 기기를 떠나지 않습니다</strong>. 서버 없음, 저장 없음, 사용자 프로필 없음.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: '숫자가 전부가 아닌 이유',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: '건강 계산기는 <strong>지표적 참고치</strong>를 제공하며, 진단이 아닙니다. 예를 들어 체질량지수(BMI)는 일반 인구를 위한 유용한 통계적 스크리닝 도구이지만, 근육 조직과 체지방을 구별하지 않습니다. 엘리트 운동선수는 대사 건강 문제 없이 기술적으로 높은 BMI를 가질 수 있습니다.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: '중요한 의료 면책 조항',
|
|
44
|
+
html: '이 카테고리의 모든 도구는 정보 제공 및 교육적 성격입니다. 어떤 상황에서도 의료 전문가의 판단을 대체하지 않습니다. 건강에 대한 우려가 있으면 항상 의사나 전문의와 상담하세요.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: '건강 지표의 기초',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI(체질량지수):</strong> 체중/키 비율. 성인의 영양 상태 분류를 위한 WHO 스크리닝 지표.',
|
|
55
|
+
'<strong>Privacy by Design:</strong> 계산이 클라이언트에서만 수행됩니다. 텔레메트리 없음, 추적 쿠키 없음, 개인 데이터 분석 없음.',
|
|
56
|
+
'<strong>국제 표준:</strong> 사용된 범위와 임계값은 WHO 및 참조 의료 기관에서 발표한 지침에 해당합니다.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'gezondheid',
|
|
5
|
+
title: 'Online Gezondheidstools',
|
|
6
|
+
description:
|
|
7
|
+
'Gratis gezondheidscalculators en hulpmiddelen: BMI, lichaamsvetpercentage, calorieën, hydratatie en meer. Gebaseerd op internationale medische normen.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Wat u in deze categorie vindt',
|
|
12
|
+
items: [
|
|
13
|
+
'BMI-calculator met visuele schaal en WHO-categorieën',
|
|
14
|
+
'Resultaten gebaseerd op geverifieerde medische algoritmen',
|
|
15
|
+
'Volledig gratis, zonder registratie of trackingcookies',
|
|
16
|
+
'Volledige privacy: berekeningen vinden plaats op uw apparaat',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Wetenschappelijk Onderbouwde Gezondheidstools',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Persoonlijke gezondheid is een van de gebieden waar nauwkeurige informatie echt een verschil maakt. Onze collectie <strong>online gezondheidshulpmiddelen</strong> is ontworpen om objectieve gegevens te bieden, gebaseerd op de normen van de Wereldgezondheidsorganisatie (WHO) en andere internationaal erkende medische instellingen.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'In tegenstelling tot mobiele apps die toegang vereisen tot persoonlijke gegevens of apparaatsensoren, werken al deze tools rechtstreeks in de browser. <strong>Er verlaten geen gezondheidsgegevens uw apparaat</strong>. Geen servers, geen opslag, geen gebruikersprofielen.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Waarom een getal niet alles is',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Gezondheidscalculators bieden een <strong>indicatieve referentie</strong>, geen diagnose. De Body Mass Index is bijvoorbeeld een nuttig statistisch screeningsinstrument voor de algemene bevolking, maar maakt geen onderscheid tussen spierweefsel en lichaamsvet. Een topsporter kan technisch een verhoogde BMI hebben zonder metabolische gezondheidsproblemen te vertonen.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Belangrijke medische disclaimer',
|
|
44
|
+
html: 'Alle tools in deze categorie zijn informatief en educatief van aard. Ze vervangen in geen geval het oordeel van een zorgprofessional. Als u zorgen heeft over uw gezondheid, raadpleeg dan altijd uw arts of specialist.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Grondbeginselen van Gezondheidsmetingen',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Body Mass Index):</strong> Gewicht-/lengteratio. WHO-screeningsindicator om de voedingsstatus bij volwassenen te classificeren.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Berekeningen uitsluitend op de client uitgevoerd. Geen telemetrie, geen trackingcookies, geen analyse van persoonlijke gegevens.',
|
|
56
|
+
'<strong>Internationale normen:</strong> De gebruikte bereiken en drempelwaarden komen overeen met de richtlijnen van de WHO en referentiële medische organisaties.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'zdrowie',
|
|
5
|
+
title: 'Internetowe Narzędzia Zdrowotne',
|
|
6
|
+
description:
|
|
7
|
+
'Bezpłatne kalkulatory i narzędzia zdrowotne: BMI, procent tkanki tłuszczowej, kalorie, nawodnienie i więcej. Oparte na międzynarodowych standardach medycznych.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Co znajdziesz w tej kategorii',
|
|
12
|
+
items: [
|
|
13
|
+
'Kalkulator BMI z wizualną skalą i kategoriami WHO',
|
|
14
|
+
'Wyniki oparte na zweryfikowanych algorytmach medycznych',
|
|
15
|
+
'Całkowicie bezpłatny, bez rejestracji lub plików cookie śledzących',
|
|
16
|
+
'Pełna prywatność: obliczenia są wykonywane na Twoim urządzeniu',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Narzędzia Zdrowotne Oparte na Nauce',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Zdrowie osobiste jest jednym z obszarów, w którym precyzyjne informacje mają realne znaczenie. Nasza kolekcja <strong>internetowych narzędzi zdrowotnych</strong> jest zaprojektowana tak, aby dostarczać obiektywnych danych, opartych na standardach Światowej Organizacji Zdrowia (WHO) i innych międzynarodowo uznanych instytucji medycznych.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'W przeciwieństwie do aplikacji mobilnych wymagających dostępu do danych osobowych lub czujników urządzenia, wszystkie te narzędzia działają bezpośrednio w przeglądarce. <strong>Żadne dane zdrowotne nie opuszczają Twojego urządzenia</strong>. Bez serwerów, bez przechowywania, bez profili użytkowników.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Dlaczego liczba to nie wszystko',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Kalkulatory zdrowotne oferują <strong>wskaźnik orientacyjny</strong>, a nie diagnozę. Na przykład wskaźnik masy ciała (BMI) jest użytecznym narzędziem statystycznego przesiewu dla ogólnej populacji, ale nie rozróżnia między tkanką mięśniową a tkanką tłuszczową. Elitarny sportowiec może mieć technicznie podwyższone BMI bez metabolicznych problemów zdrowotnych.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Ważne zastrzeżenie medyczne',
|
|
44
|
+
html: 'Wszystkie narzędzia w tej kategorii mają charakter informacyjny i edukacyjny. W żadnym przypadku nie zastępują oceny pracownika służby zdrowia. Jeśli masz obawy dotyczące swojego zdrowia, zawsze konsultuj się z lekarzem lub specjalistą.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Podstawy Metryk Zdrowotnych',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Wskaźnik masy ciała):</strong> Stosunek masy ciała do wzrostu. Wskaźnik przesiewowy WHO do klasyfikacji stanu odżywienia u dorosłych.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Obliczenia wykonywane wyłącznie po stronie klienta. Brak telemetrii, brak plików cookie śledzących, brak analizy danych osobowych.',
|
|
56
|
+
'<strong>Normy międzynarodowe:</strong> Używane zakresy i progi odpowiadają wytycznym opublikowanym przez WHO i referencyjne organy medyczne.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'saude',
|
|
5
|
+
title: 'Ferramentas de Saúde Online',
|
|
6
|
+
description:
|
|
7
|
+
'Calculadoras e utilitários de saúde gratuitos: IMC, percentagem de gordura corporal, calorias, hidratação e mais. Baseados em normas médicas internacionais.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'O que encontrará nesta categoria',
|
|
12
|
+
items: [
|
|
13
|
+
'Calculadora de IMC com escala visual e categorias da OMS',
|
|
14
|
+
'Resultados baseados em algoritmos médicos verificados',
|
|
15
|
+
'Completamente gratuito, sem registo ou cookies de rastreamento',
|
|
16
|
+
'Total privacidade: os cálculos ocorrem no seu dispositivo',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Ferramentas de Saúde Baseadas na Ciência',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'A saúde pessoal é uma das áreas onde informações precisas fazem uma diferença real. A nossa coleção de <strong>utilitários de saúde online</strong> é concebida para fornecer dados objetivos, baseados nos padrões da Organização Mundial de Saúde (OMS) e de outras instituições médicas internacionalmente reconhecidas.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'Ao contrário das aplicações móveis que requerem acesso a dados pessoais ou sensores do dispositivo, todas estas ferramentas funcionam diretamente no browser. <strong>Nenhum dado de saúde sai do seu dispositivo</strong>. Sem servidores, sem armazenamento, sem perfis de utilizador.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Por que um número não é tudo',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Os calculadores de saúde oferecem uma <strong>referência indicativa</strong>, não um diagnóstico. O Índice de Massa Corporal, por exemplo, é um útil instrumento de triagem estatística para a população geral, mas não diferencia entre tecido muscular e gordura corporal. Um atleta de elite pode ter um IMC tecnicamente elevado sem apresentar quaisquer problemas de saúde metabólica.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Aviso médico importante',
|
|
44
|
+
html: 'Todas as ferramentas nesta categoria são de natureza informativa e educacional. Não substituem em circunstância alguma o julgamento de um profissional de saúde. Se tiver preocupações sobre a sua saúde, consulte sempre o seu médico ou especialista.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Fundamentos das Métricas de Saúde',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>IMC (Índice de Massa Corporal):</strong> Rácio peso/altura. Indicador de triagem da OMS para classificar o estado nutricional em adultos.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Cálculos realizados exclusivamente no cliente. Sem telemetria, sem cookies de rastreamento, sem análise de dados pessoais.',
|
|
56
|
+
'<strong>Normas internacionais:</strong> Os intervalos e limiares utilizados correspondem às diretrizes publicadas pela OMS e pelos organismos médicos de referência.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'zdorove',
|
|
5
|
+
title: 'Онлайн инструменты для Здоровья',
|
|
6
|
+
description:
|
|
7
|
+
'Бесплатные калькуляторы и утилиты для здоровья: ИМТ, процент жира в теле, калории, гидратация и многое другое. Основаны на международных медицинских стандартах.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Что вы найдёте в этой категории',
|
|
12
|
+
items: [
|
|
13
|
+
'Калькулятор ИМТ с визуальной шкалой и категориями ВОЗ',
|
|
14
|
+
'Результаты на основе проверенных медицинских алгоритмов',
|
|
15
|
+
'Полностью бесплатно, без регистрации и файлов cookie отслеживания',
|
|
16
|
+
'Полная конфиденциальность: вычисления выполняются на вашем устройстве',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Инструменты для Здоровья, Основанные на Науке',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Личное здоровье — одна из областей, где точная информация имеет реальное значение. Наша коллекция <strong>онлайн-утилит для здоровья</strong> создана для предоставления объективных данных, основанных на стандартах Всемирной организации здравоохранения (ВОЗ) и других международно признанных медицинских институтов.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'В отличие от мобильных приложений, требующих доступа к личным данным или датчикам устройства, все эти инструменты работают непосредственно в браузере. <strong>Никакие данные о здоровье не покидают ваше устройство</strong>. Без серверов, без хранилища, без пользовательских профилей.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Почему цифра — это не всё',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Калькуляторы здоровья предлагают <strong>ориентировочный ориентир</strong>, а не диагноз. Индекс массы тела, например, является полезным статистическим инструментом скрининга для общей популяции, но не различает мышечную ткань и жир. Элитный спортсмен может иметь технически повышенный ИМТ без каких-либо метаболических проблем со здоровьем.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Важный медицинский отказ от ответственности',
|
|
44
|
+
html: 'Все инструменты в этой категории носят информационный и образовательный характер. Они ни при каких обстоятельствах не заменяют суждение медицинского работника. Если у вас есть опасения относительно вашего здоровья, всегда консультируйтесь с врачом или специалистом.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Основы Показателей Здоровья',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>ИМТ (Индекс массы тела):</strong> Соотношение вес/рост. Скрининговый индикатор ВОЗ для классификации nutritional status у взрослых.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Вычисления выполняются исключительно на клиенте. Без телеметрии, без файлов cookie отслеживания, без анализа личных данных.',
|
|
56
|
+
'<strong>Международные стандарты:</strong> Используемые диапазоны и пороговые значения соответствуют руководящим принципам, опубликованным ВОЗ и эталонными медицинскими органами.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'halsa',
|
|
5
|
+
title: 'Online Hälsoverktyg',
|
|
6
|
+
description:
|
|
7
|
+
'Gratis hälsokalkylatorer och verktyg: BMI, kroppsfettprocent, kalorier, hydrering och mer. Baserade på internationella medicinska standarder.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Vad du hittar i den här kategorin',
|
|
12
|
+
items: [
|
|
13
|
+
'BMI-kalkylator med visuell skala och WHO-kategorier',
|
|
14
|
+
'Resultat baserade på verifierade medicinska algoritmer',
|
|
15
|
+
'Helt gratis, ingen registrering eller spårningscookies',
|
|
16
|
+
'Full integritet: beräkningar sker på din enhet',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Vetenskapsbaserade Hälsoverktyg',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Personlig hälsa är ett av de områden där exakt information gör en verklig skillnad. Vår samling av <strong>online hälsoutiliteter</strong> är utformad för att ge objektiva data, baserade på Världshälsoorganisationens (WHO) standarder och andra internationellt erkända medicinska institutioner.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'Till skillnad från mobilappar som kräver tillgång till personliga data eller enhetssensorer fungerar alla dessa verktyg direkt i webbläsaren. <strong>Inga hälsodata lämnar din enhet</strong>. Inga servrar, ingen lagring, inga användarprofiler.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Varför ett tal inte är allt',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Hälsokalkylatorer erbjuder en <strong>vägledande referens</strong>, inte en diagnos. Body Mass Index är till exempel ett användbart statistiskt screeningverktyg för den allmänna befolkningen, men det skiljer inte på muskelvävnad och kroppsfett. En elitidrottare kan ha ett tekniskt förhöjt BMI utan att uppvisa några metaboliska hälsoproblem.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Viktig medicinsk ansvarsfriskrivning',
|
|
44
|
+
html: 'Alla verktyg i den här kategorin är av informations- och utbildningskaraktär. De ersätter under inga omständigheter en vårdprofessionells bedömning. Om du har frågor om din hälsa, konsultera alltid din läkare eller specialist.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Grunderna i Hälsomätning',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI (Body Mass Index):</strong> Vikt/längdratio. WHO:s screeningindikator för att klassificera nutritionsstatus hos vuxna.',
|
|
55
|
+
'<strong>Privacy by design:</strong> Beräkningar utförs uteslutande på klienten. Ingen telemetri, inga spårningscookies, ingen analys av personuppgifter.',
|
|
56
|
+
'<strong>Internationella standarder:</strong> De använda intervallen och tröskelvärdena motsvarar riktlinjer publicerade av WHO och referensmedicinska organ.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'saglik',
|
|
5
|
+
title: 'Çevrimiçi Sağlık Araçları',
|
|
6
|
+
description:
|
|
7
|
+
'Ücretsiz sağlık hesaplayıcılar ve yardımcı programlar: VKİ, vücut yağ yüzdesi, kalori, hidrasyon ve daha fazlası. Uluslararası tıbbi standartlara dayanır.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: 'Bu kategoride neler bulacaksınız',
|
|
12
|
+
items: [
|
|
13
|
+
'Görsel ölçek ve DSÖ kategorileriyle VKİ hesaplayıcı',
|
|
14
|
+
'Doğrulanmış tıbbi algoritmalara dayalı sonuçlar',
|
|
15
|
+
'Tamamen ücretsiz, kayıt veya izleme çerezi yok',
|
|
16
|
+
'Tam gizlilik: hesaplamalar cihazınızda gerçekleşir',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: 'Bilime Dayalı Sağlık Araçları',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: 'Kişisel sağlık, doğru bilgilerin gerçek fark yarattığı alanlardan biridir. <strong>Çevrimiçi sağlık yardımcı programları</strong> koleksiyonumuz, Dünya Sağlık Örgütü (DSÖ) ve uluslararası alanda tanınan diğer tıbbi kurumların standartlarına dayalı objektif veriler sağlamak için tasarlanmıştır.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: 'Kişisel verilere veya cihaz sensörlerine erişim gerektiren mobil uygulamaların aksine, tüm bu araçlar doğrudan tarayıcıda çalışır. <strong>Hiçbir sağlık verisi cihazınızı terk etmez</strong>. Sunucu yok, depolama yok, kullanıcı profili yok.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: 'Bir sayının neden her şey olmadığı',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: 'Sağlık hesaplayıcılar bir <strong>gösterge referansı</strong> sunar, tanı değil. Örneğin Vücut Kitle İndeksi, genel nüfus için yararlı bir istatistiksel tarama aracıdır; ancak kas dokusu ile vücut yağını ayırt etmez. Elit bir sporcu, herhangi bir metabolik sağlık sorunu olmaksızın teknik olarak yüksek bir VKİ\'ye sahip olabilir.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: 'Önemli tıbbi sorumluluk reddi',
|
|
44
|
+
html: 'Bu kategorideki tüm araçlar bilgilendirici ve eğitim amaçlıdır. Hiçbir koşulda bir sağlık profesyonelinin yargısının yerini tutmazlar. Sağlığınıza ilişkin endişeleriniz varsa her zaman doktorunuza veya uzmanınıza danışın.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: 'Sağlık Metriklerinin Temelleri',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>VKİ (Vücut Kitle İndeksi):</strong> Ağırlık/boy oranı. Yetişkinlerde beslenme durumunu sınıflandırmak için DSÖ tarama göstergesi.',
|
|
55
|
+
'<strong>Tasarım gereği gizlilik:</strong> Hesaplamalar yalnızca istemcide gerçekleştirilir. Telemetri yok, izleme çerezi yok, kişisel veri analizi yok.',
|
|
56
|
+
'<strong>Uluslararası standartlar:</strong> Kullanılan aralıklar ve eşikler, DSÖ ve referans tıbbi kuruluşlarca yayımlanan kılavuzlara karşılık gelir.',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'health',
|
|
5
|
+
title: '在线健康工具',
|
|
6
|
+
description:
|
|
7
|
+
'免费健康计算器和实用工具:BMI、体脂率、卡路里、水分补充等。基于国际医疗标准。',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'summary',
|
|
11
|
+
title: '您将在此类别中找到的内容',
|
|
12
|
+
items: [
|
|
13
|
+
'带有视觉刻度和世卫组织类别的 BMI 计算器',
|
|
14
|
+
'基于经过验证的医疗算法的结果',
|
|
15
|
+
'完全免费,无需注册或追踪 Cookie',
|
|
16
|
+
'完全隐私:计算在您的设备上进行',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: 'title',
|
|
21
|
+
text: '基于科学的健康工具',
|
|
22
|
+
level: 2,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'paragraph',
|
|
26
|
+
html: '个人健康是精确信息能产生真正差异的领域之一。我们的<strong>在线健康实用工具</strong>集合旨在提供客观数据,基于世界卫生组织(WHO)和其他国际公认医疗机构的标准。',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
type: 'paragraph',
|
|
30
|
+
html: '与需要访问个人数据或设备传感器的移动应用不同,这些工具全部直接在浏览器中运行。<strong>任何健康数据都不会离开您的设备</strong>。无服务器,无存储,无用户档案。',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
type: 'title',
|
|
34
|
+
text: '为什么数字不是一切',
|
|
35
|
+
level: 3,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'paragraph',
|
|
39
|
+
html: '健康计算器提供的是<strong>参考指标</strong>,而非诊断。例如,体重指数(BMI)是针对普通人群的有用统计筛查工具,但它不区分肌肉组织和体脂。精英运动员可能在没有任何代谢健康问题的情况下具有技术上较高的 BMI。',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type: 'tip',
|
|
43
|
+
title: '重要医疗免责声明',
|
|
44
|
+
html: '本类别中的所有工具均具有信息性和教育性质。它们在任何情况下都不能替代医疗专业人员的判断。如果您对自己的健康有顾虑,请始终咨询您的医生或专科医生。',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'title',
|
|
48
|
+
text: '健康指标基础',
|
|
49
|
+
level: 2,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 'list',
|
|
53
|
+
items: [
|
|
54
|
+
'<strong>BMI(体重指数):</strong>体重/身高比。世卫组织用于对成人营养状况进行分类的筛查指标。',
|
|
55
|
+
'<strong>隐私设计:</strong>计算完全在客户端执行。无遥测数据,无追踪 Cookie,无个人数据分析。',
|
|
56
|
+
'<strong>国际标准:</strong>所使用的范围和阈值对应世卫组织和医学参考机构发布的指南。',
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
};
|
package/src/category/index.ts
CHANGED
|
@@ -15,8 +15,20 @@ export const healthCategory: HealthCategoryEntry = {
|
|
|
15
15
|
icon: 'mdi:heart-pulse',
|
|
16
16
|
tools: [bmiCalculator, daltonismSimulator, tinnitusReliever, breathingVisualizer, caffeineTracker, waterPurifier, digestionStopwatch, binauralTuner, pelliRobsonTest, peripheralVisionTrainer, epworthSleepinessScale],
|
|
17
17
|
i18n: {
|
|
18
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
19
18
|
en: () => import('./i18n/en').then((m) => m.content),
|
|
19
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
20
20
|
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
21
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
22
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
23
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
24
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
25
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
26
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
27
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
28
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
29
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
30
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
31
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
32
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
21
33
|
},
|
|
22
34
|
};
|
package/src/index.ts
CHANGED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { healthCategory as toolsCategory } from '../category/index';
|
|
3
|
+
import type { CategoryLocaleContent } from '../types';
|
|
4
|
+
|
|
5
|
+
const EXPECTED_LOCALES = [
|
|
6
|
+
'de', 'en', 'es', 'fr', 'id', 'it', 'ja', 'ko', 'nl', 'pl', 'pt', 'ru', 'sv', 'tr', 'zh'
|
|
7
|
+
];
|
|
8
|
+
|
|
9
|
+
const sharingLocales = ['ja', 'ko', 'zh'];
|
|
10
|
+
|
|
11
|
+
describe('Category Validation', () => {
|
|
12
|
+
it('should have all 15 required locales', () => {
|
|
13
|
+
const registeredLocales = Object.keys(toolsCategory.i18n);
|
|
14
|
+
EXPECTED_LOCALES.forEach((locale) => {
|
|
15
|
+
expect(
|
|
16
|
+
registeredLocales,
|
|
17
|
+
`Category is missing locale "${locale}"`,
|
|
18
|
+
).toContain(locale);
|
|
19
|
+
});
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
describe('Category Slug Validation', () => {
|
|
23
|
+
it('every locale should have a unique, translated slug and follow format rules', async () => {
|
|
24
|
+
const slugs = new Map<string, string>();
|
|
25
|
+
const locales = Object.keys(toolsCategory.i18n);
|
|
26
|
+
|
|
27
|
+
let enSlug = '';
|
|
28
|
+
if (locales.includes('en')) {
|
|
29
|
+
const enLoader = toolsCategory.i18n['en' as keyof typeof toolsCategory.i18n];
|
|
30
|
+
const enContent = (await enLoader?.()) as CategoryLocaleContent;
|
|
31
|
+
enSlug = enContent.slug;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
for (const locale of locales) {
|
|
35
|
+
const loader = toolsCategory.i18n[locale as keyof typeof toolsCategory.i18n];
|
|
36
|
+
const content = (await loader?.()) as CategoryLocaleContent;
|
|
37
|
+
|
|
38
|
+
expect(
|
|
39
|
+
content.slug,
|
|
40
|
+
`Category locale "${locale}" has an invalid slug ("${content.slug}"). Slugs must be transliterated (only a-z, 0-9, and -).`,
|
|
41
|
+
).toMatch(/^[a-z0-9-]+$/);
|
|
42
|
+
|
|
43
|
+
expect(
|
|
44
|
+
content.slug,
|
|
45
|
+
`Category locale "${locale}" slug ("${content.slug}") cannot end with a 2-letter language code (e.g., -ja, -ru, -ko).`,
|
|
46
|
+
).not.toMatch(/-[a-z]{2}$/);
|
|
47
|
+
|
|
48
|
+
if (locale !== 'en') {
|
|
49
|
+
if (sharingLocales.includes(locale)) {
|
|
50
|
+
expect(
|
|
51
|
+
content.slug,
|
|
52
|
+
`Category locale "${locale}" must use the same slug as "en" ("${enSlug}").`,
|
|
53
|
+
).toBe(enSlug);
|
|
54
|
+
} else {
|
|
55
|
+
expect(
|
|
56
|
+
content.slug,
|
|
57
|
+
`Category locale "${locale}" has the same slug as "en" ("${enSlug}"). Cada slug tiene que estar en su propio idioma`,
|
|
58
|
+
).not.toBe(enSlug);
|
|
59
|
+
|
|
60
|
+
if (slugs.has(content.slug)) {
|
|
61
|
+
const previousLocale = slugs.get(content.slug);
|
|
62
|
+
expect(
|
|
63
|
+
false,
|
|
64
|
+
`Category locales "${locale}" and "${previousLocale}" share the same slug ("${content.slug}"). Cada slug tiene que estar en su propia idioma`,
|
|
65
|
+
).toBe(true);
|
|
66
|
+
}
|
|
67
|
+
slugs.set(content.slug, locale);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
});
|
package/src/tools.ts
CHANGED
|
@@ -17,3 +17,5 @@ import { READING_DISTANCE_CALCULATOR_TOOL } from './tool/readingDistanceCalculat
|
|
|
17
17
|
import { HYDRATION_CALCULATOR_TOOL } from './tool/hydrationCalculator';
|
|
18
18
|
|
|
19
19
|
export const ALL_TOOLS: ToolDefinition[] = [BMI_CALCULATOR_TOOL, DALTONISM_SIMULATOR_TOOL, TINNITUS_RELIEVER_TOOL, BREATHING_VISUALIZER_TOOL, CAFFEINE_TRACKER_TOOL, WATER_PURIFIER_TOOL, DIGESTION_STOPWATCH_TOOL, BINAURAL_TUNER_TOOL, PELLI_ROBSON_TEST_TOOL, PERIPHERAL_VISION_TRAINER_TOOL, EPWORTH_SLEEPINESS_SCALE_TOOL, UBE_CALCULATOR_TOOL, SCREEN_DECOMPRESSION_TIME_TOOL, BLOOD_UNIT_CONVERTER_TOOL, READING_DISTANCE_CALCULATOR_TOOL, HYDRATION_CALCULATOR_TOOL];
|
|
20
|
+
|
|
21
|
+
export const ALL_ENTRIES = ALL_TOOLS.map(t => t.entry);
|