@jjlmoya/utils-tabletop 1.3.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/TabletopCategorySEO.astro +14 -0
- package/src/category/i18n/de.ts +27 -0
- package/src/category/i18n/en.ts +27 -0
- package/src/category/i18n/es.ts +27 -0
- package/src/category/i18n/fr.ts +27 -0
- package/src/category/i18n/id.ts +27 -0
- package/src/category/i18n/it.ts +27 -0
- package/src/category/i18n/ja.ts +27 -0
- package/src/category/i18n/ko.ts +27 -0
- package/src/category/i18n/nl.ts +27 -0
- package/src/category/i18n/pl.ts +27 -0
- package/src/category/i18n/pt.ts +27 -0
- package/src/category/i18n/ru.ts +27 -0
- package/src/category/i18n/sv.ts +27 -0
- package/src/category/i18n/tr.ts +27 -0
- package/src/category/i18n/zh.ts +27 -0
- package/src/category/index.ts +27 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +10 -0
- package/src/entries.ts +10 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +21 -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 +18 -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_en_dash.test.ts +41 -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 +16 -0
- package/src/tool/board-game-timer/bibliography.astro +16 -0
- package/src/tool/board-game-timer/bibliography.ts +12 -0
- package/src/tool/board-game-timer/board-game-timer.css +1615 -0
- package/src/tool/board-game-timer/client.ts +17 -0
- package/src/tool/board-game-timer/component.astro +22 -0
- package/src/tool/board-game-timer/components/DuelTimer.astro +75 -0
- package/src/tool/board-game-timer/components/MultiplayerTimer.astro +58 -0
- package/src/tool/board-game-timer/components/SetupPanel.astro +155 -0
- package/src/tool/board-game-timer/components/StatsModal.astro +52 -0
- package/src/tool/board-game-timer/entry.ts +76 -0
- package/src/tool/board-game-timer/i18n/de.ts +303 -0
- package/src/tool/board-game-timer/i18n/en.ts +304 -0
- package/src/tool/board-game-timer/i18n/es.ts +303 -0
- package/src/tool/board-game-timer/i18n/fr.ts +303 -0
- package/src/tool/board-game-timer/i18n/id.ts +303 -0
- package/src/tool/board-game-timer/i18n/it.ts +303 -0
- package/src/tool/board-game-timer/i18n/ja.ts +306 -0
- package/src/tool/board-game-timer/i18n/ko.ts +303 -0
- package/src/tool/board-game-timer/i18n/nl.ts +303 -0
- package/src/tool/board-game-timer/i18n/pl.ts +303 -0
- package/src/tool/board-game-timer/i18n/pt.ts +303 -0
- package/src/tool/board-game-timer/i18n/ru.ts +303 -0
- package/src/tool/board-game-timer/i18n/sv.ts +303 -0
- package/src/tool/board-game-timer/i18n/tr.ts +303 -0
- package/src/tool/board-game-timer/i18n/zh.ts +303 -0
- package/src/tool/board-game-timer/index.ts +9 -0
- package/src/tool/board-game-timer/logic.test.ts +282 -0
- package/src/tool/board-game-timer/logic.ts +6 -0
- package/src/tool/board-game-timer/modules/ColorHelper.ts +26 -0
- package/src/tool/board-game-timer/modules/DuelViewManager.ts +120 -0
- package/src/tool/board-game-timer/modules/FormatHelper.ts +12 -0
- package/src/tool/board-game-timer/modules/GameRunner.ts +136 -0
- package/src/tool/board-game-timer/modules/GameState.ts +48 -0
- package/src/tool/board-game-timer/modules/MultiplayerViewManager.ts +163 -0
- package/src/tool/board-game-timer/modules/SetupPanelManager.ts +209 -0
- package/src/tool/board-game-timer/modules/SoundManager.ts +109 -0
- package/src/tool/board-game-timer/modules/SpeechManager.ts +1 -0
- package/src/tool/board-game-timer/modules/StatsManager.ts +87 -0
- package/src/tool/board-game-timer/modules/StatsModalManager.ts +74 -0
- package/src/tool/board-game-timer/modules/TimerEngine.ts +175 -0
- package/src/tool/board-game-timer/modules/TimerEngineBase.ts +49 -0
- package/src/tool/board-game-timer/modules/TimerEngineClock.ts +127 -0
- package/src/tool/board-game-timer/modules/TimerStateHelper.ts +55 -0
- package/src/tool/board-game-timer/modules/particles.ts +108 -0
- package/src/tool/board-game-timer/seo.astro +16 -0
- package/src/tool/board-game-timer/types.ts +97 -0
- package/src/tool/dice-roller-simulator/bibliography.astro +16 -0
- package/src/tool/dice-roller-simulator/bibliography.ts +12 -0
- package/src/tool/dice-roller-simulator/client.ts +273 -0
- package/src/tool/dice-roller-simulator/component.astro +75 -0
- package/src/tool/dice-roller-simulator/components/DiceGrid.astro +55 -0
- package/src/tool/dice-roller-simulator/components/RollHistorySection.astro +26 -0
- package/src/tool/dice-roller-simulator/components/RollResultBanner.astro +10 -0
- package/src/tool/dice-roller-simulator/components/StatsPanel.astro +36 -0
- package/src/tool/dice-roller-simulator/dice-roller-simulator.css +1319 -0
- package/src/tool/dice-roller-simulator/entry.ts +39 -0
- package/src/tool/dice-roller-simulator/i18n/de.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/en.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/es.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/fr.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/id.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/it.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/ja.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/ko.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/nl.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/pl.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/pt.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/ru.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/sv.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/tr.ts +305 -0
- package/src/tool/dice-roller-simulator/i18n/zh.ts +305 -0
- package/src/tool/dice-roller-simulator/index.ts +9 -0
- package/src/tool/dice-roller-simulator/modules/chart.ts +32 -0
- package/src/tool/dice-roller-simulator/modules/history.ts +87 -0
- package/src/tool/dice-roller-simulator/modules/particles.ts +22 -0
- package/src/tool/dice-roller-simulator/seo.astro +16 -0
- package/src/tools.ts +9 -0
- package/src/types.ts +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jjlmoya/utils-tabletop",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./src/index.ts",
|
|
6
|
+
"types": "./src/index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./src/index.ts",
|
|
9
|
+
"./data": "./src/data.ts",
|
|
10
|
+
"./entries": "./src/entries.ts"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"src",
|
|
14
|
+
"scripts"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "astro dev",
|
|
21
|
+
"start": "astro dev",
|
|
22
|
+
"build": "astro build",
|
|
23
|
+
"preview": "astro preview",
|
|
24
|
+
"astro": "astro",
|
|
25
|
+
"lint": "eslint src/ --max-warnings 0 && stylelint \"src/**/*.{css,astro}\"",
|
|
26
|
+
"check": "astro check",
|
|
27
|
+
"type-check": "astro check",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"preversion": "npm run lint && npm run test",
|
|
30
|
+
"postversion": "git push && git push --tags",
|
|
31
|
+
"patch": "npm version patch",
|
|
32
|
+
"minor": "npm version minor",
|
|
33
|
+
"major": "npm version major",
|
|
34
|
+
"postinstall": "node scripts/postinstall.mjs"
|
|
35
|
+
},
|
|
36
|
+
"lint-staged": {
|
|
37
|
+
"*.{ts,tsx,astro}": [
|
|
38
|
+
"eslint --fix"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
43
|
+
"@jjlmoya/prompagate": "^1.1.0",
|
|
44
|
+
"@jjlmoya/utils-shared": "1.2.0",
|
|
45
|
+
"astro": "^6.1.2",
|
|
46
|
+
"astro-icon": "^1.1.0",
|
|
47
|
+
"html2canvas": "^1.4.1"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@astrojs/check": "^0.9.8",
|
|
51
|
+
"eslint": "^9.39.4",
|
|
52
|
+
"eslint-plugin-astro": "^1.6.0",
|
|
53
|
+
"eslint-plugin-no-comments": "^1.1.10",
|
|
54
|
+
"husky": "^9.1.7",
|
|
55
|
+
"lint-staged": "^16.4.0",
|
|
56
|
+
"postcss-html": "^1.8.1",
|
|
57
|
+
"schema-dts": "^1.1.2",
|
|
58
|
+
"stylelint": "^17.6.0",
|
|
59
|
+
"stylelint-config-standard": "^40.0.0",
|
|
60
|
+
"stylelint-declaration-strict-value": "^1.11.1",
|
|
61
|
+
"typescript": "^5.4.0",
|
|
62
|
+
"typescript-eslint": "^8.58.0",
|
|
63
|
+
"vitest": "^4.1.2"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { readFileSync, writeFileSync, mkdirSync, readdirSync } from 'fs';
|
|
2
|
+
import { join, dirname } from 'path';
|
|
3
|
+
import { fileURLToPath } from 'url';
|
|
4
|
+
|
|
5
|
+
const libDir = dirname(fileURLToPath(import.meta.url));
|
|
6
|
+
const toolsDir = join(libDir, '../src/tool');
|
|
7
|
+
|
|
8
|
+
const inNodeModules = libDir.includes('node_modules');
|
|
9
|
+
if (!inNodeModules) process.exit(0);
|
|
10
|
+
|
|
11
|
+
const projectRoot = join(libDir, '../../../..');
|
|
12
|
+
const categoryKey = JSON.parse(readFileSync(join(libDir, '../package.json'), 'utf8')).name.replace('@jjlmoya/utils-', '');
|
|
13
|
+
const destDir = join(projectRoot, `public/styles/lib/${categoryKey}`);
|
|
14
|
+
|
|
15
|
+
mkdirSync(destDir, { recursive: true });
|
|
16
|
+
|
|
17
|
+
const tools = readdirSync(toolsDir, { withFileTypes: true }).filter(d => d.isDirectory());
|
|
18
|
+
for (const tool of tools) {
|
|
19
|
+
const toolDir = join(toolsDir, tool.name);
|
|
20
|
+
let files;
|
|
21
|
+
try { files = readdirSync(toolDir).filter(f => f.endsWith('.css')); }
|
|
22
|
+
catch { continue; }
|
|
23
|
+
for (const file of files) {
|
|
24
|
+
writeFileSync(join(destDir, file), readFileSync(join(toolDir, file)));
|
|
25
|
+
console.log(`[@jjlmoya/utils-${categoryKey}] copied ${file}`);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { tabletopCategory } from './index';
|
|
4
|
+
import type { KnownLocale } from '../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'es' } = Astro.props;
|
|
11
|
+
const categoryContent = await tabletopCategory.i18n[locale as KnownLocale]?.();
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
{categoryContent && <SEORenderer content={{ locale, sections: categoryContent.seo }} />}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'brettspiele';
|
|
4
|
+
const title = 'Brettspiel Utilities und Werkzeuge';
|
|
5
|
+
const description = 'Kostenlose Werkzeuge für Brett- und Rollenspiele: würfle virtuelle Polyederwürfel mit Live-Statistiken, verwalte Zugzeiten mit einem Multiplayer-Timer und mehr. Läuft im Browser, ohne Anmeldung, 100 % privat.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Brettspiel-Werkzeuge | Online Würfeln & Zugzeiten Messen', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Spieleabende sollen Spaß machen: nicht aus der Suche nach verlorenen Würfeln oder dem Warten auf Ergebnisse bestehen. Diese Werkzeugsammlung bietet dir und deiner Gruppe schnelle, durchdachte Helfer, die sofort einsatzbereit sind. Ob Spielleiter mit tausend Dingen im Kopf oder Spieler, der einfach würfeln will: diese Tools sind für dich gemacht.' },
|
|
14
|
+
{ type: 'title', text: 'Virtuelle Würfel mit Echtzeit-Statistiken', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Keine Lust mehr, unter dem Tisch nach Würfeln zu suchen oder darauf zu warten, dass jemand Ergebnisse zusammenzählt? Der virtuelle Würfelbecher lässt dich jede Kombination von Polyederwürfeln sofort werfen - mit Modifikatoren, Vorteil, Nachteil und vollständigem Wurfverlauf. Der integrierte Wahrscheinlichkeitsrechner zeigt dir vor dem Wurf deine echten Erfolgschancen. Perfekt für Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun oder jedes Spiel, das auf Zufall basiert.' },
|
|
16
|
+
{ type: 'title', text: 'Halte dein Spiel im Takt mit einem intelligenten Zug-Timer', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Jeder kennt diesen einen Spieler, der sich in jedem Zug unendlich Zeit lässt. Der Spiel-Timer erlaubt dir faire und unterhaltsame Zeitlimits mit Modi für jeden Spielstil: von einfachem Countdown über Fischer-Inkrement bis Bronstein-Verzögerung. Funktioniert für Zweikämpfe mit geteiltem Bildschirm oder Gruppen bis zu acht Spielern mit zentraler Zugsteuerung. Nach dem Spiel gibt es detaillierte Statistiken zu Zeit und Spieltempo.' },
|
|
18
|
+
{ type: 'title', text: 'Datenschutz an erster Stelle: Alles läuft auf deinem Gerät', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Eine der größten Stärken dieser Bibliothek: Die gesamte Verarbeitung findet in deinem Browser statt. Keine Daten werden an einen Server gesendet, keine Tracking-Cookies, keine E-Mail oder Registrierung nötig. Nutze die Werkzeuge offline, teile den Bildschirm mit deiner Gruppe oder projiziere ihn auf einen Fernseher: nichts außer dem Spiel zählt. Und weitere Tools sind in Entwicklung, immer darauf ausgelegt, das Leben von Brettspielern zu erleichtern.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Werkzeuge', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Spieler', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Sprachen', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Datenschutz', value: '100 % Lokal', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'tabletop';
|
|
4
|
+
const title = 'Tabletop Game Utilities & Tools';
|
|
5
|
+
const description = 'Free tabletop and RPG utilities: roll virtual dice with live statistics, track turn times with a multiplayer game timer, and more. Works in your browser, no sign-up, 100% private.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Tabletop Game Tools | Roll Dice Online & Track Turn Times', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Game nights should be about fun, not hunting for lost dice or waiting for someone to add up their roll. This utility library gives you and your group fast, well-designed tools that work instantly—no strings attached. Whether you are a dungeon master juggling a hundred things or a player who just wants to roll without the fuss, these tools are built for you.' },
|
|
14
|
+
{ type: 'title', text: 'Roll Virtual Dice with Real-Time Statistics', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Tired of scrambling under the table for missing dice or waiting for someone to tally results? The virtual dice roller lets you throw any combination of polyhedral dice instantly, with modifiers, advantage, disadvantage, and a full roll history. The built-in probability analyzer shows your real odds before you roll, helping you make smarter decisions at the table. Perfect for Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun, or any game that relies on chance.' },
|
|
16
|
+
{ type: 'title', text: 'Keep Your Game on Pace with a Smart Turn Timer', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'We all know that one player who takes forever on every turn. The game timer lets you set fair and fun time limits, with modes that adapt to every play style—from a simple shared countdown to chess-style Fischer increment or Bronstein delay. Works for two-player duels with split-screen rotation or groups of up to eight with central turn control. When the game ends, review detailed stats on timing, rounds, and play pace.' },
|
|
18
|
+
{ type: 'title', text: 'Privacy First: Everything Runs on Your Device', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'One of the best things about this library is that everything processes in your browser. No data is sent to any server, no tracking cookies, no email or registration required. Use the tools offline, share your screen with the table, or project to a big screen TV—nothing to worry about except the game itself. And more tools are coming, always designed to make life easier for tabletop players.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Tools', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Players', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Languages', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privacy', value: '100% Local', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'juegos-de-mesa';
|
|
4
|
+
const title = 'Utilidades y Herramientas para Juegos de Mesa';
|
|
5
|
+
const description = 'Herramientas gratuitas para juegos de mesa y rol: lanza dados virtuales con estadísticas, controla los tiempos de tus partidas con un temporizador multijugador y mucho más. Todo en tu navegador, sin registro y 100% privado.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Herramientas para Juegos de Mesa y Rol | Lanzar Dados Online y Temporizador de Turnos', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Las partidas de juegos de mesa y rol son momentos para disfrutar, pero a veces los dados desaparecen, los turnos se alargan o el maestro de juego termina haciendo malabares con mil cosas a la vez. Esta librería de utilidades nace precisamente para eso: para que tú y tu mesa tengáis herramientas ágiles, bien diseñadas y que funcionen al instante, sin pediros nada a cambio.' },
|
|
14
|
+
{ type: 'title', text: 'Lanza Dados Virtuales con Estadísticas en Tiempo Real', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: '¿Cansado de rebuscar dados por el suelo o de esperar a que alguien sume resultados una y otra vez? El lanzador de dados virtual te permite tirar cualquier combinación de dados poliédricos al instante, con modificadores, ventaja, desventaja y un histórico que guarda cada tirada. Además, el análisis de probabilidad te muestra las opciones reales de éxito antes de lanzar. Perfecto para sesiones de Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun o cualquier juego que dependa del azar.' },
|
|
16
|
+
{ type: 'title', text: 'Controla los Tiempos de tu Mesa con un Temporizador Inteligente', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Todos conocemos a ese jugador que se toma su tiempo en cada turno. El temporizador de juegos de mesa te permite poner límites de tiempo de forma justa y divertida, con modos que se adaptan a cada tipo de partida: desde un simple cronómetro compartido hasta sistemas de ajedrez con incremento Fischer o retardo Bronstein. Funciona tanto para duelos a dos jugadores con pantalla partida como para grupos de hasta ocho jugadores con control centralizado. Al terminar la partida, consulta estadísticas detalladas de tiempos y ritmo de juego.' },
|
|
18
|
+
{ type: 'title', text: 'Privacidad ante Todo: Tus Datos se Quedan en tu Dispositivo', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Una de las grandes ventajas de esta librería es que todo el procesamiento ocurre en tu navegador. No enviamos datos a ningún servidor, no usamos cookies de tracking, no pedimos registro ni correo electrónico. Puedes usar las herramientas estando offline, compartir la pantalla con tu mesa o proyectarla en una televisión sin preocuparte por nada más que jugar. Además, el número de herramientas seguirá creciendo con el tiempo, siempre pensadas para facilitar la vida de los jugadores de mesa y rol.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Herramientas', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Jugadores', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Idiomas', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privacidad', value: '100% Local', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'jeux-de-societe';
|
|
4
|
+
const title = 'Utilitaires et Outils pour Jeux de Société';
|
|
5
|
+
const description = 'Outils gratuits pour jeux de société et de rôle : lancez des dés virtuels avec des statistiques en direct, gérez les temps de tour avec un chronomètre multijoueur et bien plus. Fonctionne dans votre navigateur, sans inscription, 100 % privé.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Outils pour Jeux de Société | Lancer de Dés en Ligne et Chronomètre de Tours', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Les soirées jeux devraient rimer avec plaisir, pas avec la chasse aux dés perdus ou l\'attente interminable de résultats. Cette bibliothèque d\'utilitaires offre à vous et votre groupe des outils rapides, bien conçus, qui fonctionnent instantanément, sans rien demander en retour. Que vous soyez un maître du jeu débordé ou un joueur qui veut simplement lancer ses dés sans tracas, ces outils sont faits pour vous.' },
|
|
14
|
+
{ type: 'title', text: 'Lancez des Dés Virtuels avec des Statistiques en Temps Réel', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Marre de chercher vos dés sous la table ou d\'attendre que quelqu\'un additionne ses résultats ? Le lanceur de dés virtuel vous permet de jeter n\'importe quelle combinaison de dés polyédriques instantanément, avec modificateurs, avantage, désavantage et un historique complet. L\'analyseur de probabilités intégré vous montre vos chances réelles avant de lancer. Parfait pour Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun ou tout jeu reposant sur le hasard.' },
|
|
16
|
+
{ type: 'title', text: 'Gardez le Rythme avec un Chronomètre de Tour Intelligent', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'On connaît tous ce joueur qui prend une éternité à chaque tour. Le chronomètre de jeu vous permet de fixer des limites de temps justes et amusantes, avec des modes qui s\'adaptent à chaque style : du simple compte à rebours partagé aux systèmes d\'échecs avec incrément Fischer ou délai Bronstein. Fonctionne pour les duels à deux en écran partagé ou pour les groupes jusqu\'à huit joueurs avec contrôle centralisé. Après la partie, consultez des statistiques détaillées sur les temps et le rythme de jeu.' },
|
|
18
|
+
{ type: 'title', text: 'La Vie Privée Avant Tout : Vos Données Restent sur Votre Appareil', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'L\'un des grands atouts de cette bibliothèque est que tout le traitement s\'effectue dans votre navigateur. Aucune donnée n\'est envoyée à un serveur, pas de cookies de pistage, pas d\'email ni d\'inscription requis. Utilisez les outils hors ligne, partagez votre écran avec la table ou projetez sur un téléviseur - rien d\'autre à gérer que le jeu lui-même. Et d\'autres outils arrivent, toujours conçus pour simplifier la vie des joueurs de société.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Outils', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Joueurs', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Langues', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Confidentialité', value: '100 % Local', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'permainan-papan';
|
|
4
|
+
const title = 'Utilitas & Alat untuk Permainan Papan';
|
|
5
|
+
const description = 'Alat gratis untuk permainan papan dan RPG: lempar dadu virtual dengan statistik langsung, kelola waktu giliran dengan timer multipemain, dan banyak lagi. Berfungsi di browser, tanpa pendaftaran, 100% pribadi.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Alat Permainan Papan | Lempar Dadu Online dan Timer Giliran', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Malam bermain seharusnya menyenangkan, bukan berburu dadu yang hilang atau menunggu seseorang menjumlahkan hasil. Perpustakaan utilitas ini memberimu dan grupmu alat yang cepat dan dirancang dengan baik yang langsung berfungsi, tanpa meminta imbalan apa pun. Baik kamu seorang dungeon master yang mengatur seribu hal atau pemain yang hanya ingin melempar dadu tanpa ribet, alat ini dibuat untukmu.' },
|
|
14
|
+
{ type: 'title', text: 'Lempar Dadu Virtual dengan Statistik Waktu Nyata', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Lelah mencari dadu di bawah meja atau menunggu seseorang menjumlahkan hasil? Pelempar dadu virtual memungkinkanmu melempar kombinasi dadu polihedral apa pun secara instan dengan modifier, advantage, disadvantage, dan riwayat lengkap. Penganalisis probabilitas bawaan menunjukkan peluang sukses nyatamu sebelum melempar. Sempurna untuk Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun, atau permainan apa pun yang mengandalkan keberuntungan.' },
|
|
16
|
+
{ type: 'title', text: 'Jaga Kecepatan Permainan dengan Timer Giliran Pintar', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Kita semua tahu pemain yang butuh waktu lama di setiap giliran. Timer permainan memungkinkanmu menetapkan batas waktu yang adil dan menyenangkan dengan mode yang sesuai dengan setiap gaya bermain - dari hitung mundur bersama yang sederhana hingga sistem catur dengan increment Fischer or delay Bronstein. Berfungsi untuk duel dua pemain dengan layar terbagi atau grup hingga delapan pemain dengan kontrol giliran terpusat. Setelah permainan selesai, lihat statistik terperinci tentang waktu dan ritme bermain.' },
|
|
18
|
+
{ type: 'title', text: 'Privasi Utama: Datamu Tetap di Perangkatmu', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Salah satu keunggulan besar perpustakaan ini adalah semua pemrosesan terjadi di browsermu. Tidak ada data yang dikirim ke server, tidak ada cookie pelacakan, tidak perlu email atau pendaftaran. Gunakan alat secara offline, bagikan layar dengan meja permainan, atau proyeksikan ke TV - tidak ada yang perlu dikhawatirkan selain permainan itu sendiri. Dan lebih banyak alat akan segera hadir, selalu dirancang untuk memudahkan hidup para pemain permainan papan.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Alat', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Pemain', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Bahasa', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privasi', value: '100% Lokal', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'giochi-da-tavolo';
|
|
4
|
+
const title = 'Utilità e Strumenti per Giochi da Tavolo';
|
|
5
|
+
const description = 'Strumenti gratuiti per giochi da tavolo e di ruolo: lancia dadi virtuali con statistiche in tempo reale, gestisci i tempi di turno con un cronometro multigiocatore e molto altro. Funziona nel browser, senza registrazione, 100% privato.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Strumenti per Giochi da Tavolo | Lancia Dadi Online e Cronometra i Turni', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Le serate di gioco dovrebbero essere divertimento, non una caccia ai dadi persi o l\'attesa che qualcuno sommi i risultati. Questa libreria di utilità offre a te e al tuo gruppo strumenti rapidi e ben progettati che funzionano all\'istante, senza chiedere nulla in cambio. Che tu sia un master oberato di cose da gestire o un giocatore che vuole semplicemente tirare i dadi senza pensieri, questi strumenti sono fatti per te.' },
|
|
14
|
+
{ type: 'title', text: 'Lancia Dadi Virtuali con Statistiche in Tempo Reale', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Stanco di cercare dadi sotto il tavolo o di aspettare che qualcuno faccia i totali? Il lanciatore di dadi virtuale ti permette di tirare qualsiasi combinazione di dadi poliedrici all\'istante, con modificatori, vantaggio, svantaggio e uno storico completo. L\'analizzatore di probabilità integrato mostra le tue reali possibilità prima di lanciare. Perfetto per Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun o qualsiasi gioco basato sul caso.' },
|
|
16
|
+
{ type: 'title', text: 'Mantieni il Ritmo con un Cronometro Turni Intelligente', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Conosciamo tutti quel giocatore che impiega un\'eternità a ogni turno. Il cronometro da gioco ti permette di impostare limiti di tempo equi e divertenti, con modalità che si adattano a ogni stile: dal semplice conto alla rovescia condiviso ai sistemi da scacchi con incremento Fischer o ritardo Bronstein. Funziona per duelli a due con schermo diviso o gruppi fino a otto giocatori con controllo centralizzato. A fine partita, consulta statistiche dettagliate su tempi e ritmo di gioco.' },
|
|
18
|
+
{ type: 'title', text: 'Privacy Prima di Tutto: I Tuoi Dati Restano sul Tuo Dispositivo', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Uno dei grandi vantaggi di questa libreria è che tutto viene elaborato nel tuo browser. Nessun dato viene inviato a server, niente cookie di tracciamento, nessuna email o registrazione richiesta. Usa gli strumenti offline, condividi lo schermo con il tavolo o proietta su un televisore: niente di cui preoccuparsi se non del gioco stesso. E altri strumenti arriveranno, sempre pensati per semplificare la vita dei giocatori da tavolo.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Strumenti', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Giocatori', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Lingue', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privacy', value: '100% Locale', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'tabletop';
|
|
4
|
+
const title = 'ボードゲーム用ユーティリティ&ツール';
|
|
5
|
+
const description = 'ボードゲーム&TRPGのための無料ツール:リアルタイム統計付きダイスローラー、マルチプレイヤーターンタイマーなど。ブラウザで動作、登録不要、100%プライベート。';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'ボードゲームツール | オンラインダイスロール&ターンタイマー', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'ゲームナイトは楽しむためのもの。無くしたダイスを探したり、誰かが結果を合計するのを待ったりするものではありません。このユーティリティライブラリは、あなたとあなたのグループに、すぐに使える高速で洗練されたツールを提供します。ダンジョンマスターも、気軽にダイスを振りたいプレイヤーも、これらのツールはあなたのために作られています。' },
|
|
14
|
+
{ type: 'title', text: 'リアルタイム統計付きバーチャルダイス', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'テーブルの下でダイスを探すのにうんざりしていませんか?誰かが結果を合計するのを待つのはもう結構。バーチャルダイスローラーを使えば、あらゆる種類の多面体ダイスを、修正値、アドバンテージ、ディスアドバンテージ、完全な履歴付きで即座に振れます。内蔵の確率分析ツールが、振る前に実際の成功率を表示します。Dungeons & Dragons、Pathfinder、Call of Cthulhu、Shadowrunなど、あらゆるゲームに最適です。' },
|
|
16
|
+
{ type: 'title', text: 'スマートターンタイマーでゲームのペースを管理', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: '毎ターンに永遠の時間をかけるあのプレイヤー、誰もが知っていますよね。ゲームタイマーを使えば、公平で楽しい時間制限を設定できます。シンプルな共有カウントダウンから、フィッシャー式インクリメントやブロンスタイン式ディレイなどのチェスシステムまで、あらゆるプレイスタイルに対応。2人対戦の分割画面デュエルから最大8人の中央制御グループまで対応可能。ゲーム終了後には、時間とプレイペースの詳細な統計を確認できます。' },
|
|
18
|
+
{ type: 'title', text: 'プライバシー第一:すべてのデータはお使いのデバイスに残ります', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'このライブラリの最大の利点のひとつは、すべての処理がブラウザ内で行われることです。サーバーにデータが送信されることはなく、トラッキングCookieもなく、メールアドレスや登録も必要ありません。オフラインでツールを使用したり、画面をテーブルで共有したり、テレビに投影したりできます。ゲーム以外に心配することは何もありません。そして、ボードゲーマーの生活をより快適にするために、さらに多くのツールが追加される予定です。' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'ツール数', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'プレイヤー', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: '言語数', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'プライバシー', value: '100% ローカル', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'tabletop';
|
|
4
|
+
const title = '보드게임 유틸리티 및 도구';
|
|
5
|
+
const description = '보드게임과 TRPG를 위한 무료 도구: 실시간 통계가 포함된 가상 주사위 굴리기, 멀티플레이어 턴 타이머 등. 브라우저에서 작동, 가입 불필요, 100% 비공개.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: '보드게임 도구 | 온라인 주사위 굴리기 및 턴 타이머', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: '게임 나이트는 즐거움을 위한 시간이지, 잃어버린 주사위를 찾거나 누군가 결과를 계산하기를 기다리는 시간이 아닙니다. 이 유틸리티 라이브러리는 여러분과 여러분의 그룹을 위해 즉시 작동하는 빠르고 잘 설계된 도구를 제공합니다. 수백 가지 일을 처리하는 던전 마스터든, 간편하게 주사위를 굴리고 싶은 플레이어든, 이 도구들은 여러분을 위해 만들어졌습니다.' },
|
|
14
|
+
{ type: 'title', text: '실시간 통계와 함께하는 가상 주사위 굴리기', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: '테이블 아래에서 주사위를 찾느라 지치셨나요? 누군가 결과를 합산할 때까지 기다리는 데 지치셨나요? 가상 주사위 굴리기를 사용하면 모든 종류의 다면체 주사위를 수정자, 어드밴티지, 디스어드밴티지, 전체 기록과 함께 즉시 굴릴 수 있습니다. 내장된 확률 분석기가 굴리기 전에 실제 성공 확률을 보여줍니다. Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun 등 운에 의존하는 모든 게임에 완벽합니다.' },
|
|
16
|
+
{ type: 'title', text: '스마트 턴 타이머로 게임 페이스 유지하기', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: '매 턴마다 영원한 시간을 쓰는 그 플레이어, 모두 알고 계실 겁니다. 게임 타이머를 사용하면 공정하고 재미있는 시간 제한을 설정할 수 있습니다. 단순한 공유 카운트다운부터 Fischer 증분 또는 Bronstein 지연과 같은 체스 시스템까지 모든 플레이 스타일에 맞는 모드를 제공합니다. 분할 화면의 2인 대결부터 최대 8인의 중앙 제어 그룹까지 지원합니다. 게임 종료 후에는 시간과 플레이 페이스에 대한 자세한 통계를 확인할 수 있습니다.' },
|
|
18
|
+
{ type: 'title', text: '프라이버시 우선: 모든 데이터는 사용자 기기에 저장됩니다', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: '이 라이브러리의 가장 큰 장점 중 하나는 모든 처리가 브라우저 내에서 이루어진다는 것입니다. 서버로 전송되는 데이터가 없으며, 추적 쿠키도 없고, 이메일이나 가입이 필요하지 않습니다. 오프라인에서 도구를 사용하고, 화면을 테이블과 공유하거나 TV에 투사할 수 있습니다. 게임 자체 외에는 걱정할 것이 없습니다. 그리고 보드게이머의 삶을 더 편하게 만들기 위해 더 많은 도구가 계속 추가될 예정입니다.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: '도구', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: '플레이어', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: '언어', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: '개인정보 보호', value: '100% 로컬', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'bordspelen';
|
|
4
|
+
const title = 'Bordspel Hulpmiddelen & Utilities';
|
|
5
|
+
const description = 'Gratis hulpmiddelen voor bordspellen en RPGs: gooi virtuele dobbelstenen met live statistieken, beheer beurt tijden met een multi-player timer en meer. Werkt in de browser, geen registratie, 100% privé.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Bordspel Hulpmiddelen | Online Dobbelen en Beurt Timer', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Spelavonden zouden draaien om plezier, niet om het zoeken naar verdwenen dobbelstenen of wachten tot iemand zijn resultaten optelt. Deze bibliotheek met hulpmiddelen biedt jou en je groep snelle, doordachte tools die direct werken, zonder er iets voor terug te vragen. Of je nu een spelleider bent die met duizend dingen tegelijk bezig is of een speler die gewoon wil dobbelen zonder gedoe, deze tools zijn voor jou gemaakt.' },
|
|
14
|
+
{ type: 'title', text: 'Gooi Virtuele Dobbelstenen met Real-Time Statistieken', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Ben je het zat om onder de tafel naar dobbelstenen te zoeken of te wachten tot iemand de uitslagen optelt? De virtuele dobbelsteenwerper laat je direct elke combinatie van veelvlakkige dobbelstenen gooien met modifiers, voordeel, nadeel en een volledige geschiedenis. De ingebouwde kansanalyse toont je echte slagingskansen voordat je gooit. Perfect voor Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun of elk spel dat afhankelijk is van geluk.' },
|
|
16
|
+
{ type: 'title', text: 'Houd je Spel in Stap met een Slimme Beurt Timer', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'We kennen allemaal die ene speler die eeuwigheid nodig heeft voor elke beurt. De speltimer laat je eerlijke en leuke tijdslimieten instellen met modi die passen bij elke speelstijl - van een simpele gedeelde aftelling tot schaakachtige systemen met Fischer-increment of Bronstein-vertraging. Werkt voor tweegevechten met gesplitst scherm of groepen tot acht spelers met centrale beurtbediening. Na het spel kun je gedetailleerde statistieken bekijken over tijd en speeltempo.' },
|
|
18
|
+
{ type: 'title', text: 'Privacy Voorop: Al je Gegevens Blijven op je Apparaat', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Een van de grootste voordelen van deze bibliotheek is dat alle verwerking in je browser plaatsvindt. Er worden geen gegevens naar een server gestuurd, geen tracking-cookies, geen e-mail of registratie nodig. Gebruik de tools offline, deel je scherm met de tafel of projecteer op een tv - niets om je zorgen over te maken behalve het spel zelf. En er komen meer tools aan, altijd ontworpen om het leven van bordspelers makkelijker te maken.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Hulpmiddelen', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Spelers', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Talen', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privacy', value: '100% Lokaal', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'gry-planszowe';
|
|
4
|
+
const title = 'Narzędzia i Pomocniki do Gier Planszowych';
|
|
5
|
+
const description = 'Darmowe narzędzia do gier planszowych i RPG: rzucaj wirtualnymi kośćmi z statystykami na żywo, zarządzaj czasem tur z multi-timerem i nie tylko. Działa w przeglądarce, bez rejestracji, 100% prywatności.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Narzędzia do Gier Planszowych | Rzut Kościami Online i Stoper Tur', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Wieczory z grami powinny być przyjemnością, a nie polowaniem na zgubione kości czy czekaniem, aż ktoś podliczy wyniki. Ta biblioteka narzędzi daje tobie i twojej grupie szybkie, przemyślane pomocniki, które działają od razu, niczego nie żądając w zamian. Niezależnie od tego, czy jesteś mistrzem gry żonglującym setkami spraw, czy graczem, który po prostu chce rzucić kośćmi bez ceregieli, te narzędzia są stworzone dla ciebie.' },
|
|
14
|
+
{ type: 'title', text: 'Rzucaj Wirtualnymi Kośćmi ze Statystykami w Czasie Rzeczywistym', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Masz dość szukania kości pod stołem lub czekania, aż ktoś zsumuje wyniki? Wirtualny rzut kośćmi pozwala ci błyskawicznie rzucić dowolną kombinacją kości wielościennych z modyfikatorami, przewagą, utrudnieniem i pełną historią rzutów. Wbudowany analizator prawdopodobieństwa pokazuje rzeczywiste szanse powodzenia przed rzutem. Idealny do Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun i każdej gry opartej na losowości.' },
|
|
16
|
+
{ type: 'title', text: 'Utrzymuj Tempo Gry z Inteligentnym Stoperem Tur', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Wszyscy znamy tego gracza, który w każdej turze zajmuje wieczność. Stoper gry pozwala ustawić sprawiedliwe i zabawne limity czasowe z trybami dopasowanymi do każdego stylu gry - od prostego wspólnego odliczania po szachowe systemy z inkrementem Fischera lub opóźnieniem Bronsteina. Działa dla pojedynków z podzielonym ekranem lub grup do ośmiu graczy z centralnym sterowaniem. Po zakończeniu gry możesz przejrzeć szczegółowe statystyki czasu i tempa gry.' },
|
|
18
|
+
{ type: 'title', text: 'Prywatność Przede Wszystkim: Dane Zostają na Twoim Urządzeniu', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Jedną z największych zalet tej biblioteki jest to, że całe przetwarzanie odbywa się w twojej przeglądarce. Żadne dane nie są wysyłane na serwer, brak ciasteczek śledzących, nie potrzeba emaila ani rejestracji. Używaj narzędzi offline, udostępniaj ekran przy stole lub wyświetl na telewizorze - nie musisz martwić się o nic poza samą grą. A kolejne narzędzia są w drodze, zawsze projektowane z myślą o ułatwieniu życia graczom planszowym.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Narzędzia', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Gracze', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Języki', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Prywatność', value: '100% Lokalnie', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'jogos-de-mesa';
|
|
4
|
+
const title = 'Utilitários e Ferramentas para Jogos de Mesa';
|
|
5
|
+
const description = 'Ferramentas gratuitas para jogos de mesa e RPG: lance dados virtuais com estatísticas ao vivo, controle os tempos de turno com um cronómetro multijogador e muito mais. Funciona no navegador, sem registo, 100% privado.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Ferramentas para Jogos de Mesa | Lançar Dados Online e Cronómetro de Turnos', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'As noites de jogo deviam ser diversão, não uma caça aos dados perdidos ou espera interminável por resultados. Esta biblioteca de utilitários oferece a ti e ao teu grupo ferramentas rápidas, bem desenhadas, que funcionam instantaneamente, sem pedir nada em troca. Quer sejas um mestre de jogo a fazer malabarismos com mil coisas ou um jogador que só quer lançar dados sem complicações, estas ferramentas são para ti.' },
|
|
14
|
+
{ type: 'title', text: 'Lança Dados Virtuais com Estatísticas em Tempo Real', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Cansado de procurar dados pelo chão ou de esperar que alguém some os resultados? O lançador de dados virtual permite-te lançar qualquer combinação de dados poliédricos instantaneamente, com modificadores, vantagem, desvantagem e um histórico completo. O analisador de probabilidades integrado mostra as tuas hipóteses reais antes de lançar. Perfeito para Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun ou qualquer jogo que dependa do acaso.' },
|
|
16
|
+
{ type: 'title', text: 'Mantém o Ritmo do Jogo com um Cronómetro de Turnos Inteligente', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Todos conhecemos aquele jogador que demora uma eternidade em cada turno. O cronómetro de jogo permite-te definir limites de tempo justos e divertidos, com modos que se adaptam a cada estilo: desde um simples cronómetro partilhado até sistemas de xadrez com incremento Fischer ou atraso Bronstein. Funciona para duelos a dois com ecrã dividido ou grupos até oito jogadores com controlo centralizado. No final da partida, consulta estatísticas detalhadas de tempos e ritmo de jogo.' },
|
|
18
|
+
{ type: 'title', text: 'Privacidade em Primeiro Lugar: Os Teus Dados Ficam no Teu Dispositivo', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Uma das grandes vantagens desta biblioteca é que todo o processamento ocorre no teu navegador. Nenhum dado é enviado para servidores, sem cookies de rastreio, sem email ou registo necessário. Usa as ferramentas offline, partilha o ecrã com a mesa ou projeta numa televisão - nada com que te preocupar além do próprio jogo. E mais ferramentas estão a chegar, sempre pensadas para facilitar a vida dos jogadores de mesa.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Ferramentas', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Jogadores', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Idiomas', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Privacidade', value: '100% Local', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'nastolnye-igry';
|
|
4
|
+
const title = 'Инструменты и утилиты для настольных игр';
|
|
5
|
+
const description = 'Бесплатные инструменты для настольных и ролевых игр: бросайте виртуальные кости со статистикой в реальном времени, управляйте временем ходов с многоигроковым таймером и не только. Работает в браузере, без регистрации, 100% конфиденциально.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Инструменты для настольных игр | Броски костей онлайн и таймер ходов', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Игровые вечера должны приносить удовольствие, а не превращаться в поиск потерянных костей или ожидание подсчёта результатов. Эта библиотека утилит даёт вам и вашей группе быстрые, продуманные инструменты, которые работают мгновенно и ничего не требуют взамен. Будь вы ведущим, жонглирующим сотней задач, или игроком, который просто хочет бросить кости без лишних хлопот, эти инструменты созданы для вас.' },
|
|
14
|
+
{ type: 'title', text: 'Бросайте виртуальные кости со статистикой в реальном времени', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Устали искать кости под столом или ждать, пока кто-то подсчитает результаты? Виртуальный бросок костей позволяет мгновенно кидать любую комбинацию многогранных костей с модификаторами, преимуществом, помехой и полной историей бросков. Встроенный анализатор вероятностей показывает реальные шансы на успех до броска. Идеально для Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun и любой игры, основанной на случайности.' },
|
|
16
|
+
{ type: 'title', text: 'Контролируйте темп игры с умным таймером ходов', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Все мы знаем того игрока, который тратит вечность на каждый ход. Игровой таймер позволяет устанавливать справедливые и увлекательные лимиты времени с режимами на любой стиль: от простого общего отсчёта до шахматных систем с инкрементом Фишера или задержкой Бронштейна. Работает для дуэлей с разделённым экраном или групп до восьми игроков с централизованным управлением. После игры доступна подробная статистика времени и темпа.' },
|
|
18
|
+
{ type: 'title', text: 'Конфиденциальность превыше всего: все данные остаются на вашем устройстве', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Одно из главных преимуществ этой библиотеки — вся обработка происходит в вашем браузере. Никакие данные не отправляются на сервер, нет отслеживающих cookie, не требуется email или регистрация. Используйте инструменты офлайн, делитесь экраном с игроками или выводите на телевизор — ни о чём, кроме игры, беспокоиться не придётся. А новые инструменты уже в разработке, всегда нацеленные на то, чтобы облегчить жизнь любителям настольных игр.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Инструментов', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Игроков', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Языков', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Конфиденциальность', value: '100% Локально', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'bordspel';
|
|
4
|
+
const title = 'Brädspelsverktyg & Hjälpmedel';
|
|
5
|
+
const description = 'Gratis verktyg för brädspel och rollspel: slå virtuella tärningar med realtidsstatistik, håll koll på speltid med en multitimer och mycket mer. Fungerar i webbläsaren, ingen registrering krävs, 100 % privat.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Brädspelsverktyg | Slå Tärningar Online och Tidtagning för Rundor', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Spelkvällar handlar om att ha kul - inte om att leta efter borttappade tärningar eller vänta på att någon ska räkna ihop sina resultat. Detta verktygsbibliotek ger dig och din grupp snabba, väldesignade hjälpmedel som fungerar direkt, utan krav på något i gengäld. Oavsett om du är en spelledare som jonglerar med tusen saker eller en spelare som bara vill slå tärningar utan krångel, är dessa verktyg gjorda för dig.' },
|
|
14
|
+
{ type: 'title', text: 'Slå Virtuella Tärningar med Realtidsstatistik', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Trött på att leta efter tärningar under bordet eller vänta på att någon ska summera resultat? Den virtuella tärningsslungaren låter dig omedelbart kasta vilken kombination av polyedertärningar som helst med modifikation, fördel, nackdel och fullständig kastlogg. Den inbyggda sannolikhetsanalysatorn visar dina verkliga chanser innan du kastar. Perfekt för Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun eller alla spel som bygger på slump.' },
|
|
16
|
+
{ type: 'title', text: 'Håll Tempot med en Smart Runda-Timer', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Vi känner alla igen den spelaren som tar evigheter på sig varje runda. Speltimern låter dig sätta rättvisa och roliga tidsgränser med lägen som passar alla spelstilar - från en enkel delad nedräkning till schackinspirerade system med Fischer-inkrement eller Bronstein-fördröjning. Fungerar för dueller med delad skärm eller grupper på upp till åtta spelare med central rundkontroll. När spelet är slut kan du se detaljerad statistik över tid och speltempo.' },
|
|
18
|
+
{ type: 'title', text: 'Integritet Först: All Data Stannar på Din Enhet', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'En av de stora fördelarna med detta bibliotek är att all bearbetning sker i din webbläsare. Ingen data skickas till någon server, inga spårningskakor, ingen e-post eller registrering krävs. Använd verktygen offline, dela din skärm med bordet eller projicera på en TV - inget att oroa sig för förutom själva spelet. Och fler verktyg är på väg, allt designat för att göra livet enklare för brädspelare.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Verktyg', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Spelare', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Språk', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Dataintegritet', value: '100 % Lokalt', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'masa-oyunlari';
|
|
4
|
+
const title = 'Masa Oyunu Araçları ve Yardımcı Programları';
|
|
5
|
+
const description = 'Masa oyunları ve RPG için ücretsiz araçlar: canlı istatistiklerle sanal zar atma, çok oyunculu süreölçer ile tur sürelerini yönetme ve daha fazlası. Tarayıcıda çalışır, kayıt gerekmez, %100 gizli.';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: 'Masa Oyunu Araçları | Çevrimiçi Zar Atma ve Tur Zamanlayıcısı', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: 'Oyun geceleri eğlence içindir, kayıp zar aramak ya da birinin sonuçları toplamasını beklemek için değil. Bu yardımcı program kütüphanesi, sana ve grubuna anında çalışan hızlı, iyi tasarlanmış araçlar sunar, karşılığında hiçbir şey istemez. İster bin bir şeyle uğraşan bir zindan efendisi ol, ister sadece zahmetsizce zar atmak isteyen bir oyuncu, bu araçlar senin için yapıldı.' },
|
|
14
|
+
{ type: 'title', text: 'Gerçek Zamanlı İstatistiklerle Sanal Zar Atma', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: 'Masanın altında zar aramaktan ya da birinin sonuçları toplamasını beklemekten bıktın mı? Sanal zar atıcı, değiştiriciler, avantaj, dezavantaj ve tam geçmişle birlikte herhangi bir çokyüzlü zar kombinasyonunu anında atmanı sağlar. Dahili olasılık analizörü, atmadan önce gerçek başarı şansını gösterir. Dungeons & Dragons, Pathfinder, Call of Cthulhu, Shadowrun veya şansa dayalı herhangi bir oyun için mükemmel.' },
|
|
16
|
+
{ type: 'title', text: 'Akıllı Tur Zamanlayıcısı ile Oyunun Temposunu Koru', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: 'Her turda sonsuz zaman harcayan o oyuncuyu hepimiz biliriz. Oyun zamanlayıcısı, her oyun stiline uygun modlarla adil ve eğlenceli zaman sınırları belirlemeni sağlar - basit bir ortak geri sayımdan Fischer artırımı veya Bronstein gecikmeli satranç sistemlerine kadar. Bölünmüş ekranlı iki oyunculu düellolar veya merkezi kontrollü sekiz oyuncuya kadar gruplar için çalışır. Oyun bittiğinde, zaman ve oyun temposu hakkında ayrıntılı istatistikleri görüntüleyebilirsin.' },
|
|
18
|
+
{ type: 'title', text: 'Gizlilik Önceliklidir: Tüm Verilerin Cihazında Kalır', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: 'Bu kütüphanenin en büyük avantajlarından biri, tüm işlemenin tarayıcında gerçekleşmesidir. Hiçbir veri sunucuya gönderilmez, izleme çerezi yoktur, e-posta veya kayıt gerekmez. Araçları çevrimdışı kullan, ekranını masayla paylaş veya bir televizyona yansıt - oyunun kendisi dışında endişelenecek bir şey yok. Ve masa oyuncularının hayatını kolaylaştırmak için her zaman tasarlanmış daha fazla araç yolda.' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: 'Araçlar', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: 'Oyuncular', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: 'Diller', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: 'Gizlilik', value: '%100 Yerel', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
const slug = 'tabletop';
|
|
4
|
+
const title = '桌游工具与实用程序';
|
|
5
|
+
const description = '免费的桌游和TRPG工具:虚拟骰子带实时统计,多人回合计时器等。在浏览器中运行,无需注册,100%隐私保护。';
|
|
6
|
+
|
|
7
|
+
export const content: CategoryLocaleContent = {
|
|
8
|
+
slug,
|
|
9
|
+
title,
|
|
10
|
+
description,
|
|
11
|
+
seo: [
|
|
12
|
+
{ type: 'title', text: '桌游工具 | 在线掷骰子和回合计时器', level: 2 },
|
|
13
|
+
{ type: 'paragraph', html: '游戏之夜本该充满乐趣,而不是到处找丢失的骰子或等待别人计算结果。这款实用工具库为您和您的团队提供快速、精心设计的工具,即刻可用,无需任何回报。无论您是手忙脚乱的 dungeon master,还是只想轻松掷骰的玩家,这些工具都是为您打造的。' },
|
|
14
|
+
{ type: 'title', text: '使用虚拟骰子进行实时统计分析', level: 2 },
|
|
15
|
+
{ type: 'paragraph', html: '厌倦了在桌子下找骰子或等待别人加总结果?虚拟骰子掷投器让您立即投掷任何组合的多面骰子,支持调整值、优势、劣势和完整历史记录。内置概率分析器在投掷前显示您的真实成功率。非常适合 Dungeons & Dragons、Pathfinder、Call of Cthulhu、Shadowrun 或任何依赖运气的游戏。' },
|
|
16
|
+
{ type: 'title', text: '使用智能回合计时器掌控游戏节奏', level: 2 },
|
|
17
|
+
{ type: 'paragraph', html: '我们都知道那个每回合都要花上大量时间的玩家。游戏计时器让您设定公平又有趣的时间限制,提供适应各种风格的模式:从简单的共享倒计时到 Fischer 增量或 Bronstein 延迟等国际象棋系统。支持双人分屏对决和最多八人的中央控制模式。游戏结束后,可查看时间和游戏节奏的详细统计数据。' },
|
|
18
|
+
{ type: 'title', text: '隐私至上:所有数据保留在您的设备上', level: 2 },
|
|
19
|
+
{ type: 'paragraph', html: '该库的最大优势之一是所有处理都在您的浏览器内完成。不会有数据发送到服务器,没有跟踪 Cookie,无需电子邮件或注册。可离线使用工具,与桌上玩家共享屏幕,或投影到电视上——除了游戏本身,无需担心任何事。更多的工具正在开发中,始终以方便桌游玩家为设计目标。' },
|
|
20
|
+
{ type: 'stats', items: [
|
|
21
|
+
{ label: '工具', value: '2+', icon: 'mdi:tools' },
|
|
22
|
+
{ label: '玩家', value: '2-8', icon: 'mdi:account-group' },
|
|
23
|
+
{ label: '语言', value: '15', icon: 'mdi:translate' },
|
|
24
|
+
{ label: '数据隐私', value: '100% 本地', icon: 'mdi:shield-check' },
|
|
25
|
+
] },
|
|
26
|
+
],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { diceRollerSimulator } from '../tool/dice-roller-simulator/entry';
|
|
2
|
+
import { boardGameTimer } from '../tool/board-game-timer/entry';
|
|
3
|
+
|
|
4
|
+
export const tabletopCategory = {
|
|
5
|
+
icon: 'mdi:dice-multiple-outline',
|
|
6
|
+
tools: [
|
|
7
|
+
diceRollerSimulator,
|
|
8
|
+
boardGameTimer,
|
|
9
|
+
],
|
|
10
|
+
i18n: {
|
|
11
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
12
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
15
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
16
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
17
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
18
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
19
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
20
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
21
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
22
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
23
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
24
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
25
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
26
|
+
},
|
|
27
|
+
};
|