@jjlmoya/utils-chrono 1.2.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 +65 -0
- package/scripts/postinstall.mjs +27 -0
- package/src/category/ChronoCategorySEO.astro +8 -0
- package/src/category/i18n/de.ts +23 -0
- package/src/category/i18n/en.ts +23 -0
- package/src/category/i18n/es.ts +23 -0
- package/src/category/i18n/fr.ts +23 -0
- package/src/category/i18n/id.ts +23 -0
- package/src/category/i18n/it.ts +23 -0
- package/src/category/i18n/ja.ts +23 -0
- package/src/category/i18n/ko.ts +23 -0
- package/src/category/i18n/nl.ts +23 -0
- package/src/category/i18n/pl.ts +23 -0
- package/src/category/i18n/pt.ts +23 -0
- package/src/category/i18n/ru.ts +23 -0
- package/src/category/i18n/sv.ts +23 -0
- package/src/category/i18n/tr.ts +23 -0
- package/src/category/i18n/zh.ts +23 -0
- package/src/category/index.ts +42 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/entries.ts +32 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +28 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +161 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/locale_completeness.test.ts +29 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +18 -0
- package/src/tool/beat-rate-converter/beat-rate-converter.css +301 -0
- package/src/tool/beat-rate-converter/bibliography.astro +16 -0
- package/src/tool/beat-rate-converter/bibliography.ts +12 -0
- package/src/tool/beat-rate-converter/client.ts +46 -0
- package/src/tool/beat-rate-converter/component.astro +15 -0
- package/src/tool/beat-rate-converter/components/ConverterPanel.astro +87 -0
- package/src/tool/beat-rate-converter/entry.ts +42 -0
- package/src/tool/beat-rate-converter/i18n/de.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/en.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/es.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/fr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/id.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/it.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ja.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ko.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/nl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pt.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ru.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/sv.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/tr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/zh.ts +138 -0
- package/src/tool/beat-rate-converter/index.ts +11 -0
- package/src/tool/beat-rate-converter/seo.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.ts +20 -0
- package/src/tool/crown-reference-guide/client.ts +193 -0
- package/src/tool/crown-reference-guide/component.astro +69 -0
- package/src/tool/crown-reference-guide/components/CrownView.astro +40 -0
- package/src/tool/crown-reference-guide/components/MovementSelector.astro +26 -0
- package/src/tool/crown-reference-guide/components/PositionPanel.astro +59 -0
- package/src/tool/crown-reference-guide/crown-reference-guide.css +383 -0
- package/src/tool/crown-reference-guide/entry.ts +60 -0
- package/src/tool/crown-reference-guide/i18n/de.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/en.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/es.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/fr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/id.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/it.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ja.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ko.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/nl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pt.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ru.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/sv.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/tr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/zh.ts +207 -0
- package/src/tool/crown-reference-guide/index.ts +11 -0
- package/src/tool/crown-reference-guide/seo.astro +16 -0
- package/src/tool/crown-reference-guide/utils.ts +0 -0
- package/src/tool/demagnetizing-timer/bibliography.astro +16 -0
- package/src/tool/demagnetizing-timer/bibliography.ts +12 -0
- package/src/tool/demagnetizing-timer/client.ts +221 -0
- package/src/tool/demagnetizing-timer/component.astro +15 -0
- package/src/tool/demagnetizing-timer/components/TimerPanel.astro +92 -0
- package/src/tool/demagnetizing-timer/demagnetizing-timer.css +389 -0
- package/src/tool/demagnetizing-timer/entry.ts +50 -0
- package/src/tool/demagnetizing-timer/helpers/field.ts +134 -0
- package/src/tool/demagnetizing-timer/i18n/de.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/en.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/es.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/fr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/id.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/it.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ja.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ko.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/nl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pt.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ru.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/sv.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/tr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/zh.ts +143 -0
- package/src/tool/demagnetizing-timer/index.ts +11 -0
- package/src/tool/demagnetizing-timer/seo.astro +16 -0
- package/src/tool/demagnetizing-timer/utils.ts +0 -0
- package/src/tool/power-reserve-estimator/bibliography.astro +16 -0
- package/src/tool/power-reserve-estimator/bibliography.ts +16 -0
- package/src/tool/power-reserve-estimator/client.ts +139 -0
- package/src/tool/power-reserve-estimator/component.astro +15 -0
- package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +150 -0
- package/src/tool/power-reserve-estimator/entry.ts +51 -0
- package/src/tool/power-reserve-estimator/i18n/de.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/en.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/es.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/fr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/id.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/it.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ja.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ko.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/nl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pt.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ru.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/sv.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/tr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/zh.ts +158 -0
- package/src/tool/power-reserve-estimator/index.ts +11 -0
- package/src/tool/power-reserve-estimator/power-reserve-estimator.css +402 -0
- package/src/tool/power-reserve-estimator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.ts +12 -0
- package/src/tool/strap-taper-calculator/client.ts +129 -0
- package/src/tool/strap-taper-calculator/component.astro +15 -0
- package/src/tool/strap-taper-calculator/components/CalculatorPanel.astro +114 -0
- package/src/tool/strap-taper-calculator/entry.ts +56 -0
- package/src/tool/strap-taper-calculator/i18n/de.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/en.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/es.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/fr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/id.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/it.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ja.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ko.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/nl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pt.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ru.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/sv.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/tr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/zh.ts +152 -0
- package/src/tool/strap-taper-calculator/index.ts +11 -0
- package/src/tool/strap-taper-calculator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/strap-taper-calculator.css +320 -0
- package/src/tool/watch-accuracy-tracker/bibliography.astro +16 -0
- package/src/tool/watch-accuracy-tracker/bibliography.ts +12 -0
- package/src/tool/watch-accuracy-tracker/chart.ts +126 -0
- package/src/tool/watch-accuracy-tracker/client.ts +287 -0
- package/src/tool/watch-accuracy-tracker/component.astro +35 -0
- package/src/tool/watch-accuracy-tracker/components/AccuracyTracker.astro +96 -0
- package/src/tool/watch-accuracy-tracker/components/DriftPredictor.astro +126 -0
- package/src/tool/watch-accuracy-tracker/components/LogHistory.astro +66 -0
- package/src/tool/watch-accuracy-tracker/entry.ts +94 -0
- package/src/tool/watch-accuracy-tracker/i18n/de.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/en.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/es.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/fr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/id.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/it.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ja.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ko.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/nl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pt.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ru.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/sv.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/tr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/zh.ts +167 -0
- package/src/tool/watch-accuracy-tracker/index.ts +9 -0
- package/src/tool/watch-accuracy-tracker/logger.ts +105 -0
- package/src/tool/watch-accuracy-tracker/seo.astro +16 -0
- package/src/tool/watch-accuracy-tracker/utils.ts +99 -0
- package/src/tool/watch-accuracy-tracker/watch-accuracy-tracker.css +564 -0
- package/src/tool/watch-savings-planner/bibliography.astro +16 -0
- package/src/tool/watch-savings-planner/bibliography.ts +8 -0
- package/src/tool/watch-savings-planner/client.ts +271 -0
- package/src/tool/watch-savings-planner/component.astro +33 -0
- package/src/tool/watch-savings-planner/components/AddGoalForm.astro +49 -0
- package/src/tool/watch-savings-planner/components/GoalCard.astro +58 -0
- package/src/tool/watch-savings-planner/entry.ts +62 -0
- package/src/tool/watch-savings-planner/i18n/de.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/en.ts +155 -0
- package/src/tool/watch-savings-planner/i18n/es.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/fr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/id.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/it.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ja.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ko.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/nl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pt.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ru.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/sv.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/tr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/zh.ts +153 -0
- package/src/tool/watch-savings-planner/index.ts +11 -0
- package/src/tool/watch-savings-planner/seo.astro +16 -0
- package/src/tool/watch-savings-planner/utils.ts +0 -0
- package/src/tool/watch-savings-planner/watch-savings-planner.css +460 -0
- package/src/tool/water-resistance-converter/bibliography.astro +16 -0
- package/src/tool/water-resistance-converter/bibliography.ts +16 -0
- package/src/tool/water-resistance-converter/client.ts +56 -0
- package/src/tool/water-resistance-converter/component.astro +15 -0
- package/src/tool/water-resistance-converter/components/ConverterPanel.astro +113 -0
- package/src/tool/water-resistance-converter/entry.ts +52 -0
- package/src/tool/water-resistance-converter/i18n/de.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/en.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/es.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/fr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/id.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/it.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ja.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ko.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/nl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pt.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ru.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/sv.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/tr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/zh.ts +148 -0
- package/src/tool/water-resistance-converter/index.ts +11 -0
- package/src/tool/water-resistance-converter/seo.astro +16 -0
- package/src/tool/water-resistance-converter/water-resistance-converter.css +254 -0
- package/src/tool/wrist-presence-calculator/bibliography.astro +16 -0
- package/src/tool/wrist-presence-calculator/bibliography.ts +12 -0
- package/src/tool/wrist-presence-calculator/client.ts +180 -0
- package/src/tool/wrist-presence-calculator/component.astro +23 -0
- package/src/tool/wrist-presence-calculator/components/CalculatorInputs.astro +97 -0
- package/src/tool/wrist-presence-calculator/components/FitResult.astro +68 -0
- package/src/tool/wrist-presence-calculator/components/Visualizer.astro +16 -0
- package/src/tool/wrist-presence-calculator/entry.ts +59 -0
- package/src/tool/wrist-presence-calculator/helpers/canvas.ts +189 -0
- package/src/tool/wrist-presence-calculator/helpers/results.ts +78 -0
- package/src/tool/wrist-presence-calculator/i18n/de.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/en.ts +155 -0
- package/src/tool/wrist-presence-calculator/i18n/es.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/fr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/id.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/it.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ja.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ko.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/nl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pt.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ru.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/sv.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/tr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/zh.ts +155 -0
- package/src/tool/wrist-presence-calculator/index.ts +11 -0
- package/src/tool/wrist-presence-calculator/seo.astro +16 -0
- package/src/tool/wrist-presence-calculator/utils.ts +30 -0
- package/src/tool/wrist-presence-calculator/wrist-presence-calculator.css +372 -0
- package/src/tools.ts +26 -0
- package/src/types.ts +70 -0
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { WatchSavingsPlannerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<WatchSavingsPlannerUI> = {
|
|
6
|
+
slug: 'saat-tasarruf-plani',
|
|
7
|
+
title: 'Saat Birikim Planlay\u0131c\u0131s\u0131',
|
|
8
|
+
description: 'Bir sonraki saat al\u0131\u015fveri\u015finiz i\u00e7in birikim hedefleri belirleyin ve takip edin. \u0130lerlemeyi g\u00f6rselle\u015ftirin, zaman \u00e7izelgelerini hesaplay\u0131n ve motive kal\u0131n.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Birikim Hedefi Ayarlar\u0131',
|
|
11
|
+
addGoalTitle: 'Yeni Birikim Hedefi',
|
|
12
|
+
goalNameLabel: 'Saat',
|
|
13
|
+
goalNamePlaceholder: '\u00f6rn. Rolex Submariner',
|
|
14
|
+
targetPriceLabel: 'Hedef Fiyat',
|
|
15
|
+
currentSavingsLabel: 'Biriktirilen',
|
|
16
|
+
monthlyLabel: 'Ayl\u0131k',
|
|
17
|
+
addButton: 'Hedef Ekle',
|
|
18
|
+
cancelButton: '\u0130ptal',
|
|
19
|
+
goalsEmpty: 'Hen\u00fcz birikim hedefi yok',
|
|
20
|
+
goalsEmptySub: '\u0130lk saat hedefini belirle ve biriktirmeye ba\u015fla!',
|
|
21
|
+
monthsToGoal: 'Hedefe kalan s\u00fcre',
|
|
22
|
+
yearsToGoal: 'Hedefe kalan y\u0131l',
|
|
23
|
+
month: 'ay',
|
|
24
|
+
months: 'ay',
|
|
25
|
+
year: 'yl',
|
|
26
|
+
totalSaved: 'Toplam Biriktirilen',
|
|
27
|
+
totalGoals: 'Hedef',
|
|
28
|
+
achieved: 'Ula\u015f\u0131ld\u0131',
|
|
29
|
+
percentLabel: 'Biriktirilen',
|
|
30
|
+
deleteGoal: 'Sil',
|
|
31
|
+
editGoal: 'D\u00fczenle',
|
|
32
|
+
saveGoal: 'Kaydet',
|
|
33
|
+
currency: 'TRY',
|
|
34
|
+
summaryTitle: '\u00d6zet',
|
|
35
|
+
goalAchieved: 'Ula\u015f\u0131ld\u0131!',
|
|
36
|
+
goalProgress: '\u0130lerleme',
|
|
37
|
+
congratsTitle: 'Tebrikler!',
|
|
38
|
+
congratsDesc: 'Birikim hedefine ula\u015ft\u0131n!',
|
|
39
|
+
monthlyContribution: 'Ayl\u0131k',
|
|
40
|
+
targetDate: 'Hedef Tarih',
|
|
41
|
+
adjustMonthly: 'Ayl\u0131\u011f\u0131 ayarla',
|
|
42
|
+
},
|
|
43
|
+
seo: [
|
|
44
|
+
{ type: 'title', text: 'Saat Birikim Planlay\u0131c\u0131s\u0131 \u2014 Bir Sonraki Saat Al\u0131\u015fveri\u015fini Takip Et', level: 2 },
|
|
45
|
+
{ type: 'paragraph', html: 'Bir saat i\u00e7in birikim yapmak bir yolculuktur. \u0130ster bir <strong>vintage Speedmaster</strong>, ister bir <strong>Submariner</strong> veya bir <strong>Grand Seiko</strong> olsun, net bir birikim plan\u0131 hayali bir zaman \u00e7izelgesine d\u00f6n\u00fc\u015ft\u00fcr\u00fcr. Bu ara\u00e7, ilerlemenizi g\u00f6rselle\u015ftirmenize, ayl\u0131k katk\u0131lar\u0131n\u0131z\u0131 ayarlaman\u0131za ve butikten hayalinizdeki saatle tam olarak ne zaman \u00e7\u0131kaca\u011f\u0131n\u0131z\u0131 g\u00f6rmenize yard\u0131mc\u0131 olur.' },
|
|
46
|
+
{ type: 'title', text: 'Saat Koleksiyonerleri \u0130\u00e7in Birikim Plan\u0131 Neden \u00d6nemlidir', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Saat koleksiyonculu\u011fu sab\u0131r gerektiren bir i\u015ftir. G\u00f6zde modellerin fiyatlar\u0131 istikrarl\u0131 bir \u015fekilde y\u00fckselir ve ani al\u0131\u015fveri\u015fler genellikle pi\u015fmanl\u0131kla sonu\u00e7lan\u0131r. Yap\u0131land\u0131r\u0131lm\u0131\u015f bir birikim yakla\u015f\u0131m\u0131 sizi disiplinli tutar, maddi zorlanmay\u0131 \u00f6nler ve nihai sat\u0131n almay\u0131 hak edilmi\u015f hissettirir. \u00dcstelik, ilerlemenizi her g\u00fcn takip etmek heyecan\u0131 art\u0131r\u0131r ve kutuyu a\u00e7ma an\u0131n\u0131 daha da tatl\u0131 k\u0131lar.' },
|
|
48
|
+
{ type: 'title', text: 'Ger\u00e7ek\u00e7i Saat Birikim Hedefleri Nas\u0131l Belirlenir', level: 3 },
|
|
49
|
+
{ type: 'paragraph', html: 'Vergiler ve kargo dahil toplam fiyatla ba\u015flay\u0131n. Ard\u0131ndan her ay rahat\u00e7a ay\u0131rabilece\u011finiz miktara b\u00f6l\u00fcn. \u0130yi bir kural, <strong>harcanabilir gelirinizin %10\u201315\u2019inden</strong> fazlas\u0131n\u0131 saat birikimine ay\u0131rmamakt\u0131r. Zaman \u00e7izelgesi \u00e7ok uzun g\u00f6r\u00fcn\u00fcyorsa, daha k\u00fc\u00e7\u00fck a\u015famalara b\u00f6lmeyi veya ayn\u0131 stil ailesinde daha uygun fiyatl\u0131 alternatifleri ke\u015ffetmeyi d\u00fc\u015f\u00fcn\u00fcn.' },
|
|
50
|
+
{ type: 'title', text: 'Hedef Takibinin Psikolojisi', level: 3 },
|
|
51
|
+
{ type: 'paragraph', html: 'G\u00f6rsel ilerleme takibi, koleksiyonculu\u011fu bu kadar \u00f6d\u00fcllendirici yapan ayn\u0131 n\u00f6rotransmitter olan dopamin sal\u0131n\u0131m\u0131n\u0131 tetikler. Her yeni katk\u0131y\u0131 kaydetti\u011finizde ve ilerleme halkas\u0131n\u0131n doldu\u011funu g\u00f6rd\u00fc\u011f\u00fcn\u00fczde, al\u0131\u015fkanl\u0131\u011f\u0131 peki\u015ftirirsiniz. Bu nedenle, k\u00fc\u00e7\u00fck ve d\u00fczenli birikimler genellikle seyrek b\u00fcy\u00fck yat\u0131r\u0131mlardan daha iyi \u00e7al\u0131\u015f\u0131r \u2014 rit\u00fcelin kendisi koleksiyonculuk deneyiminin bir par\u00e7as\u0131 haline gelir.' },
|
|
52
|
+
],
|
|
53
|
+
faq: [
|
|
54
|
+
{
|
|
55
|
+
question: 'Bir saat i\u00e7in her ay ne kadar biriktirmeliyim?',
|
|
56
|
+
answer: 'Harcanabilir ayl\u0131k gelirinizin %10\u201315\u2019ini hedefleyin. Anahtar tutarl\u0131l\u0131kt\u0131r \u2014 ayda 100 $ bile y\u0131lda 1.200 $ eder. Zaman \u00e7izelgenize g\u00f6re miktar\u0131 ayarlay\u0131n: daha k\u0131sa hedefler daha y\u00fcksek ayl\u0131k katk\u0131lar gerektirir.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Bir seferde tek bir saat i\u00e7in mi yoksa birden fazla i\u00e7in mi biriktirmeliyim?',
|
|
60
|
+
answer: 'Tek seferde bir tane genellikle daha etkilidir. Odaklanma ivme kazand\u0131r\u0131r. \u0130lk hedefinize ula\u015ft\u0131\u011f\u0131n\u0131zda, g\u00fcven ve disiplin bir sonrakine aktar\u0131l\u0131r. Bununla birlikte, bu planlay\u0131c\u0131 birden fazla hedefi destekleyerek zaman \u00e7izelgelerini kar\u015f\u0131la\u015ft\u0131rman\u0131za olanak tan\u0131r.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'Biriktirirken saat fiyat\u0131 y\u00fckselirse ne olur?',
|
|
64
|
+
answer: 'G\u00fczel soru. Birka\u00e7 ayda bir g\u00fcncel piyasa fiyat\u0131n\u0131 kontrol edin ve hedefinizi g\u00fcncelleyin. Fiyatlar h\u0131zla y\u00fckseliyorsa, ayl\u0131k miktar\u0131n\u0131z\u0131 art\u0131rmay\u0131 veya zaman \u00e7izelgesini k\u0131saltarak mevcut fiyat\u0131 sabitlemeyi d\u00fc\u015f\u00fcn\u00fcn.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Hedefini Belirle',
|
|
71
|
+
text: 'Saatin ad\u0131n\u0131 ve vergiler ile kargo dahil toplam fiyat\u0131n\u0131 girin.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Birikimini Takip Et',
|
|
75
|
+
text: 'Ne kadar biriktirdi\u011fini ve her ay ne kadar ay\u0131rabilece\u011fini kaydet.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: '\u0130lerlemeyi \u0130zle',
|
|
79
|
+
text: 'Birikimlerini g\u00fcncellerken ilerleme halkas\u0131n\u0131n doldu\u011funu izle. Ayl\u0131k miktarlar\u0131 istedi\u011fin zaman ayarla.',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'Kutla',
|
|
83
|
+
text: 'Halka %100\u2019e ula\u015ft\u0131\u011f\u0131nda hedefine ula\u015fm\u0131\u015fs\u0131n demektir. O saati alma zaman\u0131!',
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
schemas: [
|
|
87
|
+
{
|
|
88
|
+
'@context': 'https://schema.org',
|
|
89
|
+
'@type': 'FAQPage',
|
|
90
|
+
'mainEntity': [
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Bir saat i\u00e7in her ay ne kadar biriktirmeliyim?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': 'Harcanabilir ayl\u0131k gelirinizin %10\u201315\u2019ini hedefleyin. Anahtar tutarl\u0131l\u0131kt\u0131r \u2014 ayda 100 $ bile y\u0131lda 1.200 $ eder.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'Bir seferde tek bir saat i\u00e7in mi yoksa birden fazla i\u00e7in mi biriktirmeliyim?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Tek seferde bir tane genellikle daha etkilidir. Odaklanma ivme kazand\u0131r\u0131r. \u0130lk hedefinize ula\u015ft\u0131\u011f\u0131n\u0131zda, bu disiplini bir sonrakine ta\u015f\u0131y\u0131n.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'Biriktirirken saat fiyat\u0131 y\u00fckselirse ne olur?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'Birka\u00e7 ayda bir g\u00fcncel piyasa fiyat\u0131n\u0131 kontrol edin ve hedefinizi g\u00fcncelleyin. Fiyatlar h\u0131zla y\u00fckseliyorsa ayl\u0131k miktar\u0131n\u0131z\u0131 art\u0131rmay\u0131 d\u00fc\u015f\u00fcn\u00fcn.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Saat Birikim Planlay\u0131c\u0131s\u0131',
|
|
121
|
+
'operatingSystem': 'T\u00fcm\u00fc',
|
|
122
|
+
'applicationCategory': 'FinanceApplication',
|
|
123
|
+
'browserRequirements': 'HTML5 gerektirir. JavaScript gerektirir.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Saat al\u0131m\u0131 i\u00e7in nas\u0131l birikim yap\u0131l\u0131r',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Hedefini Belirle',
|
|
133
|
+
'text': 'Saatin ad\u0131n\u0131 ve vergiler ile kargo dahil toplam fiyat\u0131n\u0131 girin.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Birikimini Takip Et',
|
|
138
|
+
'text': 'Ne kadar biriktirdi\u011fini ve her ay ne kadar ay\u0131rabilece\u011fini kaydet.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': '\u0130lerlemeyi \u0130zle',
|
|
143
|
+
'text': 'Birikimlerini g\u00fcncellerken ilerleme halkas\u0131n\u0131n doldu\u011funu izle.',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': 'Kutla',
|
|
148
|
+
'text': 'Halka %100\u2019e ula\u015ft\u0131\u011f\u0131nda hedefine ula\u015fm\u0131\u015fs\u0131n demektir. O saati alma zaman\u0131!',
|
|
149
|
+
},
|
|
150
|
+
],
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { WatchSavingsPlannerUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<WatchSavingsPlannerUI> = {
|
|
6
|
+
slug: 'watch-savings-planner',
|
|
7
|
+
title: '\u624b\u8868\u8d2d\u4e70\u50a8\u84c4\u8ba1\u5212\u5668',
|
|
8
|
+
description: '\u4e3a\u4e0b\u4e00\u6b21\u624b\u8868\u8d2d\u4e70\u8bbe\u5b9a\u5e76\u8ffd\u8e2a\u50a8\u84c4\u76ee\u6807\u3002\u53ef\u89c6\u5316\u8fdb\u5c55\uff0c\u8ba1\u7b97\u65f6\u95f4\u7ebf\uff0c\u4fdd\u6301\u52a8\u529b\u3002',
|
|
9
|
+
ui: {
|
|
10
|
+
title: '\u50a8\u84c4\u76ee\u6807\u8bbe\u7f6e',
|
|
11
|
+
addGoalTitle: '\u65b0\u5efa\u50a8\u84c4\u76ee\u6807',
|
|
12
|
+
goalNameLabel: '\u624b\u8868',
|
|
13
|
+
goalNamePlaceholder: '\u4f8b\u5982 Rolex Submariner',
|
|
14
|
+
targetPriceLabel: '\u76ee\u6807\u4ef7\u683c',
|
|
15
|
+
currentSavingsLabel: '\u5df2\u50a8\u84c4',
|
|
16
|
+
monthlyLabel: '\u6bcf\u6708',
|
|
17
|
+
addButton: '\u6dfb\u52a0\u76ee\u6807',
|
|
18
|
+
cancelButton: '\u53d6\u6d88',
|
|
19
|
+
goalsEmpty: '\u5c1a\u65e0\u50a8\u84c4\u76ee\u6807',
|
|
20
|
+
goalsEmptySub: '\u8bbe\u5b9a\u4f60\u7684\u7b2c\u4e00\u4e2a\u624b\u8868\u76ee\u6807\uff0c\u5f00\u59cb\u50a8\u84c4\u5427\uff01',
|
|
21
|
+
monthsToGoal: '\u8ddd\u76ee\u6807\u5269\u4f59\u65f6\u95f4',
|
|
22
|
+
yearsToGoal: '\u8ddd\u76ee\u6807\u5269\u4f59\u5e74\u6570',
|
|
23
|
+
month: '\u4e2a\u6708',
|
|
24
|
+
months: '\u4e2a\u6708',
|
|
25
|
+
year: '\u5e74',
|
|
26
|
+
totalSaved: '\u7d2f\u8ba1\u50a8\u84c4',
|
|
27
|
+
totalGoals: '\u76ee\u6807\u6570',
|
|
28
|
+
achieved: '\u5df2\u8fbe\u6210',
|
|
29
|
+
percentLabel: '\u50a8\u84c4\u6bd4\u4f8b',
|
|
30
|
+
deleteGoal: '\u5220\u9664',
|
|
31
|
+
editGoal: '\u7f16\u8f91',
|
|
32
|
+
saveGoal: '\u4fdd\u5b58',
|
|
33
|
+
currency: 'CNY',
|
|
34
|
+
summaryTitle: '\u6458\u8981',
|
|
35
|
+
goalAchieved: '\u5df2\u8fbe\u6210\uff01',
|
|
36
|
+
goalProgress: '\u8fdb\u5c55',
|
|
37
|
+
congratsTitle: '\u606d\u559c\uff01',
|
|
38
|
+
congratsDesc: '\u4f60\u5df2\u8fbe\u6210\u50a8\u84c4\u76ee\u6807\uff01',
|
|
39
|
+
monthlyContribution: '\u6bcf\u6708\u5b58\u6b3e',
|
|
40
|
+
targetDate: '\u76ee\u6807\u65e5\u671f',
|
|
41
|
+
adjustMonthly: '\u8c03\u6574\u6bcf\u6708\u5b58\u6b3e',
|
|
42
|
+
},
|
|
43
|
+
seo: [
|
|
44
|
+
{ type: 'title', text: '\u624b\u8868\u8d2d\u4e70\u50a8\u84c4\u8ba1\u5212\u5668 \u2014 \u8ffd\u8e2a\u4f60\u7684\u4e0b\u4e00\u53ea\u624b\u8868', level: 2 },
|
|
45
|
+
{ type: 'paragraph', html: '\u4e3a\u624b\u8868\u50a8\u84c4\u662f\u4e00\u6bb5\u65c5\u7a0b\u3002\u65e0\u8bba\u662f<strong>\u7ecf\u5178\u6b3e Speedmaster</strong>\u3001<strong>Submariner</strong>\u8fd8\u662f<strong>Grand Seiko</strong>\uff0c\u4e00\u4e2a\u6e05\u6670\u7684\u50a8\u84c4\u8ba1\u5212\u80fd\u5c06\u68a6\u60f3\u53d8\u4e3a\u65f6\u95f4\u8868\u3002\u8fd9\u4e2a\u5de5\u5177\u5c06\u5e2e\u4f60\u53ef\u89c6\u5316\u8fdb\u5c55\u3001\u8c03\u6574\u6bcf\u6708\u50a8\u84c4\u989d\u5ea6\uff0c\u5e76\u7cbe\u786e\u770b\u5230\u4f55\u65f6\u80fd\u5e26\u7740\u4f60\u7684\u68a6\u4e2d\u60c5\u4eba\u8d70\u51fa\u7cbe\u54c1\u5e97\u3002' },
|
|
46
|
+
{ type: 'title', text: '\u4e3a\u4ec0\u4e48\u50a8\u84c4\u8ba1\u5212\u5bf9\u624b\u8868\u6536\u85cf\u5bb6\u5f88\u91cd\u8981', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: '\u624b\u8868\u6536\u85cf\u662f\u4e00\u573a\u8010\u5fc3\u7684\u6e38\u620f\u3002\u70ed\u95e8\u6b3e\u7684\u4ef7\u683c\u7a33\u6b65\u4e0a\u6da8\uff0c\u51b2\u52a8\u6d88\u8d39\u5f80\u5f80\u5e26\u6765\u540e\u6094\u3002\u7ed3\u6784\u5316\u7684\u50a8\u84c4\u65b9\u5f0f\u80fd\u8ba9\u4f60\u4fdd\u6301\u7eaa\u5f8b\uff0c\u907f\u514d\u8d22\u52a1\u538b\u529b\uff0c\u8ba9\u6700\u7ec8\u7684\u8d2d\u4e70\u53d8\u5f97\u66f4\u6709\u6210\u5c31\u611f\u3002\u6b64\u5916\uff0c\u6bcf\u5929\u8ffd\u8e2a\u8fdb\u5c55\u8fd8\u80fd\u589e\u5f3a\u671f\u5f85\u611f\uff0c\u8ba9\u5f00\u7bb1\u7684\u77ac\u95f4\u66f4\u52a0\u7f8e\u597d\u3002' },
|
|
48
|
+
{ type: 'title', text: '\u5982\u4f55\u8bbe\u5b9a\u73b0\u5b9e\u7684\u624b\u8868\u50a8\u84c4\u76ee\u6807', level: 3 },
|
|
49
|
+
{ type: 'paragraph', html: '\u4ece\u5305\u542b\u7a0e\u8d39\u548c\u8fd0\u8d39\u5728\u5185\u7684\u603b\u4ef7\u5f00\u59cb\u3002\u7136\u540e\u9664\u4ee5\u6bcf\u6708\u80fd\u8f7b\u677e\u5252\u51fa\u7684\u91d1\u989d\u3002\u4e00\u4e2a\u597d\u7684\u539f\u5219\u662f\u5c06\u4e0d\u8d85\u8fc7<strong>\u53ef\u652f\u914d\u6536\u5165\u768410\u201315%</strong>\u7528\u4e8e\u624b\u8868\u50a8\u84c4\u3002\u5982\u679c\u65f6\u95f4\u7ebf\u592a\u957f\uff0c\u53ef\u4ee5\u8003\u8651\u5c06\u5176\u62c6\u5206\u4e3a\u66f4\u5c0f\u7684\u91cc\u7a0b\u7891\u2014\u2014\u6216\u8005\u63a2\u7d22\u540c\u6837\u98ce\u683c\u5bb6\u65cf\u4e2d\u66f4\u5177\u6027\u4ef7\u6bd4\u7684\u66ff\u4ee3\u54c1\u3002' },
|
|
50
|
+
{ type: 'title', text: '\u76ee\u6807\u8ffd\u8e2a\u7684\u5fc3\u7406\u5b66', level: 3 },
|
|
51
|
+
{ type: 'paragraph', html: '\u53ef\u89c6\u5316\u8fdb\u5c55\u8ffd\u8e2a\u4f1a\u89e6\u53d1\u591a\u5df4\u80fa\u91ca\u653e\u2014\u2014\u8fd9\u4e5f\u662f\u8ba9\u6536\u85cf\u5982\u6b64\u4ee4\u4eba\u6ee1\u8db3\u7684\u795e\u7ecf\u4f20\u5bfc\u7269\u8d28\u3002\u6bcf\u5f53\u4f60\u8bb0\u5f55\u4e00\u7b14\u65b0\u7684\u50a8\u84c4\u5e76\u770b\u5230\u8fdb\u5c55\u73af\u88ab\u586b\u6ee1\u65f6\uff0c\u4f60\u90fd\u5728\u5f3a\u5316\u8fd9\u4e2a\u4e60\u60ef\u3002\u8fd9\u5c31\u662f\u4e3a\u4ec0\u4e48\u5c0f\u989d\u3001\u5b9a\u671f\u7684\u50a8\u84c4\u5f80\u5f80\u6bd4\u95f4\u6b47\u6027\u5927\u989d\u5b58\u6b3e\u66f4\u6709\u6548\u7684\u539f\u56e0\u2014\u2014\u4eea\u5f0f\u611f\u672c\u8eab\u5c31\u6210\u4e3a\u4e86\u6536\u85cf\u4f53\u9a8c\u7684\u4e00\u90e8\u5206\u3002' },
|
|
52
|
+
],
|
|
53
|
+
faq: [
|
|
54
|
+
{
|
|
55
|
+
question: '\u6bcf\u4e2a\u6708\u5e94\u8be5\u50a8\u84c4\u591a\u5c11\u94b1\u6765\u4e70\u624b\u8868\uff1f',
|
|
56
|
+
answer: '\u5efa\u8bae\u76ee\u6807\u4e3a\u53ef\u652f\u914d\u6708\u6536\u5165\u768410\u201315%\u3002\u5173\u952e\u5728\u4e8e\u6301\u4e4b\u4ee5\u6052\u2014\u2014\u5373\u4f7f\u6bcf\u6708100\u7f8e\u5143\uff0c\u4e00\u5e74\u4e5f\u80fd\u7d2f\u8ba11,200\u7f8e\u5143\u3002\u6839\u636e\u4f60\u7684\u65f6\u95f4\u7ebf\u8c03\u6574\u91d1\u989d\uff1a\u77ed\u671f\u76ee\u6807\u9700\u8981\u66f4\u9ad8\u7684\u6bcf\u6708\u50a8\u84c4\u989d\u5ea6\u3002',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: '\u5e94\u8be5\u4e13\u6ce8\u50a8\u84c4\u4e00\u53ea\u624b\u8868\uff0c\u8fd8\u662f\u540c\u65f6\u50a8\u84c4\u591a\u53ea\uff1f',
|
|
60
|
+
answer: '\u901a\u5e38\u4e00\u53ea\u4e00\u53ea\u5730\u50a8\u84c4\u66f4\u6709\u6548\u3002\u4e13\u6ce8\u80fd\u5851\u9020\u52a8\u529b\u3002\u4e00\u65e6\u8fbe\u6210\u7b2c\u4e00\u4e2a\u76ee\u6807\uff0c\u4fe1\u5fc3\u548c\u7eaa\u5f8b\u4f1a\u81ea\u7136\u8f6c\u79fb\u5230\u4e0b\u4e00\u4e2a\u3002\u4e0d\u8fc7\uff0c\u8fd9\u4e2a\u8ba1\u5212\u5668\u652f\u6301\u591a\u4e2a\u76ee\u6807\uff0c\u4f60\u53ef\u4ee5\u6bd4\u8f83\u5404\u81ea\u7684\u65f6\u95f4\u7ebf\u3002',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: '\u5982\u679c\u6211\u50a8\u84c4\u671f\u95f4\u624b\u8868\u6da8\u4ef7\u4e86\u600e\u4e48\u529e\uff1f',
|
|
64
|
+
answer: '\u597d\u95ee\u9898\u3002\u6bcf\u9694\u51e0\u4e2a\u6708\u68c0\u67e5\u4e00\u4e0b\u5f53\u524d\u5e02\u573a\u4ef7\u683c\uff0c\u5e76\u66f4\u65b0\u4f60\u7684\u76ee\u6807\u3002\u5982\u679c\u4ef7\u683c\u6da8\u5f97\u5feb\uff0c\u53ef\u4ee5\u8003\u8651\u589e\u52a0\u6bcf\u6708\u50a8\u84c4\u989d\u5ea6\u6216\u7f29\u77ed\u65f6\u95f4\u7ebf\uff0c\u4ee5\u9501\u5b9a\u5f53\u524d\u4ef7\u683c\u3002',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: '\u8bbe\u5b9a\u76ee\u6807',
|
|
71
|
+
text: '\u8f93\u5165\u624b\u8868\u540d\u79f0\u53ca\u5176\u603b\u4ef7\uff0c\u5305\u62ec\u7a0e\u8d39\u548c\u8fd0\u8d39\u3002',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: '\u8ffd\u8e2a\u50a8\u84c4',
|
|
75
|
+
text: '\u8bb0\u5f55\u4f60\u5df2\u7ecf\u50a8\u84c4\u7684\u91d1\u989d\u548c\u6bcf\u6708\u80fd\u5252\u51fa\u7684\u91d1\u989d\u3002',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: '\u76d1\u63a7\u8fdb\u5c55',
|
|
79
|
+
text: '\u968f\u7740\u4f60\u66f4\u65b0\u50a8\u84c4\uff0c\u89c2\u770b\u8fdb\u5c55\u73af\u9010\u6e10\u88ab\u586b\u6ee1\u3002\u53ef\u968f\u65f6\u8c03\u6574\u6bcf\u6708\u50a8\u84c4\u989d\u5ea6\u3002',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: '\u5e86\u795d',
|
|
83
|
+
text: '\u5f53\u8fdb\u5c55\u73af\u8fbe\u5230100%\uff0c\u4f60\u5c31\u5df2\u8fbe\u6210\u76ee\u6807\u3002\u662f\u65f6\u5019\u4e70\u4e0b\u90a3\u53ea\u624b\u8868\u4e86\uff01',
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
schemas: [
|
|
87
|
+
{
|
|
88
|
+
'@context': 'https://schema.org',
|
|
89
|
+
'@type': 'FAQPage',
|
|
90
|
+
'mainEntity': [
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': '\u6bcf\u4e2a\u6708\u5e94\u8be5\u50a8\u84c4\u591a\u5c11\u94b1\u6765\u4e70\u624b\u8868\uff1f',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '\u5efa\u8bae\u76ee\u6807\u4e3a\u53ef\u652f\u914d\u6708\u6536\u5165\u768410\u201315%\u3002\u5173\u952e\u5728\u4e8e\u6301\u4e4b\u4ee5\u6052\u2014\u2014\u5373\u4f7f\u6bcf\u6708100\u7f8e\u5143\uff0c\u4e00\u5e74\u4e5f\u80fd\u7d2f\u8ba11,200\u7f8e\u5143\u3002',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': '\u5e94\u8be5\u4e13\u6ce8\u50a8\u84c4\u4e00\u53ea\u624b\u8868\uff0c\u8fd8\u662f\u540c\u65f6\u50a8\u84c4\u591a\u53ea\uff1f',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': '\u901a\u5e38\u4e00\u53ea\u4e00\u53ea\u5730\u50a8\u84c4\u66f4\u6709\u6548\u3002\u4e13\u6ce8\u80fd\u5851\u9020\u52a8\u529b\u3002\u4e00\u65e6\u8fbe\u6210\u7b2c\u4e00\u4e2a\u76ee\u6807\uff0c\u5c06\u90a3\u79cd\u7eaa\u5f8b\u5e26\u5230\u4e0b\u4e00\u4e2a\u76ee\u6807\u3002',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': '\u5982\u679c\u6211\u50a8\u84c4\u671f\u95f4\u624b\u8868\u6da8\u4ef7\u4e86\u600e\u4e48\u529e\uff1f',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': '\u6bcf\u9694\u51e0\u4e2a\u6708\u68c0\u67e5\u4e00\u4e0b\u5f53\u524d\u5e02\u573a\u4ef7\u683c\uff0c\u5e76\u66f4\u65b0\u4f60\u7684\u76ee\u6807\u3002\u5982\u679c\u4ef7\u683c\u4e0a\u6da8\u5feb\uff0c\u8bf7\u8003\u8651\u589e\u52a0\u6bcf\u6708\u50a8\u84c4\u989d\u5ea6\u3002',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': '\u624b\u8868\u8d2d\u4e70\u50a8\u84c4\u8ba1\u5212\u5668',
|
|
121
|
+
'operatingSystem': '\u5168\u90e8',
|
|
122
|
+
'applicationCategory': 'FinanceApplication',
|
|
123
|
+
'browserRequirements': '\u9700\u8981HTML5\u3002\u9700\u8981JavaScript\u3002',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': '\u5982\u4f55\u50a8\u84c4\u8d2d\u4e70\u624b\u8868',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': '\u8bbe\u5b9a\u76ee\u6807',
|
|
133
|
+
'text': '\u8f93\u5165\u624b\u8868\u540d\u79f0\u53ca\u5176\u603b\u4ef7\uff0c\u5305\u62ec\u7a0e\u8d39\u548c\u8fd0\u8d39\u3002',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': '\u8ffd\u8e2a\u50a8\u84c4',
|
|
138
|
+
'text': '\u8bb0\u5f55\u4f60\u5df2\u7ecf\u50a8\u84c4\u7684\u91d1\u989d\u548c\u6bcf\u6708\u80fd\u5252\u51fa\u7684\u91d1\u989d\u3002',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': '\u76d1\u63a7\u8fdb\u5c55',
|
|
143
|
+
'text': '\u968f\u7740\u4f60\u66f4\u65b0\u50a8\u84c4\uff0c\u89c2\u770b\u8fdb\u5c55\u73af\u9010\u6e10\u88ab\u586b\u6ee1\u3002',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': '\u5e86\u795d',
|
|
148
|
+
'text': '\u5f53\u8fdb\u5c55\u73af\u8fbe\u5230100%\uff0c\u4f60\u5c31\u5df2\u8fbe\u6210\u76ee\u6807\u3002\u662f\u65f6\u5019\u4e70\u4e0b\u90a3\u53ea\u624b\u8868\u4e86\uff01',
|
|
149
|
+
},
|
|
150
|
+
],
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ToolDefinition } from '../../types';
|
|
2
|
+
import { watchSavingsPlanner } from './entry';
|
|
3
|
+
|
|
4
|
+
export * from './entry';
|
|
5
|
+
|
|
6
|
+
export const WATCH_SAVINGS_PLANNER_TOOL: ToolDefinition = {
|
|
7
|
+
entry: watchSavingsPlanner,
|
|
8
|
+
Component: () => import('./component.astro'),
|
|
9
|
+
SEOComponent: () => import('./seo.astro'),
|
|
10
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
11
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { watchSavingsPlanner } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'en' } = Astro.props;
|
|
11
|
+
const loader = watchSavingsPlanner.i18n[locale] || watchSavingsPlanner.i18n.en;
|
|
12
|
+
const content = await loader?.();
|
|
13
|
+
if (!content) return null;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
{content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
File without changes
|