@jjlmoya/utils-tabletop 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 +5 -3
- package/src/entries.ts +15 -1
- package/src/index.ts +3 -0
- package/src/tests/locale_completeness.test.ts +2 -1
- package/src/tests/tool_validation.test.ts +2 -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/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/investigation-board/bibliography.astro +16 -0
- package/src/tool/investigation-board/bibliography.ts +12 -0
- package/src/tool/investigation-board/boardContextMenu.ts +64 -0
- package/src/tool/investigation-board/client.ts +223 -0
- package/src/tool/investigation-board/component.astro +23 -0
- package/src/tool/investigation-board/components/BoardCanvas.astro +39 -0
- package/src/tool/investigation-board/components/CardDrawer.astro +73 -0
- package/src/tool/investigation-board/components/ConnectionModal.astro +49 -0
- package/src/tool/investigation-board/components/ContextMenu.astro +26 -0
- package/src/tool/investigation-board/components/ControlPanel.astro +57 -0
- package/src/tool/investigation-board/connectionModal.ts +60 -0
- package/src/tool/investigation-board/dom.ts +89 -0
- package/src/tool/investigation-board/drawer.ts +110 -0
- package/src/tool/investigation-board/entry.ts +59 -0
- package/src/tool/investigation-board/i18n/de.ts +126 -0
- package/src/tool/investigation-board/i18n/en.ts +127 -0
- package/src/tool/investigation-board/i18n/es.ts +126 -0
- package/src/tool/investigation-board/i18n/fr.ts +126 -0
- package/src/tool/investigation-board/i18n/id.ts +126 -0
- package/src/tool/investigation-board/i18n/it.ts +126 -0
- package/src/tool/investigation-board/i18n/ja.ts +126 -0
- package/src/tool/investigation-board/i18n/ko.ts +126 -0
- package/src/tool/investigation-board/i18n/nl.ts +126 -0
- package/src/tool/investigation-board/i18n/pl.ts +126 -0
- package/src/tool/investigation-board/i18n/pt.ts +126 -0
- package/src/tool/investigation-board/i18n/ru.ts +126 -0
- package/src/tool/investigation-board/i18n/sv.ts +126 -0
- package/src/tool/investigation-board/i18n/tr.ts +126 -0
- package/src/tool/investigation-board/i18n/zh.ts +126 -0
- package/src/tool/investigation-board/index.ts +11 -0
- package/src/tool/investigation-board/interactDrag.ts +58 -0
- package/src/tool/investigation-board/investigation-board.css +799 -0
- package/src/tool/investigation-board/layout.ts +16 -0
- package/src/tool/investigation-board/logic.test.ts +105 -0
- package/src/tool/investigation-board/logic.ts +106 -0
- package/src/tool/investigation-board/panzoom.ts +24 -0
- package/src/tool/investigation-board/renderer.ts +256 -0
- package/src/tool/investigation-board/seo.astro +16 -0
- package/src/tool/investigation-board/stateManager.ts +126 -0
- package/src/tool/investigation-board/types.ts +26 -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 +11 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "samenzweringsbord-maker",
|
|
6
|
+
title: "Samenzweringsbord Maker",
|
|
7
|
+
description: "Ontwerp interactieve complotborden en onderzoekskaarten. Verbind personages, aanwijzingen, locaties en breng relaties in kaart met aangepaste verbindingen.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Samenzweringsbord Maker",
|
|
10
|
+
"addCard": "Kaart toevoegen",
|
|
11
|
+
"searchPlaceholder": "Zoek kaarten op naam of aanwijzingen",
|
|
12
|
+
"filterAll": "Alle categorieën",
|
|
13
|
+
"filterCharacter": "Personages",
|
|
14
|
+
"filterClue": "Aanwijzingen",
|
|
15
|
+
"filterLocation": "Locaties",
|
|
16
|
+
"filterItem": "Voorwerpen",
|
|
17
|
+
"cardName": "Kaartnaam",
|
|
18
|
+
"cardCategory": "Categorie",
|
|
19
|
+
"cardDescription": "Beschrijving",
|
|
20
|
+
"cardNotes": "Privénotities",
|
|
21
|
+
"cardTags": "Tags gescheiden door komma\\'s",
|
|
22
|
+
"cardColor": "Kaartmarkeringskleur",
|
|
23
|
+
"save": "Wijzigingen opslaan",
|
|
24
|
+
"delete": "Verwijderen",
|
|
25
|
+
"cancel": "Annuleren",
|
|
26
|
+
"clearBoard": "Bord leegmaken",
|
|
27
|
+
"connectionsTitle": "Relatiekaart",
|
|
28
|
+
"addConnection": "Verbinding toevoegen",
|
|
29
|
+
"connectionLabel": "Relatielabel",
|
|
30
|
+
"connectionColor": "Lijnkleur",
|
|
31
|
+
"sourceCard": "Van kaart",
|
|
32
|
+
"targetCard": "Naar kaart",
|
|
33
|
+
"close": "Sluiten",
|
|
34
|
+
"character": "Personage",
|
|
35
|
+
"clue": "Aanwijzing",
|
|
36
|
+
"location": "Locatie",
|
|
37
|
+
"item": "Voorwerp",
|
|
38
|
+
"custom": "Aangepast",
|
|
39
|
+
"immersive": "Volledig scherm"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Samenzweringsbord Maker voor Tabletop en Detective RPG Spellen", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Maak meeslepende onderzoekskaarten en complotborden voor je tabletop rollenspellen. Sleep en plaats aanwijzingen, locaties en personages, en verbind ze met aangepaste draden om complexe mysteries te visualiseren." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Onbeperkt", label: "Knooppuntenbord" },
|
|
48
|
+
{ value: "4", label: "Categorieën" },
|
|
49
|
+
{ value: "Slepen en Neerzetten", label: "Interface" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Hoe bouw je een onderzoekskaart op", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Voeg aangepaste kaarten toe die aanwijzingen, personages, voorwerpen en locaties vertegenwoordigen. Sleep ze naar posities op het raster. Selecteer twee kaarten om ze te koppelen met een gekleurde relatiedraad. Dubbelklik op knooppunten of draden voor details." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "Hoe voeg ik verbindingslijnen toe?",
|
|
59
|
+
answer: "Klik op Verbinding toevoegen in het controlepaneel, kies de start- en doelkaarten, wijs een tekstlabel en kleur toe, en sla het op."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "Kan ik kaarten verslepen op mobiel?",
|
|
63
|
+
answer: "Ja, het bord ondersteunt aanraakbewegingen om kaarten soepel te verslepen en te verplaatsen op smartphones en tablets."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Onderzoekskaarten toevoegen",
|
|
70
|
+
text: "Maak kaarten die NPC\\'s, aanwijzingen, PD\\'s of voorwerpen vertegenwoordigen."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Relaties koppelen",
|
|
74
|
+
text: "Maak verbindingslijnen tussen kaarten om te laten zien hoe aanwijzingen zich verhouden."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Samenzweringsbord Maker",
|
|
82
|
+
'operatingSystem': 'All',
|
|
83
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
84
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'FAQPage',
|
|
89
|
+
'mainEntity': [
|
|
90
|
+
{
|
|
91
|
+
'@type': 'Question',
|
|
92
|
+
'name': "Hoe voeg ik verbindingslijnen toe?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Klik op Verbinding toevoegen in het controlepaneel, kies de start- en doelkaarten, wijs een tekstlabel en kleur toe, en sla het op."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "Kan ik kaarten verslepen op mobiel?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Ja, het bord ondersteunt aanraakbewegingen om kaarten soepel te verslepen en te verplaatsen op smartphones en tablets."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Hoe de Samenzweringsbord Maker te gebruiken",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Onderzoekskaarten toevoegen",
|
|
116
|
+
'text': "Maak kaarten die NPC\\'s, aanwijzingen, PD\\'s of voorwerpen vertegenwoordigen."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Relaties koppelen",
|
|
121
|
+
'text': "Maak verbindingslijnen tussen kaarten om te laten zien hoe aanwijzingen zich verhouden."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "kreator-tablicy-spiskowej",
|
|
6
|
+
title: "Kreator Tablicy Spiskowej",
|
|
7
|
+
description: "Projektuj interaktywne tablice spiskowe i mapy śledztw. Łącz postacie, wskazówki, miejsca i śledź relacje za pomocą niestandardowych połączeń.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Kreator Tablicy Spiskowej",
|
|
10
|
+
"addCard": "Dodaj Kartę",
|
|
11
|
+
"searchPlaceholder": "Szukaj kart po nazwie lub wskazówkach",
|
|
12
|
+
"filterAll": "Wszystkie Kategorie",
|
|
13
|
+
"filterCharacter": "Postacie",
|
|
14
|
+
"filterClue": "Wskazówki",
|
|
15
|
+
"filterLocation": "Lokalizacje",
|
|
16
|
+
"filterItem": "Przedmioty",
|
|
17
|
+
"cardName": "Nazwa Karty",
|
|
18
|
+
"cardCategory": "Kategoria",
|
|
19
|
+
"cardDescription": "Opis",
|
|
20
|
+
"cardNotes": "Prywatne Notatki",
|
|
21
|
+
"cardTags": "Tagi oddzielone przecinkami",
|
|
22
|
+
"cardColor": "Kolor Wyróżnienia Karty",
|
|
23
|
+
"save": "Zapisz Zmiany",
|
|
24
|
+
"delete": "Usuń",
|
|
25
|
+
"cancel": "Anuluj",
|
|
26
|
+
"clearBoard": "Wyczyść Tablicę",
|
|
27
|
+
"connectionsTitle": "Mapa Relacji",
|
|
28
|
+
"addConnection": "Dodaj Połączenie",
|
|
29
|
+
"connectionLabel": "Etykieta Relacji",
|
|
30
|
+
"connectionColor": "Kolor Linii",
|
|
31
|
+
"sourceCard": "Z Karty",
|
|
32
|
+
"targetCard": "Do Karty",
|
|
33
|
+
"close": "Zamknij",
|
|
34
|
+
"character": "Postać",
|
|
35
|
+
"clue": "Wskazówka",
|
|
36
|
+
"location": "Lokalizacja",
|
|
37
|
+
"item": "Przedmiot",
|
|
38
|
+
"custom": "Niestandardowy",
|
|
39
|
+
"immersive": "Pełny Ekran"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Kreator Tablicy Spiskowej do Gier RPG i Detektywistycznych", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Twórz wciągające mapy śledztw i tablice spiskowe do swoich gier fabularnych. Przeciągaj i upuszczaj wskazówki, lokalizacje i postacie, a następnie łącz je niestandardowymi nićmi, aby zwizualizować złożone zagadki." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Nielimitowane", label: "Tablica węzłów" },
|
|
48
|
+
{ value: "4", label: "Kategorie" },
|
|
49
|
+
{ value: "Przeciągnij i Upuść", label: "Interfejs" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Jak zbudować mapę śledztwa", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Dodaj niestandardowe karty reprezentujące wskazówki, postacie, przedmioty i lokalizacje. Przeciągnij je na odpowiednie pozycje. Wybierz dwie karty, aby połączyć je kolorową nicią relacji. Kliknij dwukrotnie węzły lub nici, aby wyświetlić szczegóły." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "Jak dodać linie połączeń?",
|
|
59
|
+
answer: "Kliknij Dodaj Połączenie w panelu sterowania, wybierz kartę źródłową i docelową, przypisz etykietę tekstową oraz kolor i zapisz."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "Czy mogę przeciągać karty na telefonie?",
|
|
63
|
+
answer: "Tak, tablica obsługuje zdarzenia dotykowe, co pozwala na płynne przeciąganie i przesuwanie kart na smartfonach i tabletach."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Dodaj Karty Śledztwa",
|
|
70
|
+
text: "Twórz karty reprezentujące NPC, wskazówki, miejsca zbrodni lub przedmioty."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Połącz Relacje",
|
|
74
|
+
text: "Twórz linie połączeń między kartami, aby pokazać, jak wskazówki się ze sobą łączą."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Kreator Tablicy Spiskowej",
|
|
82
|
+
'operatingSystem': 'All',
|
|
83
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
84
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'FAQPage',
|
|
89
|
+
'mainEntity': [
|
|
90
|
+
{
|
|
91
|
+
'@type': 'Question',
|
|
92
|
+
'name': "Jak dodać linie połączeń?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Kliknij Dodaj Połączenie w panelu sterowania, wybierz kartę źródłową i docelową, przypisz etykietę tekstową oraz kolor i zapisz."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "Czy mogę przeciągać karty na telefonie?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Tak, tablica obsługuje zdarzenia dotykowe, co pozwala na płynne przeciąganie i przesuwanie kart na smartfonach i tabletach."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Jak korzystać z Kreatora Tablicy Spiskowej",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Dodaj Karty Śledztwa",
|
|
116
|
+
'text': "Twórz karty reprezentujące NPC, wskazówki, miejsca zbrodni lub przedmioty."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Połącz Relacje",
|
|
121
|
+
'text': "Twórz linie połączeń między kartami, aby pokazać, jak wskazówki się ze sobą łączą."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "criador-de-quadro-de-conspiracao",
|
|
6
|
+
title: "Criador de Quadro de Conspiração",
|
|
7
|
+
description: "Crie quadros de conspiração interativos e mapas de investigação. Conecte personagens, pistas, locais e rastreie relacionamentos com links personalizados.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Criador de Quadro de Conspiração",
|
|
10
|
+
"addCard": "Adicionar Carta",
|
|
11
|
+
"searchPlaceholder": "Buscar cartas por nome ou pistas",
|
|
12
|
+
"filterAll": "Todas as Categorias",
|
|
13
|
+
"filterCharacter": "Personagens",
|
|
14
|
+
"filterClue": "Pistas",
|
|
15
|
+
"filterLocation": "Locais",
|
|
16
|
+
"filterItem": "Itens",
|
|
17
|
+
"cardName": "Nome da Carta",
|
|
18
|
+
"cardCategory": "Categoria",
|
|
19
|
+
"cardDescription": "Descrição",
|
|
20
|
+
"cardNotes": "Notas Privadas",
|
|
21
|
+
"cardTags": "Tags separadas por vírgulas",
|
|
22
|
+
"cardColor": "Cor de Destaque da Carta",
|
|
23
|
+
"save": "Salvar Alterações",
|
|
24
|
+
"delete": "Excluir",
|
|
25
|
+
"cancel": "Cancelar",
|
|
26
|
+
"clearBoard": "Limpar Quadro",
|
|
27
|
+
"connectionsTitle": "Mapa de Relações",
|
|
28
|
+
"addConnection": "Adicionar Conexão",
|
|
29
|
+
"connectionLabel": "Rótulo de Relação",
|
|
30
|
+
"connectionColor": "Cor da Linha",
|
|
31
|
+
"sourceCard": "Da Carta",
|
|
32
|
+
"targetCard": "Para Carta",
|
|
33
|
+
"close": "Fechar",
|
|
34
|
+
"character": "Personagem",
|
|
35
|
+
"clue": "Pista",
|
|
36
|
+
"location": "Local",
|
|
37
|
+
"item": "Item",
|
|
38
|
+
"custom": "Personalizado",
|
|
39
|
+
"immersive": "Tela Cheia"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Criador de Quadro de Conspiração para RPGs de Mesa e Investigação", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Crie mapas de investigação imersivos e quadros de conspiração para seus jogos de RPG de mesa. Arraste e solte pistas, locais e personagens, depois conecte-os com fios personalizados para visualizar mistérios complexos." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Ilimitado", label: "Quadro de Nós" },
|
|
48
|
+
{ value: "4", label: "Categorias" },
|
|
49
|
+
{ value: "Arrastar e Soltar", label: "Interface" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Como Construir um Mapa de Investigação", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Adicione cartas personalizadas representando pistas, personagens, itens e locais. Arraste-as para posições na grade. Selecione duas cartas para conectá-las com um fio de relação colorido. Dê duplo clique em nós ou fios para ver detalhes." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "Como adiciono linhas de conexão?",
|
|
59
|
+
answer: "Clique em Adicionar Conexão no painel de controle, escolha as cartas de origem e destino, atribua um rótulo de texto e uma cor, e salve."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "Posso arrastar cartas no celular?",
|
|
63
|
+
answer: "Sim, o quadro suporta eventos de toque para arrastar e mover cartas de forma suave em smartphones e tablets."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Adicionar Cartas de Investigação",
|
|
70
|
+
text: "Crie cartas que representam NPCs, pistas, cenas de crime ou itens."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Vincular Relacionamentos",
|
|
74
|
+
text: "Crie linhas de conexão entre as cartas para mostrar a relação entre as pistas."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Criador de Quadro de Conspiração",
|
|
82
|
+
'operatingSystem': 'All',
|
|
83
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
84
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'FAQPage',
|
|
89
|
+
'mainEntity': [
|
|
90
|
+
{
|
|
91
|
+
'@type': 'Question',
|
|
92
|
+
'name': "Como adiciono linhas de conexão?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Clique em Adicionar Conexão no painel de controle, escolha as cartas de origem e destino, atribua um rótulo de texto e uma cor, e salve."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "Posso arrastar cartas no celular?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Sim, o quadro suporta eventos de toque para arrastar e mover cartas de forma suave em smartphones e tablets."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Como Usar o Criador de Quadro de Conspiração",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Adicionar Cartas de Investigação",
|
|
116
|
+
'text': "Crie cartas que representam NPCs, pistas, cenas de crime ou itens."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Vincular Relacionamentos",
|
|
121
|
+
'text': "Crie linhas de conexão entre as cartas para mostrar a relação entre as pistas."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "sozdatel-doski-zagovora",
|
|
6
|
+
title: "Создатель Доски Заговора",
|
|
7
|
+
description: "Проектируйте интерактивные детективные доски и карты расследований. Связывайте персонажей, улики, локации и отслеживайте отношения с помощью кастомных нитей.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Создатель Доски Заговора",
|
|
10
|
+
"addCard": "Добавить Карточку",
|
|
11
|
+
"searchPlaceholder": "Поиск карточек по имени или уликам",
|
|
12
|
+
"filterAll": "Все Категории",
|
|
13
|
+
"filterCharacter": "Персонажи",
|
|
14
|
+
"filterClue": "Улики",
|
|
15
|
+
"filterLocation": "Локации",
|
|
16
|
+
"filterItem": "Предметы",
|
|
17
|
+
"cardName": "Название Карточки",
|
|
18
|
+
"cardCategory": "Категория",
|
|
19
|
+
"cardDescription": "Описание",
|
|
20
|
+
"cardNotes": "Личные Заметки",
|
|
21
|
+
"cardTags": "Теги через запятую",
|
|
22
|
+
"cardColor": "Цвет подсветки карточки",
|
|
23
|
+
"save": "Сохранить Изменения",
|
|
24
|
+
"delete": "Удалить",
|
|
25
|
+
"cancel": "Отмена",
|
|
26
|
+
"clearBoard": "Очистить Доску",
|
|
27
|
+
"connectionsTitle": "Карта Связей",
|
|
28
|
+
"addConnection": "Добавить Связь",
|
|
29
|
+
"connectionLabel": "Описание Связи",
|
|
30
|
+
"connectionColor": "Цвет Линии",
|
|
31
|
+
"sourceCard": "Из Карточки",
|
|
32
|
+
"targetCard": "В Карточку",
|
|
33
|
+
"close": "Закрыть",
|
|
34
|
+
"character": "Персонаж",
|
|
35
|
+
"clue": "Улика",
|
|
36
|
+
"location": "Локация",
|
|
37
|
+
"item": "Предмет",
|
|
38
|
+
"custom": "Кастомный",
|
|
39
|
+
"immersive": "Полный Экран"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Создатель Доски Заговора для Настольных и Детективных Ролевых Игр", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Создавайте увлекательные карты расследований и доски заговоров для настольных ролевых игр. Перетаскивайте улики, локации и персонажей, а затем соединяйте их цветными нитями для визуализации запутанных тайн." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Без Лимитов", label: "Интерактивная доска" },
|
|
48
|
+
{ value: "4", label: "Категории" },
|
|
49
|
+
{ value: "Drag and Drop", label: "Интерфейс" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Как создать карту расследования", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Добавьте кастомные карточки для улик, персонажей, предметов и локаций. Перетащите их в нужные позиции на сетке. Выберите две карточки, чтобы связать их цветной нитью отношений. Дважды кликните на карточки или нити, чтобы открыть подробности." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "Как добавлять соединительные линии?",
|
|
59
|
+
answer: "Нажмите кнопку Добавить Связь на панели управления, выберите начальную и конечную карточки, введите текст описания, задайте цвет и сохраните."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "Можно ли перемещать карточки на телефоне?",
|
|
63
|
+
answer: "Да, доска поддерживает сенсорное управление для плавного перемещения карточек на смартфонах и планшетах."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Добавить карточки расследования",
|
|
70
|
+
text: "Создавайте карточки персонажей, улик, мест преступлений или предметов."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Связать отношения",
|
|
74
|
+
text: "Создавайте линии связей между карточками для отображения взаимосвязи улик."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Создатель Доски Заговора",
|
|
82
|
+
'operatingSystem': 'All',
|
|
83
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
84
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'FAQPage',
|
|
89
|
+
'mainEntity': [
|
|
90
|
+
{
|
|
91
|
+
'@type': 'Question',
|
|
92
|
+
'name': "Как добавлять соединительные линии?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Нажмите кнопку Добавить Связь на панели управления, выберите начальную и конечную карточки, введите текст описания, задайте цвет и сохраните."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "Можно ли перемещать карточки на телефоне?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Да, доска поддерживает сенсорное управление для плавного перемещения карточек на смартфонах и планшетах."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Как использовать Создатель Доски Заговора",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Добавить карточки расследования",
|
|
116
|
+
'text': "Создавайте карточки персонажей, улик, мест преступлений или предметов."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Связать отношения",
|
|
121
|
+
'text': "Создавайте линии связей между карточками для отображения взаимосвязи улик."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "konspirationsboard-skapare",
|
|
6
|
+
title: "Konspirationsboard Skapare",
|
|
7
|
+
description: "Skapa interaktiva konspirationsboards och utredningskartor. Koppla ihop karaktärer, ledtrådar, platser och spåra relationer med anpassade länkar.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Konspirationsboard Skapare",
|
|
10
|
+
"addCard": "Lägg till Kort",
|
|
11
|
+
"searchPlaceholder": "Sök kort efter namn eller ledtrådar",
|
|
12
|
+
"filterAll": "Alla Kategorier",
|
|
13
|
+
"filterCharacter": "Karaktärer",
|
|
14
|
+
"filterClue": "Ledtrådar",
|
|
15
|
+
"filterLocation": "Platser",
|
|
16
|
+
"filterItem": "Föremål",
|
|
17
|
+
"cardName": "Kortnamn",
|
|
18
|
+
"cardCategory": "Kategori",
|
|
19
|
+
"cardDescription": "Beskrivning",
|
|
20
|
+
"cardNotes": "Privata Anteckningar",
|
|
21
|
+
"cardTags": "Taggar separerade med komma",
|
|
22
|
+
"cardColor": "Markeringsfärg för Kort",
|
|
23
|
+
"save": "Spara Ändringar",
|
|
24
|
+
"delete": "Ta bort",
|
|
25
|
+
"cancel": "Avbryt",
|
|
26
|
+
"clearBoard": "Rensa Board",
|
|
27
|
+
"connectionsTitle": "Relationskarta",
|
|
28
|
+
"addConnection": "Lägg till Koppling",
|
|
29
|
+
"connectionLabel": "Relationsetikett",
|
|
30
|
+
"connectionColor": "Linjefärg",
|
|
31
|
+
"sourceCard": "Från Kort",
|
|
32
|
+
"targetCard": "Till Kort",
|
|
33
|
+
"close": "Stäng",
|
|
34
|
+
"character": "Karaktär",
|
|
35
|
+
"clue": "Ledtråd",
|
|
36
|
+
"location": "Plats",
|
|
37
|
+
"item": "Föremål",
|
|
38
|
+
"custom": "Anpassad",
|
|
39
|
+
"immersive": "Helskärm"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Konspirationsboard Skapare för Tabletop och Detektiv RPG Spel", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Skapa inlevelserika utredningskartor och konspirationsboards för dina rollspel. Dra och släpp ledtrådar, platser och karaktärer, och koppla ihop dem med anpassade trådar för att visualisera komplexa mysterier." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Obegränsat", label: "Nodboard" },
|
|
48
|
+
{ value: "4", label: "Kategorier" },
|
|
49
|
+
{ value: "Dra och Släpp", label: "Gränssnitt" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Hur man bygger en utredningskarta", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Lägg till anpassade kort för ledtrådar, karaktärer, föremål och platser. Dra dem på plats i rutnätet. Välj två kort för att länka dem med en färgad relationstråd. Dubbelklicka på noder eller trådar för detaljer." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "Hur lägger jag till kopplingslinjer?",
|
|
59
|
+
answer: "Klicka på Lägg till Koppling i kontrollpanelen, välj start- och målkort, ange en textetikett samt färg, och spara."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "Kan jag dra kort på mobilen?",
|
|
63
|
+
answer: "Ja, tavlan stöder touch-händelser för att smidigt dra och flytta kort på smartphones och surfplattor."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Lägg till Utredningskort",
|
|
70
|
+
text: "Skapa kort som representerar NPC:er, ledtrådar, brottsplatser eller föremål."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Koppla Relationer",
|
|
74
|
+
text: "Skapa kopplingslinjer mellan kort för att visa hur ledtrådar hänger ihop."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Konspirationsboard Skapare",
|
|
82
|
+
'operatingSystem': 'All',
|
|
83
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
84
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'FAQPage',
|
|
89
|
+
'mainEntity': [
|
|
90
|
+
{
|
|
91
|
+
'@type': 'Question',
|
|
92
|
+
'name': "Hur lägger jag till kopplingslinjer?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Klicka på Lägg till Koppling i kontrollpanelen, välj start- och målkort, ange en textetikett samt färg, och spara."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "Kan jag dra kort på mobilen?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Ja, tavlan stöder touch-händelser för att smidigt dra och flytta kort på smartphones och surfplattor."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Hur man använder Konspirationsboard Skaparen",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Lägg till Utredningskort",
|
|
116
|
+
'text': "Skapa kort som representerar NPC:er, ledtrådar, brottsplatser eller föremål."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Koppla Relationer",
|
|
121
|
+
'text': "Skapa kopplingslinjer mellan kort för att visa hur ledtrådar hänger ihop."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
};
|