@jjlmoya/utils-tabletop 1.3.0 → 1.5.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/TabletopCategorySEO.astro +2 -7
- package/src/category/i18n/en.ts +4 -4
- package/src/category/i18n/ru.ts +2 -2
- package/src/category/i18n/zh.ts +8 -8
- package/src/category/index.ts +2 -1
- package/src/entries.ts +14 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +7 -6
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/no_em_dash.test.ts +47 -0
- package/src/tests/seo_length.test.ts +1 -0
- package/src/tests/title_quality.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +1 -1
- package/src/tool/board-game-timer/modules/ColorHelper.ts +2 -2
- package/src/tool/board-game-timer/modules/DuelViewManager.ts +4 -4
- package/src/tool/board-game-timer/modules/GameRunner.ts +1 -1
- package/src/tool/board-game-timer/modules/MultiplayerViewManager.ts +2 -2
- package/src/tool/board-game-timer/modules/SetupPanelManager.ts +1 -1
- package/src/tool/board-game-timer/modules/TimerEngine.ts +1 -1
- package/src/tool/board-game-timer/types.ts +1 -1
- package/src/tool/decision-wheel/audio.ts +78 -0
- package/src/tool/decision-wheel/bibliography.astro +16 -0
- package/src/tool/decision-wheel/bibliography.ts +8 -0
- package/src/tool/decision-wheel/client.ts +226 -0
- package/src/tool/decision-wheel/component.astro +48 -0
- package/src/tool/decision-wheel/components/SegmentEditor.astro +22 -0
- package/src/tool/decision-wheel/components/SpinHistory.astro +17 -0
- package/src/tool/decision-wheel/components/SpinResult.astro +13 -0
- package/src/tool/decision-wheel/components/WheelCanvas.astro +23 -0
- package/src/tool/decision-wheel/decision-wheel.css +632 -0
- package/src/tool/decision-wheel/drawing.ts +144 -0
- package/src/tool/decision-wheel/entry.ts +48 -0
- package/src/tool/decision-wheel/i18n/de.ts +97 -0
- package/src/tool/decision-wheel/i18n/en.ts +251 -0
- package/src/tool/decision-wheel/i18n/es.ts +93 -0
- package/src/tool/decision-wheel/i18n/fr.ts +93 -0
- package/src/tool/decision-wheel/i18n/id.ts +93 -0
- package/src/tool/decision-wheel/i18n/it.ts +93 -0
- package/src/tool/decision-wheel/i18n/ja.ts +93 -0
- package/src/tool/decision-wheel/i18n/ko.ts +93 -0
- package/src/tool/decision-wheel/i18n/nl.ts +93 -0
- package/src/tool/decision-wheel/i18n/pl.ts +93 -0
- package/src/tool/decision-wheel/i18n/pt.ts +93 -0
- package/src/tool/decision-wheel/i18n/ru.ts +75 -0
- package/src/tool/decision-wheel/i18n/sv.ts +93 -0
- package/src/tool/decision-wheel/i18n/tr.ts +93 -0
- package/src/tool/decision-wheel/i18n/zh.ts +93 -0
- package/src/tool/decision-wheel/index.ts +9 -0
- package/src/tool/decision-wheel/logic.test.ts +163 -0
- package/src/tool/decision-wheel/logic.ts +145 -0
- package/src/tool/decision-wheel/seo.astro +16 -0
- package/src/tool/decision-wheel/types.ts +14 -0
- package/src/tool/decision-wheel/ui.ts +121 -0
- package/src/tool/dice-roller-simulator/client.ts +2 -2
- package/src/tool/dice-roller-simulator/i18n/ru.ts +8 -8
- package/src/tool/dice-roller-simulator/modules/history.ts +1 -1
- package/src/tool/fantasy-runes-translator/bibliography.astro +16 -0
- package/src/tool/fantasy-runes-translator/bibliography.ts +16 -0
- package/src/tool/fantasy-runes-translator/client.ts +205 -0
- package/src/tool/fantasy-runes-translator/component.astro +95 -0
- package/src/tool/fantasy-runes-translator/entry.ts +56 -0
- package/src/tool/fantasy-runes-translator/fantasy-runes-translator.css +712 -0
- package/src/tool/fantasy-runes-translator/i18n/de.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/en.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/es.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/fr.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/id.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/it.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/ja.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/ko.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/nl.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/pl.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/pt.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/ru.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/sv.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/tr.ts +139 -0
- package/src/tool/fantasy-runes-translator/i18n/zh.ts +139 -0
- package/src/tool/fantasy-runes-translator/index.ts +9 -0
- package/src/tool/fantasy-runes-translator/logic.ts +174 -0
- package/src/tool/fantasy-runes-translator/seo.astro +16 -0
- package/src/tool/fantasy-runes-translator/types.ts +26 -0
- package/src/tool/first-player-selector/bibliography.astro +16 -0
- package/src/tool/first-player-selector/bibliography.ts +12 -0
- package/src/tool/first-player-selector/client.ts +197 -0
- package/src/tool/first-player-selector/component.astro +77 -0
- package/src/tool/first-player-selector/entry.ts +42 -0
- package/src/tool/first-player-selector/first-player-selector.css +303 -0
- package/src/tool/first-player-selector/i18n/de.ts +226 -0
- package/src/tool/first-player-selector/i18n/en.ts +226 -0
- package/src/tool/first-player-selector/i18n/es.ts +226 -0
- package/src/tool/first-player-selector/i18n/fr.ts +227 -0
- package/src/tool/first-player-selector/i18n/id.ts +226 -0
- package/src/tool/first-player-selector/i18n/it.ts +227 -0
- package/src/tool/first-player-selector/i18n/ja.ts +227 -0
- package/src/tool/first-player-selector/i18n/ko.ts +227 -0
- package/src/tool/first-player-selector/i18n/nl.ts +226 -0
- package/src/tool/first-player-selector/i18n/pl.ts +227 -0
- package/src/tool/first-player-selector/i18n/pt.ts +226 -0
- package/src/tool/first-player-selector/i18n/ru.ts +227 -0
- package/src/tool/first-player-selector/i18n/sv.ts +226 -0
- package/src/tool/first-player-selector/i18n/tr.ts +226 -0
- package/src/tool/first-player-selector/i18n/zh.ts +227 -0
- package/src/tool/first-player-selector/index.ts +9 -0
- package/src/tool/first-player-selector/modules/AnimationEffects.ts +256 -0
- package/src/tool/first-player-selector/modules/SelectionEngine.ts +249 -0
- package/src/tool/first-player-selector/modules/SoundEffects.ts +87 -0
- package/src/tool/first-player-selector/modules/TouchTracker.ts +148 -0
- package/src/tool/first-player-selector/seo.astro +16 -0
- package/src/tool/first-player-selector/types.ts +21 -0
- package/src/tool/rpg-initiative-tracker/bibliography.astro +16 -0
- package/src/tool/rpg-initiative-tracker/bibliography.ts +12 -0
- package/src/tool/rpg-initiative-tracker/client.ts +201 -0
- package/src/tool/rpg-initiative-tracker/component.astro +23 -0
- package/src/tool/rpg-initiative-tracker/components/AddForm.astro +49 -0
- package/src/tool/rpg-initiative-tracker/components/CombatantList.astro +16 -0
- package/src/tool/rpg-initiative-tracker/components/TurnControls.astro +28 -0
- package/src/tool/rpg-initiative-tracker/entry.ts +50 -0
- package/src/tool/rpg-initiative-tracker/i18n/de.ts +266 -0
- package/src/tool/rpg-initiative-tracker/i18n/en.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/es.ts +264 -0
- package/src/tool/rpg-initiative-tracker/i18n/fr.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/id.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/it.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/ja.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/ko.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/nl.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/pl.ts +264 -0
- package/src/tool/rpg-initiative-tracker/i18n/pt.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/ru.ts +264 -0
- package/src/tool/rpg-initiative-tracker/i18n/sv.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/tr.ts +263 -0
- package/src/tool/rpg-initiative-tracker/i18n/zh.ts +263 -0
- package/src/tool/rpg-initiative-tracker/index.ts +9 -0
- package/src/tool/rpg-initiative-tracker/logic.test.ts +121 -0
- package/src/tool/rpg-initiative-tracker/logic.ts +122 -0
- package/src/tool/rpg-initiative-tracker/rpg-initiative-tracker.css +617 -0
- package/src/tool/rpg-initiative-tracker/seo.astro +16 -0
- package/src/tool/rpg-initiative-tracker/types.ts +15 -0
- package/src/tool/score-tracker/bibliography.astro +16 -0
- package/src/tool/score-tracker/bibliography.ts +12 -0
- package/src/tool/score-tracker/client.ts +248 -0
- package/src/tool/score-tracker/component.astro +34 -0
- package/src/tool/score-tracker/components/Leaderboard.astro +19 -0
- package/src/tool/score-tracker/components/PlayerSetup.astro +32 -0
- package/src/tool/score-tracker/components/RoundScoring.astro +22 -0
- package/src/tool/score-tracker/components/ScoreHistory.astro +25 -0
- package/src/tool/score-tracker/entry.ts +57 -0
- package/src/tool/score-tracker/i18n/de.ts +278 -0
- package/src/tool/score-tracker/i18n/en.ts +278 -0
- package/src/tool/score-tracker/i18n/es.ts +251 -0
- package/src/tool/score-tracker/i18n/fr.ts +278 -0
- package/src/tool/score-tracker/i18n/id.ts +278 -0
- package/src/tool/score-tracker/i18n/it.ts +278 -0
- package/src/tool/score-tracker/i18n/ja.ts +278 -0
- package/src/tool/score-tracker/i18n/ko.ts +278 -0
- package/src/tool/score-tracker/i18n/nl.ts +278 -0
- package/src/tool/score-tracker/i18n/pl.ts +278 -0
- package/src/tool/score-tracker/i18n/pt.ts +278 -0
- package/src/tool/score-tracker/i18n/ru.ts +278 -0
- package/src/tool/score-tracker/i18n/sv.ts +278 -0
- package/src/tool/score-tracker/i18n/tr.ts +278 -0
- package/src/tool/score-tracker/i18n/zh.ts +278 -0
- package/src/tool/score-tracker/index.ts +9 -0
- package/src/tool/score-tracker/logic.test.ts +83 -0
- package/src/tool/score-tracker/logic.ts +122 -0
- package/src/tool/score-tracker/score-tracker.css +1029 -0
- package/src/tool/score-tracker/seo.astro +16 -0
- package/src/tool/score-tracker/types.ts +17 -0
- package/src/tools.ts +10 -0
- package/src/types.ts +1 -2
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { FantasyRunesTranslatorUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const ui: FantasyRunesTranslatorUI = {
|
|
6
|
+
title: 'Penerjemah Rune Fantasi',
|
|
7
|
+
inputPlaceholder: 'Ketik kata atau nama untuk diterjemahkan...',
|
|
8
|
+
alphabetLabel: 'Alfabet Rune',
|
|
9
|
+
elderFuthark: 'Elder Futhark',
|
|
10
|
+
angloSaxon: 'Anglo-Saxon',
|
|
11
|
+
fantasy: 'Skrip Fantasi',
|
|
12
|
+
theban: 'Theban',
|
|
13
|
+
enochian: 'Henokian',
|
|
14
|
+
daemonic: 'Daemonik',
|
|
15
|
+
ogham: 'Ogham',
|
|
16
|
+
translate: 'Terjemahkan',
|
|
17
|
+
clear: 'Hapus',
|
|
18
|
+
copy: 'Salin Teks',
|
|
19
|
+
copied: 'Tersalin!',
|
|
20
|
+
runeName: 'Nama',
|
|
21
|
+
runeMeaning: 'Makna',
|
|
22
|
+
runePhonetic: 'Fonetik',
|
|
23
|
+
clickHint: 'Klik rune untuk melihat detailnya',
|
|
24
|
+
outputLabel: 'Hasil Rune',
|
|
25
|
+
noInput: 'Masukkan teks di atas untuk diterjemahkan ke dalam rune',
|
|
26
|
+
unknownChar: '?',
|
|
27
|
+
gmMode: 'Mode GM',
|
|
28
|
+
exitGmMode: 'Keluar',
|
|
29
|
+
gmHint: 'Tampilkan ini kepada pemain Anda',
|
|
30
|
+
seedLabel: 'Bibit',
|
|
31
|
+
seedPlaceholder: 'Opsional',
|
|
32
|
+
seedApplied: 'Terkunci',
|
|
33
|
+
shuffleSeed: 'Acak',
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const faq = [
|
|
37
|
+
{
|
|
38
|
+
question: 'Apa itu Elder Futhark?',
|
|
39
|
+
answer: 'Elder Futhark adalah bentuk tertua dari alfabet rune, digunakan oleh suku-suku Jermanik dari abad ke-2 hingga ke-8. Terdiri dari 24 rune yang dibagi menjadi tiga kelompok delapan yang disebut aettir. Setiap rune memiliki nilai fonetik dan nama simbolis yang mewakili konsep alam atau mitologi.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Apa perbedaan antara Elder Futhark dan rune Anglo-Saxon?',
|
|
43
|
+
answer: 'Futhorc Anglo-Saxon adalah versi lanjutan dari Elder Futhark yang dikembangkan di Inggris. Ini menambahkan rune tambahan untuk mewakili suara khusus bahasa Inggris Kuno, berkembang dari 24 hingga 33 karakter. Makna dan nilai fonetik juga berubah seiring waktu.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
question: 'Apakah penerjemah ini mengonversi kata dengan sempurna?',
|
|
47
|
+
answer: 'Alat ini menyediakan transliterasi huruf-per-huruf ke dalam simbol rune. Penggunaan rune historis bersifat fonetik, bukan harfiah huruf-per-huruf, sehingga hasilnya adalah interpretasi modern. Opsi Skrip Fantasi menawarkan alfabet fiksi kreatif untuk nuansa RPG meja.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
question: 'Bisakah saya menggunakan rune ini dalam kampanye RPG meja saya?',
|
|
51
|
+
answer: 'Ya! Game master dan pemain dapat menggunakan penerjemah untuk membuat prasasti rune, tulisan magis, pesan rahasia, atau nama dekoratif untuk karakter dan lokasi. Opsi Skrip Fantasi dirancang khusus untuk pengaturan roleplaying fantasi.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
question: 'Apakah alat ini menyimpan teks yang saya ketik?',
|
|
55
|
+
answer: 'Tidak. Semuanya berjalan secara lokal di browser Anda. Tidak ada teks, terjemahan, atau pilihan yang pernah dikirim ke server mana pun. Karya kreatif Anda tetap sepenuhnya pribadi.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
question: 'Apa yang terjadi saat saya mengklik rune?',
|
|
59
|
+
answer: 'Mengklik kartu rune mana pun akan menampilkan nama tradisional, makna simbolis, dan nilai fonetiknya. Ini membantu Anda mempelajari rune dan memilih simbol yang tepat untuk kebutuhan RPG Anda.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo = [
|
|
64
|
+
{
|
|
65
|
+
name: 'Masukkan Teks',
|
|
66
|
+
text: 'Ketik kata, nama, atau frasa bahasa Inggris apa pun ke dalam kolom input. Penerjemah berfungsi paling baik dengan satu kata atau frasa pendek.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Pilih Alfabet',
|
|
70
|
+
text: 'Pilih antara Elder Futhark (Jermanik kuno), Anglo-Saxon (Inggris abad pertengahan), atau Skrip Fantasi (gaya RPG meja).',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'Terjemahkan dan Jelajahi',
|
|
74
|
+
text: 'Klik Terjemahkan untuk mengonversi teks Anda. Setiap rune muncul sebagai kartu. Klik rune mana pun untuk mempelajari nama, makna, dan bunyinya. Gunakan tombol Salin untuk menyimpan teks rune ke clipboard Anda.',
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
|
|
79
|
+
slug: 'penerjemah-rune-fantasi',
|
|
80
|
+
title: 'Penerjemah Rune Fantasi / Konverter Rune Elder Futhark, Theban, Henokian and Daemonik',
|
|
81
|
+
description: 'Terjemahkan teks ke dalam aksara Elder Futhark, Anglo-Saxon Futhorc, Theban, Henokian, Daemonik, Ogham, atau Fantasi. Sempurna untuk teka-teki RPG meja, kampanye, gulungan penyihir, dan rune mistis.',
|
|
82
|
+
ui,
|
|
83
|
+
seo: [
|
|
84
|
+
{ type: 'title', text: 'Alfabet Runik dan Aksara Mistis untuk Worldbuilding RPG Meja', level: 2 },
|
|
85
|
+
{ type: 'paragraph', html: 'Alfabet runik mistis, simbol kuno, dan aksara rahasia menghadirkan imersi tak tertandingi ke dalam permainan roleplaying fantasi meja seperti D&D, Pathfinder, dan Warhammer. Baik Anda membuat reruntuhan kurcaci tersembunyi yang diukir dengan Elder Futhark, mendesain buku sihir arkana berisi aksara bahasa malaikat Henokian, menyebarkan petunjuk sihir menggunakan alfabet Theban, atau menulis pesan daemonik terlarang, generator rune kami mengubah teks bahasa Inggris biasa menjadi simbol bergaya secara waktu nyata. Picu rasa ingin tahu pemain dengan properti fisik, sandi misteri, dan ukiran batu kuno.' },
|
|
86
|
+
{
|
|
87
|
+
type: 'stats',
|
|
88
|
+
items: [
|
|
89
|
+
{ value: '7', label: 'Alfabet Rune' },
|
|
90
|
+
{ value: '150+', label: 'Variasi Simbol' },
|
|
91
|
+
{ value: 'Instan', label: 'Transliterasi Visual' },
|
|
92
|
+
],
|
|
93
|
+
columns: 3,
|
|
94
|
+
},
|
|
95
|
+
{ type: 'title', text: 'Elder Futhark & Anglo-Saxon Futhorc: Rune Jermanik dan Nordik Kuno', level: 2 },
|
|
96
|
+
{ type: 'paragraph', html: 'Berawal dari abad ke-2, Elder Futhark adalah sistem runik tertua, terdiri dari 24 karakter yang mewakili kekuatan dasar alam. Anglo-Saxon Futhorc memperluas sistem ini hingga 33 karakter untuk fonetika bahasa Inggris Kuno. Simbol historis ini sempurna untuk mewakili klan kurcaci, budaya yang terinspirasi mitologi Nordik, ukiran Viking, dan lambang klan barbar dalam pengaturan kampanye RPG Anda.' },
|
|
97
|
+
{ type: 'title', text: 'Theban & Ogham: Alfabet Sihir Abad Pertengahan dan Pohon Celtic', level: 2 },
|
|
98
|
+
{ type: 'paragraph', html: 'Sering disebut sebagai Rune Honorius atau Alfabet Penyihir, aksara Theban adalah sandi abad pertengahan yang populer dalam tradisi okultisme dan Wicca. Ogham, alfabet abad pertengahan awal, menggunakan goresan linier yang diukir di sepanjang tepi, terkenal terkait dengan cerita rakyat Celtic dan sihir pohon druid. Gunakan aksara ini untuk menghias tempat suci druid, hutan elf, altar pagan, atau pesan tersembunyi dari koven penyihir rahasia.' },
|
|
99
|
+
{ type: 'title', text: 'Aksara Henokian & Daemonik: Bahasa Malaikat dan Jurang Maut', level: 2 },
|
|
100
|
+
{ type: 'paragraph', html: 'Pertama kali dicatat oleh John Dee dan Edward Kelley pada abad ke-16, Henokian adalah bahasa buatan terperinci yang diyakini sebagai bahasa para malaikat. Aksara Daemonik mewakili glyph jurang, pakta gelap, dan tanda infernal. Tingkatkan taruhan naratif kampanye Anda dengan meninggalkan kontrak iblis yang dapat diuraikan, ukiran kultus gelap, dan peninggalan malaikat untuk diselidiki oleh penyihir, paladin, dan pendeta Anda.' },
|
|
101
|
+
{ type: 'title', text: 'Skrip Fantasi Kustom: Alfabet Kreatif Siap Roleplay', level: 2 },
|
|
102
|
+
{ type: 'paragraph', html: 'Untuk dunia yang melampaui sejarah nyata, Skrip Fantasi kustom kami menawarkan serangkaian rune fiksi yang dirancang khusus untuk membangkitkan estetika fantasi tinggi klasik. Setiap rune dirancang untuk menonjol di cetakan game master, peta digital, dan token pemain kustom. Padukan dengan pengacakan berbasis bibit untuk membuat bahasa rahasia yang unik untuk faksi, bangsa, atau dewa kuno yang berbeda.' },
|
|
103
|
+
],
|
|
104
|
+
faq,
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo,
|
|
107
|
+
schemas: [
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
'mainEntity': faq.map((f) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': f.question,
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': f.answer,
|
|
117
|
+
},
|
|
118
|
+
})),
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
'@context': 'https://schema.org',
|
|
122
|
+
'@type': 'SoftwareApplication',
|
|
123
|
+
'name': 'Penerjemah Rune Fantasi',
|
|
124
|
+
'operatingSystem': 'Semua',
|
|
125
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
126
|
+
'browserRequirements': 'Memerlukan HTML5. Memerlukan JavaScript.',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
'@context': 'https://schema.org',
|
|
130
|
+
'@type': 'HowTo',
|
|
131
|
+
'name': 'Cara Menggunakan Penerjemah Rune Fantasi',
|
|
132
|
+
'step': howTo.map((h) => ({
|
|
133
|
+
'@type': 'HowToStep',
|
|
134
|
+
'name': h.name,
|
|
135
|
+
'text': h.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { FantasyRunesTranslatorUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const ui: FantasyRunesTranslatorUI = {
|
|
6
|
+
title: 'Traduttore di Rune Fantasy',
|
|
7
|
+
inputPlaceholder: 'Scrivi una parola o un nome da tradurre...',
|
|
8
|
+
alphabetLabel: 'Alfabeto Runico',
|
|
9
|
+
elderFuthark: 'Futhark Antico',
|
|
10
|
+
angloSaxon: 'Anglosassone',
|
|
11
|
+
fantasy: 'Scrittura Fantasy',
|
|
12
|
+
theban: 'Tebano',
|
|
13
|
+
enochian: 'Enochiano',
|
|
14
|
+
daemonic: 'Demoniaco',
|
|
15
|
+
ogham: 'Ogham',
|
|
16
|
+
translate: 'Traduci',
|
|
17
|
+
clear: 'Cancella',
|
|
18
|
+
copy: 'Copia testo',
|
|
19
|
+
copied: 'Copiato!',
|
|
20
|
+
runeName: 'Nome',
|
|
21
|
+
runeMeaning: 'Significato',
|
|
22
|
+
runePhonetic: 'Fonetico',
|
|
23
|
+
clickHint: 'Clicca una runa per vedere i dettagli',
|
|
24
|
+
outputLabel: 'Output runico',
|
|
25
|
+
noInput: 'Inserisci il testo sopra per tradurlo in rune',
|
|
26
|
+
unknownChar: '?',
|
|
27
|
+
gmMode: 'Modalità GM',
|
|
28
|
+
exitGmMode: 'Esci',
|
|
29
|
+
gmHint: 'Mostra questo ai tuoi giocatori',
|
|
30
|
+
seedLabel: 'Seme',
|
|
31
|
+
seedPlaceholder: 'Opzionale',
|
|
32
|
+
seedApplied: 'Bloccato',
|
|
33
|
+
shuffleSeed: 'Mescola',
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const faq = [
|
|
37
|
+
{
|
|
38
|
+
question: 'Cos\'è il Futhark Antico?',
|
|
39
|
+
answer: 'Il Futhark Antico è la più antica forma degli alfabeti runici, usato dalle tribù germaniche dal II all\'VIII secolo. È composto da 24 rune divise in tre gruppi di otto chiamati aettir. Ogni runa ha un valore fonetico e un nome simbolico che rappresenta concetti naturali o mitologici.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Qual è la differenza tra il Futhark Antico e le rune anglosassoni?',
|
|
43
|
+
answer: 'Il Futhorc anglosassone è una versione estesa del Futhark Antico sviluppata in Inghilterra. Aggiunge rune supplementari per rappresentare suoni specifici dell\'inglese antico, espandendosi da 24 fino a 33 caratteri. Anche i significati e i valori fonetici sono cambiati nel tempo.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
question: 'Questo traduttore converte le parole perfettamente?',
|
|
47
|
+
answer: 'Questo strumento fornisce una traslitterazione lettera per lettera in simboli runici. L\'uso storico delle rune era fonetico piuttosto che letterale, quindi il risultato è un\'interpretazione moderna. L\'opzione Scrittura Fantasy offre un alfabeto narrativo creativo per l\'ambientazione dei giochi di ruolo da tavolo.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
question: 'Posso usare queste rune nelle mie campagne di GDR da tavolo?',
|
|
51
|
+
answer: 'Sì! I master e i giocatori possono usare il traduttore per creare iscrizioni runiche, scritti magici, messaggi criptici o nomi decorativi per personaggi e luoghi. L\'opzione Scrittura Fantasy è progettata specificamente per ambientazioni fantasy.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
question: 'Questo strumento memorizza il testo che inserisco?',
|
|
55
|
+
answer: 'No. Tutto funziona localmente nel tuo browser. Nessun testo, traduzione o selezione viene mai inviato a un server. Il tuo lavoro creativo rimane completamente privato.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
question: 'Cosa succede quando clicco su una runa?',
|
|
59
|
+
answer: 'Cliccando su qualsiasi carta runa viene mostrato il suo nome tradizionale, il significato simbolico e il valore fonetico. Questo ti aiuta a imparare le rune e scegliere il simbolo giusto per le tue esigenze di GDR.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo = [
|
|
64
|
+
{
|
|
65
|
+
name: 'Inserisci testo',
|
|
66
|
+
text: 'Scrivi qualsiasi parola, nome o frase in inglese nel campo di input. Il traduttore funziona meglio con parole singole o frasi brevi.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Seleziona un alfabeto',
|
|
70
|
+
text: 'Scegli tra Futhark Antico (germanico antico), Anglosassone (inglese medievale) o Scrittura Fantasy (stile GDR da tavolo).',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'Traduci ed esplora',
|
|
74
|
+
text: 'Clicca su Traduci per convertire il tuo testo. Ogni runa appare come una carta. Clicca su qualsiasi runa per scoprire il suo nome, significato e suono. Usa il pulsante Copia per salvare il testo runico negli appunti.',
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
|
|
79
|
+
slug: 'traduttore-rune-fantasy',
|
|
80
|
+
title: 'Traduttore di Rune Fantasy / Convertitore di Rune Futhark Antico, Tebano, Enochiano e Demoniaco',
|
|
81
|
+
description: 'Traduci testo in Futhark Antico, Futhorc Anglosassone, Tebano, Enochiano, Demoniaco, Ogham o scritture fantasy. Perfetto per enigmi di GDR da tavolo, campagne, pergamene magiche e rune mistiche.',
|
|
82
|
+
ui,
|
|
83
|
+
seo: [
|
|
84
|
+
{ type: 'title', text: 'Alfabeti Runici e Scritture Mistiche per la Creazione di Mondi nei GDR da Tavolo', level: 2 },
|
|
85
|
+
{ type: 'paragraph', html: 'Gli alfabeti runici mistici, i simboli antichi e le scritture segrete portano un\'immersione senza pari ai giochi di ruolo fantasy da tavolo come D&D, Pathfinder e Warhammer. Che tu stia creando rovine nane nascoste incise con il Futhark Antico, progettando un grimorio arcano con scritture angeliche enochiane, spargendo indizi da strega con l\'alfabeto tebano o scrivendo messaggi demoniaci proibiti, il nostro generatore di rune trasforma il testo inglese standard in simboli stilizzati in tempo reale. Stimola la curiosità dei giocatori con oggetti di scena fisici, cifrari misteriosi e antiche incisioni su pietra.' },
|
|
86
|
+
{
|
|
87
|
+
type: 'stats',
|
|
88
|
+
items: [
|
|
89
|
+
{ value: '7', label: 'Alfabeti Runici' },
|
|
90
|
+
{ value: '150+', label: 'Variazioni di Simboli' },
|
|
91
|
+
{ value: 'Istantanea', label: 'Traslit. Visiva' },
|
|
92
|
+
],
|
|
93
|
+
columns: 3,
|
|
94
|
+
},
|
|
95
|
+
{ type: 'title', text: 'Futhark Antico e Futhorc Anglosassone: Rune Germaniche e Nordiche', level: 2 },
|
|
96
|
+
{ type: 'paragraph', html: 'Risalente al II secolo, il Futhark Antico è il più antico sistema runico, composto da 24 caratteri che rappresentano le forze fondamentali della natura. Il Futhorc anglosassone ha esteso questo sistema fino a includere 33 caratteri per la fonetica dell\'inglese antico. Questi simboli storici sono perfetti per rappresentare clan nanici, culture ispirate alla mitologia norrena, incisioni vichinghe e insegne di clan barbari nelle tue campagne di GDR.' },
|
|
97
|
+
{ type: 'title', text: 'Tebano e Ogham: Alfabeti di Stregoneria Medievale e Alberi Celtico', level: 2 },
|
|
98
|
+
{ type: 'paragraph', html: 'Spesso chiamata le Rune di Onorio o l\'Alfabeto della Strega, la scrittura tebana è un cifrario medievale storicamente popolare usato nelle tradizioni occulte e nella Wicca. L\'Ogham, un alfabeto altomedievale, utilizza tratti lineari incisi lungo i bordi, famosamente legato al folklore celtico e alla magia arborea druidica. Usa queste scritture per abbellire santuari druidici, foreste elfiche, altari pagani o messaggi nascosti di congre di streghe.' },
|
|
99
|
+
{ type: 'title', text: 'Enochiano e Scritture Demoniache: Linguaggi Angelici e Abissali', level: 2 },
|
|
100
|
+
{ type: 'paragraph', html: 'Registrato per la prima volta da John Dee e Edward Kelley nel XVI secolo, l\'Enochiano è un linguaggio costruito dettagliato ritenuto essere la lingua degli angeli. Le scritture demoniache rappresentano glifi abissali, patti oscuri e marchi infernali. Alza la posta narrativa della tua campagna lasciando contratti demoniaci decifrabili, incisioni di culti oscuri e reliquie angeliche per i tuoi maghi, paladini e chierici da investigare.' },
|
|
101
|
+
{ type: 'title', text: 'Scrittura Fantasy Personalizzata: Alfabeti Creativi Pronti per il Gioco', level: 2 },
|
|
102
|
+
{ type: 'paragraph', html: 'Per mondi che vanno oltre la storia reale, la nostra Scrittura Fantasy personalizzata offre un insieme fittizio di rune costruite specificamente per evocare l\'estetica classica dell\'alta fantasia. Ogni runa è progettata per risaltare su stampe del master, mappe digitali e segnalini personalizzati dei giocatori. Abbinala a randomizzazioni basate su seme per creare lingue segrete uniche per diverse fazioni, nazioni o divinità antiche.' },
|
|
103
|
+
],
|
|
104
|
+
faq,
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo,
|
|
107
|
+
schemas: [
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
'mainEntity': faq.map((f) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': f.question,
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': f.answer,
|
|
117
|
+
},
|
|
118
|
+
})),
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
'@context': 'https://schema.org',
|
|
122
|
+
'@type': 'SoftwareApplication',
|
|
123
|
+
'name': 'Traduttore di Rune Fantasy',
|
|
124
|
+
'operatingSystem': 'All',
|
|
125
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
126
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
'@context': 'https://schema.org',
|
|
130
|
+
'@type': 'HowTo',
|
|
131
|
+
'name': 'Come usare il Traduttore di Rune Fantasy',
|
|
132
|
+
'step': howTo.map((h) => ({
|
|
133
|
+
'@type': 'HowToStep',
|
|
134
|
+
'name': h.name,
|
|
135
|
+
'text': h.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { FantasyRunesTranslatorUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const ui: FantasyRunesTranslatorUI = {
|
|
6
|
+
title: 'ファンタジールーン翻訳機',
|
|
7
|
+
inputPlaceholder: '翻訳する単語または名前を入力...',
|
|
8
|
+
alphabetLabel: 'ルーンアルファベット',
|
|
9
|
+
elderFuthark: 'エルダーフサルク',
|
|
10
|
+
angloSaxon: 'アングロサクソン',
|
|
11
|
+
fantasy: 'ファンタジー文字',
|
|
12
|
+
theban: 'テーバン',
|
|
13
|
+
enochian: 'エノク語',
|
|
14
|
+
daemonic: 'デモニック',
|
|
15
|
+
ogham: 'オガム文字',
|
|
16
|
+
translate: '翻訳',
|
|
17
|
+
clear: 'クリア',
|
|
18
|
+
copy: 'テキストをコピー',
|
|
19
|
+
copied: 'コピーしました!',
|
|
20
|
+
runeName: '名称',
|
|
21
|
+
runeMeaning: '意味',
|
|
22
|
+
runePhonetic: '発音',
|
|
23
|
+
clickHint: 'ルーンをクリックすると詳細が表示されます',
|
|
24
|
+
outputLabel: 'ルーン出力',
|
|
25
|
+
noInput: '上のテキストボックスにルーンに変換する文字を入力してください',
|
|
26
|
+
unknownChar: '?',
|
|
27
|
+
gmMode: 'GMモード',
|
|
28
|
+
exitGmMode: '終了',
|
|
29
|
+
gmHint: 'これをプレイヤーに見せましょう',
|
|
30
|
+
seedLabel: 'シード',
|
|
31
|
+
seedPlaceholder: '任意',
|
|
32
|
+
seedApplied: 'ロック中',
|
|
33
|
+
shuffleSeed: 'シャッフル',
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const faq = [
|
|
37
|
+
{
|
|
38
|
+
question: 'エルダーフサルクとは何ですか?',
|
|
39
|
+
answer: 'エルダーフサルクはルーン文字の最古の形態で、2世紀から8世紀にかけてゲルマン部族によって使用されました。アットと呼ばれる8つのグループ3つに分かれた24のルーンから構成されます。各ルーンは音価と、自然や神話の概念を表す象徴的な名前を持っています。',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'エルダーフサルクとアングロサクソンルーンの違いは何ですか?',
|
|
43
|
+
answer: 'アングロサクソンフサルクは、イングランドで開発されたエルダーフサルクの拡張版です。古英語に特有の音を表すためにルーンが追加され、24文字から最大33文字に拡張されました。意味や音価も時間とともに変化しました。',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
question: 'この翻訳機は単語を完璧に変換しますか?',
|
|
47
|
+
answer: 'このツールはルーン記号への一文字一文字の文字変換を提供します。歴史的なルーンの使用は一文字一文字の直訳ではなく音声に基づいていたため、結果は現代的な解釈です。ファンタジー文字オプションは、テーブルトップRPGの雰囲気を盛り上げる創造的な架空のアルファベットを提供します。',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
question: 'これらのルーンをテーブルトップRPGのキャンペーンで使用できますか?',
|
|
51
|
+
answer: 'はい!ゲームマスターもプレイヤーも、この翻訳機を使ってルーンの碑文、魔法の文章、秘密のメッセージ、キャラクターや場所の装飾的な名前を作成できます。ファンタジー文字オプションは、特にファンタジーロールプレイングの設定向けにデザインされています。',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
question: 'このツールは入力したテキストを保存しますか?',
|
|
55
|
+
answer: 'いいえ。すべてはブラウザ内でローカルに動作します。テキスト、翻訳、選択内容がサーバーに送信されることは一切ありません。あなたの創作活動は完全にプライベートに保たれます。',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
question: 'ルーンをクリックするとどうなりますか?',
|
|
59
|
+
answer: 'ルーンカードをクリックすると、その伝統的な名前、象徴的な意味、音価が表示されます。これによりルーンを学習し、RPGのニーズに合った適切な記号を選ぶことができます。',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo = [
|
|
64
|
+
{
|
|
65
|
+
name: 'テキストを入力',
|
|
66
|
+
text: '入力フィールドに任意の英単語、名前、フレーズを入力します。翻訳機は単一の単語または短いフレーズで最も効果的に機能します。',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'アルファベットを選択',
|
|
70
|
+
text: 'エルダーフサルク(古代ゲルマン)、アングロサクソン(中世英語)、またはファンタジー文字(テーブルトップRPGスタイル)から選択します。',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: '翻訳して探索',
|
|
74
|
+
text: '「翻訳」をクリックしてテキストを変換します。各ルーンがカードとして表示されます。任意のルーンをクリックして名前、意味、音声を確認してください。コピーボタンを使ってルーンテキストをクリップボードに保存します。',
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
|
|
79
|
+
slug: 'fantasy-runes-translator',
|
|
80
|
+
title: 'ファンタジールーン翻訳機 / エルダーフサルク、テーバン、エノク語 and デモニックルーンコンバーター',
|
|
81
|
+
description: 'テキストをエルダーフサルク、アングロサクソンフサルク、テーバン、エノク語、デモニック、オガム文字、またはファンタジー文字に翻訳します。テーブルトップRPGのパズル、キャンペーン、魔法使いの巻物、神秘的なルーンに最適です。',
|
|
82
|
+
ui,
|
|
83
|
+
seo: [
|
|
84
|
+
{ type: 'title', text: 'テーブルトップRPGの世界構築のためのルーン文字と神秘の文字体系', level: 2 },
|
|
85
|
+
{ type: 'paragraph', html: '神秘的なルーン文字、古代の記号、秘密の文字体系は、D&D、Pathfinder、Warhammerなどのファンタジーテーブルトップロールプレイングゲームに比類のない没入感をもたらします。エルダーフサルクで刻まれた隠されたドワーフの遺跡を作成する場合でも、エノク語の天使の言葉の文字を含む神秘の呪文書をデザインする場合でも、テーバン文字を使って魔女の手がかりを散りばめる場合でも、禁じられた悪魔のメッセージを書く場合でも、当社のルーン生成ツールは通常の英語テキストをリアルタイムで様式化された記号に変換します。物理的な小道具、謎の暗号、古代の石の彫刻でプレイヤーの好奇心を刺激しましょう。' },
|
|
86
|
+
{
|
|
87
|
+
type: 'stats',
|
|
88
|
+
items: [
|
|
89
|
+
{ value: '7', label: 'ルーン文字種' },
|
|
90
|
+
{ value: '150以上', label: '記号バリエーション' },
|
|
91
|
+
{ value: '瞬時', label: '視覚的文字変換' },
|
|
92
|
+
],
|
|
93
|
+
columns: 3,
|
|
94
|
+
},
|
|
95
|
+
{ type: 'title', text: 'エルダーフサルク&アングロサクソンフサルク:古代ゲルマン・北欧ルーン文字', level: 2 },
|
|
96
|
+
{ type: 'paragraph', html: '2世紀に遡るエルダーフサルクは、自然の基本的な力を表す24文字からなる最古のルーン体系です。アングロサクソンフサルクはこの体系を古英語の音韻に対応するため最大33文字に拡張しました。これらの歴史的な記号は、RPGキャンペーン設定においてドワーフの氏族、北欧神話に着想を得た文化、バイキングの彫刻、野蛮な部族の紋章を表現するのに最適です。' },
|
|
97
|
+
{ type: 'title', text: 'テーバン&オガム文字:中世の魔術とケルトの木のアルファベット', level: 2 },
|
|
98
|
+
{ type: 'paragraph', html: 'ホノリウスのルーンまたは魔女のアルファベットとも呼ばれるテーバン文字は、オカルトの伝統やウィッカで使用された歴史的に有名な中世の暗号です。オガム文字は、縁に沿って刻まれた線状の strokes を使用する初期中世のアルファベットで、ケルトの民話やドルイドの樹木魔法と関連して有名です。これらの文字を使って、ドルイドの聖域、エルフの森、異教の祭壇、または秘密の魔女の集会からの隠されたメッセージを装飾しましょう。' },
|
|
99
|
+
{ type: 'title', text: 'エノク語&デモニック文字:秘められた天使と深淵の言語', level: 2 },
|
|
100
|
+
{ type: 'paragraph', html: '16世紀にジョン・ディーとエドワード・ケリーによって初めて記録されたエノク語は、天使の言語であると考えられた詳細な人工言語です。デモニック文字は深淵のグリフ、闇の契約、地獄の印を表します。解読可能な悪魔の契約書、暗黒カルトの彫刻、天使の遺物をウィザード、パラディン、クレリックが調査できるように残すことで、キャンペーンの物語性を高めましょう。' },
|
|
101
|
+
{ type: 'title', text: 'カスタムファンタジー文字:ロールプレイ対応の創造的アルファベット', level: 2 },
|
|
102
|
+
{ type: 'paragraph', html: '現実世界の歴史を超えた世界のために、当社のカスタムファンタジー文字は、クラシックなハイファンタジーの美学を呼び起こすために特別に設計された架空のルーンセットを提供します。各ルーンは、ゲームマスターの印刷物、デジタルマップ、カスタムプレイヤートークンで際立つようにデザインされています。シードベースのランダム化と組み合わせて、異なる派閥、国家、または古代の神々に固有の秘密言語を作り出しましょう。' },
|
|
103
|
+
],
|
|
104
|
+
faq,
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo,
|
|
107
|
+
schemas: [
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
'mainEntity': faq.map((f) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': f.question,
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': f.answer,
|
|
117
|
+
},
|
|
118
|
+
})),
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
'@context': 'https://schema.org',
|
|
122
|
+
'@type': 'SoftwareApplication',
|
|
123
|
+
'name': 'ファンタジールーン翻訳機',
|
|
124
|
+
'operatingSystem': 'すべて',
|
|
125
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
126
|
+
'browserRequirements': 'HTML5が必要です。JavaScriptが必要です。',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
'@context': 'https://schema.org',
|
|
130
|
+
'@type': 'HowTo',
|
|
131
|
+
'name': 'ファンタジールーン翻訳機の使い方',
|
|
132
|
+
'step': howTo.map((h) => ({
|
|
133
|
+
'@type': 'HowToStep',
|
|
134
|
+
'name': h.name,
|
|
135
|
+
'text': h.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { FantasyRunesTranslatorUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const ui: FantasyRunesTranslatorUI = {
|
|
6
|
+
title: '판타지 룬 번역기',
|
|
7
|
+
inputPlaceholder: '번역할 단어 또는 이름을 입력하세요...',
|
|
8
|
+
alphabetLabel: '룬 알파벳',
|
|
9
|
+
elderFuthark: '엘더 푸타르크',
|
|
10
|
+
angloSaxon: '앵글로색슨',
|
|
11
|
+
fantasy: '판타지 문자',
|
|
12
|
+
theban: '테반',
|
|
13
|
+
enochian: '에노키아어',
|
|
14
|
+
daemonic: '데모닉',
|
|
15
|
+
ogham: '오검',
|
|
16
|
+
translate: '번역',
|
|
17
|
+
clear: '지우기',
|
|
18
|
+
copy: '텍스트 복사',
|
|
19
|
+
copied: '복사됨!',
|
|
20
|
+
runeName: '이름',
|
|
21
|
+
runeMeaning: '의미',
|
|
22
|
+
runePhonetic: '발음',
|
|
23
|
+
clickHint: '룬을 클릭하면 세부 정보를 볼 수 있습니다',
|
|
24
|
+
outputLabel: '룬 출력',
|
|
25
|
+
noInput: '룬으로 변환할 텍스트를 위에 입력하세요',
|
|
26
|
+
unknownChar: '?',
|
|
27
|
+
gmMode: 'GM 모드',
|
|
28
|
+
exitGmMode: '종료',
|
|
29
|
+
gmHint: '이것을 플레이어에게 보여주세요',
|
|
30
|
+
seedLabel: '시드',
|
|
31
|
+
seedPlaceholder: '선택 사항',
|
|
32
|
+
seedApplied: '잠김',
|
|
33
|
+
shuffleSeed: '셔플',
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const faq = [
|
|
37
|
+
{
|
|
38
|
+
question: '엘더 푸타르크란 무엇인가요?',
|
|
39
|
+
answer: '엘더 푸타르크는 룬 문자 중 가장 오래된 형태로, 2세기부터 8세기까지 게르만 부족들에 의해 사용되었습니다. 아티르(aettir)라고 불리는 8개씩 세 그룹으로 나뉜 24개의 룬으로 구성됩니다. 각 룬은 음가와 자연 또는 신화적 개념을 나타내는 상징적인 이름을 가지고 있습니다.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: '엘더 푸타르크와 앵글로색슨 룬의 차이점은 무엇인가요?',
|
|
43
|
+
answer: '앵글로색슨 푸토르크는 영국에서 발전된 엘더 푸타르크의 확장 버전입니다. 고대 영어의 고유한 소리를 표현하기 위해 추가 룬이 더해져 24자에서 최대 33자로 확장되었습니다. 의미와 음가도 시간이 지남에 따라 변화했습니다.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
question: '이 번역기는 단어를 완벽하게 변환하나요?',
|
|
47
|
+
answer: '이 도구는 룬 기호로 글자-대-글자 음역을 제공합니다. 역사적 룬 사용은 문자 그대로의 글자 대신 음성에 기반했으므로 결과는 현대적 해석입니다. 판타지 문자 옵션은 테이블탑 RPG 분위기를 위한 창의적인 가상 알파벳을 제공합니다.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
question: '이 룬들을 테이블탑 RPG 캠페인에서 사용할 수 있나요?',
|
|
51
|
+
answer: '네! 게임 마스터와 플레이어 모두 번역기를 사용하여 룬 문자 비문, 마법 문자, 비밀 메시지 또는 캐릭터와 장소의 장식용 이름을 만들 수 있습니다. 판타지 문자 옵션은 특히 판타지 롤플레잉 설정을 위해 설계되었습니다.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
question: '이 도구는 제가 입력한 텍스트를 저장하나요?',
|
|
55
|
+
answer: '아니요. 모든 것은 브라우저에서 로컬로 실행됩니다. 텍스트, 번역 또는 선택 사항이 서버로 전송되지 않습니다. 창작 작업은 완전히 비공개로 유지됩니다.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
question: '룬을 클릭하면 어떻게 되나요?',
|
|
59
|
+
answer: '룬 카드를 클릭하면 전통적인 이름, 상징적 의미 및 음가가 표시됩니다. 이를 통해 룬을 배우고 RPG 필요에 맞는 적절한 기호를 선택할 수 있습니다.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo = [
|
|
64
|
+
{
|
|
65
|
+
name: '텍스트 입력',
|
|
66
|
+
text: '입력 필드에 영어 단어, 이름 또는 구문을 입력하세요. 번역기는 단일 단어 또는 짧은 구문에 가장 잘 작동합니다.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: '알파벳 선택',
|
|
70
|
+
text: '엘더 푸타르크(고대 게르만), 앵글로색슨(중세 영어), 또는 판타지 문자(테이블탑 RPG 스타일) 중에서 선택하세요.',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: '번역하고 탐색하기',
|
|
74
|
+
text: '"번역"을 클릭하여 텍스트를 변환하세요. 각 룬이 카드로 나타납니다. 룬을 클릭하여 이름, 의미 및 소리를 확인하세요. 복사 버튼을 사용하여 룬 텍스트를 클립보드에 저장하세요.',
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
|
|
79
|
+
slug: 'fantasy-runes-translator',
|
|
80
|
+
title: '판타지 룬 번역기 / 엘더 푸타르크, 테반, 에노키아어 and 데모닉 룬 변환기',
|
|
81
|
+
description: '텍스트를 엘더 푸타르크, 앵글로색슨 푸토르크, 테반, 에노키아어, 데모닉, 오검 또는 판타지 문자로 번역하세요. 테이블탑 RPG 퍼즐, 캠페인, 마법사 두루마리, 신비로운 룬에 완벽합니다.',
|
|
82
|
+
ui,
|
|
83
|
+
seo: [
|
|
84
|
+
{ type: 'title', text: '테이블탑 RPG 세계 구축을 위한 룬 문자와 신비로운 문자 체계', level: 2 },
|
|
85
|
+
{ type: 'paragraph', html: '신비로운 룬 문자, 고대 상징, 비밀 문자는 D&D, Pathfinder, Warhammer와 같은 판타지 테이블탑 롤플레잉 게임에 비교할 수 없는 몰입감을 선사합니다. 엘더 푸타르크로 새겨진 숨겨진 드워프 유적을 만들든, 에노키아어 천사의 언어 문자가 담긴 신비한 마법서를 디자인하든, 테반 알파벳을 사용하여 마녀의 단서를 흩뿌리든, 금지된 데모닉 메시지를 작성하든, 저희 룬 생성기는 일반 영어 텍스트를 실시간으로 양식화된 기호로 변환합니다. 물리적 소품, 미스터리 암호, 고대 석조 조각으로 플레이어의 호기심을 자극하세요.' },
|
|
86
|
+
{
|
|
87
|
+
type: 'stats',
|
|
88
|
+
items: [
|
|
89
|
+
{ value: '7', label: '룬 문자 종류' },
|
|
90
|
+
{ value: '150+', label: '기호 변형' },
|
|
91
|
+
{ value: '즉시', label: '시각적 음역' },
|
|
92
|
+
],
|
|
93
|
+
columns: 3,
|
|
94
|
+
},
|
|
95
|
+
{ type: 'title', text: '엘더 푸타르크 & 앵글로색슨 푸토르크: 고대 게르만 및 북유럽 룬', level: 2 },
|
|
96
|
+
{ type: 'paragraph', html: '2세기로 거슬러 올라가는 엘더 푸타르크는 자연의 근본적인 힘을 나타내는 24자로 구성된 가장 오래된 룬 체계입니다. 앵글로색슨 푸토르크는 고대 영어 음성학을 위해 이 체계를 33자까지 확장했습니다. 이러한 역사적 상징들은 RPG 캠페인 설정에서 드워프 씨족, 북유럽 신화에서 영감을 받은 문화, 바이킹 조각, 야만인 씨족 휘장을 표현하는 데 완벽합니다.' },
|
|
97
|
+
{ type: 'title', text: '테반 & 오검: 중세 마녀술과 켈트 나무 알파벳', level: 2 },
|
|
98
|
+
{ type: 'paragraph', html: '흔히 호노리우스의 룬 또는 마녀의 알파벳으로 불리는 테반 문자는 오컬트 전통과 위카에서 사용된 역사적으로 유명한 중세 암호입니다. 오검은 가장자리를 따라 새겨진 선형 획을 사용하는 초기 중세 알파벳으로, 켈트 민속학 및 드루이드 나무 마법과 유명하게 연관되어 있습니다. 이 문자들을 사용하여 드루이드 성소, 엘프 숲, 이교도 제단 또는 비밀 마녀 집회의 숨겨진 메시지를 장식하세요.' },
|
|
99
|
+
{ type: 'title', text: '에노키아어 & 데모닉 문자: 신비로운 천사와 심연의 언어', level: 2 },
|
|
100
|
+
{ type: 'paragraph', html: '16세기 존 디와 에드워드 켈리에 의해 처음 기록된 에노키아어는 천사의 언어로 믿어졌던 상세한 인공 언어입니다. 데모닉 문자는 심연의 글리프, 어두운 계약, 지옥의 표식을 나타냅니다. 해독 가능한 악마 계약서, 어둠의 숭배 조각, 천사 유물을 위저드, 팔라딘, 클레릭이 조사할 수 있도록 남겨두어 캠페인의 서사적 중요성을 높이세요.' },
|
|
101
|
+
{ type: 'title', text: '맞춤형 판타지 문자: 롤플레이 준비 완료 창의적 알파벳', level: 2 },
|
|
102
|
+
{ type: 'paragraph', html: '실제 역사를 넘어서는 세계를 위해, 저희 맞춤형 판타지 문자는 클래식 하이 판타지 미학을 불러일으키기 위해 특별히 설계된 가상의 룬 세트를 제공합니다. 각 룬은 게임 마스터 인쇄물, 디지털 지도, 맞춤형 플레이어 토큰에서 돋보이도록 디자인되었습니다. 시드 기반 무작위화와 결합하여 다른 파벌, 국가 또는 고대 신들에게 고유한 비밀 언어를 만들어 보세요.' },
|
|
103
|
+
],
|
|
104
|
+
faq,
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo,
|
|
107
|
+
schemas: [
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
'mainEntity': faq.map((f) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': f.question,
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': f.answer,
|
|
117
|
+
},
|
|
118
|
+
})),
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
'@context': 'https://schema.org',
|
|
122
|
+
'@type': 'SoftwareApplication',
|
|
123
|
+
'name': '판타지 룬 번역기',
|
|
124
|
+
'operatingSystem': '모두',
|
|
125
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
126
|
+
'browserRequirements': 'HTML5 필요. JavaScript 필요.',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
'@context': 'https://schema.org',
|
|
130
|
+
'@type': 'HowTo',
|
|
131
|
+
'name': '판타지 룬 번역기 사용 방법',
|
|
132
|
+
'step': howTo.map((h) => ({
|
|
133
|
+
'@type': 'HowToStep',
|
|
134
|
+
'name': h.name,
|
|
135
|
+
'text': h.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|