@jjlmoya/utils-games-development 1.46.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.
Files changed (84) hide show
  1. package/package.json +67 -0
  2. package/scripts/postinstall.mjs +27 -0
  3. package/src/category/GamesCategorySEO.astro +19 -0
  4. package/src/category/i18n/de.ts +15 -0
  5. package/src/category/i18n/en.ts +15 -0
  6. package/src/category/i18n/es.ts +15 -0
  7. package/src/category/i18n/fr.ts +15 -0
  8. package/src/category/i18n/id.ts +10 -0
  9. package/src/category/i18n/it.ts +10 -0
  10. package/src/category/i18n/ja.ts +10 -0
  11. package/src/category/i18n/ko.ts +10 -0
  12. package/src/category/i18n/nl.ts +10 -0
  13. package/src/category/i18n/pl.ts +10 -0
  14. package/src/category/i18n/pt.ts +10 -0
  15. package/src/category/i18n/ru.ts +10 -0
  16. package/src/category/i18n/sv.ts +10 -0
  17. package/src/category/i18n/tr.ts +10 -0
  18. package/src/category/i18n/zh.ts +10 -0
  19. package/src/category/index.ts +24 -0
  20. package/src/category/seo.astro +15 -0
  21. package/src/components/PreviewNavSidebar.astro +116 -0
  22. package/src/components/PreviewToolbar.astro +143 -0
  23. package/src/data.ts +11 -0
  24. package/src/entries.ts +5 -0
  25. package/src/env.d.ts +5 -0
  26. package/src/index.ts +21 -0
  27. package/src/layouts/PreviewLayout.astro +122 -0
  28. package/src/pages/[locale]/[slug].astro +165 -0
  29. package/src/pages/[locale].astro +251 -0
  30. package/src/pages/index.astro +4 -0
  31. package/src/tests/diacritics_density.test.ts +118 -0
  32. package/src/tests/faq_count.test.ts +19 -0
  33. package/src/tests/i18n_coverage.test.ts +36 -0
  34. package/src/tests/inverted_punctuation.test.ts +84 -0
  35. package/src/tests/locale_completeness.test.ts +27 -0
  36. package/src/tests/mocks/astro_mock.js +2 -0
  37. package/src/tests/no_en_dash.test.ts +70 -0
  38. package/src/tests/no_h1_in_components.test.ts +48 -0
  39. package/src/tests/pagespeed_best_practices.test.ts +198 -0
  40. package/src/tests/qa-test-helpers.ts +32 -0
  41. package/src/tests/qa_bibliography_links.test.ts +41 -0
  42. package/src/tests/qa_claim_evidence.test.ts +69 -0
  43. package/src/tests/qa_logic_reference_coverage.test.ts +46 -0
  44. package/src/tests/qa_runtime_i18n.test.ts +100 -0
  45. package/src/tests/schemas_fulfillment.test.ts +23 -0
  46. package/src/tests/script_density.test.ts +94 -0
  47. package/src/tests/seo_length.test.ts +23 -0
  48. package/src/tests/slug_language_code_format.test.ts +23 -0
  49. package/src/tests/slug_uniqueness.test.ts +81 -0
  50. package/src/tests/title_quality.test.ts +56 -0
  51. package/src/tests/tool_validation.test.ts +17 -0
  52. package/src/tool/steamCapsuleGenerator/bibliography.astro +6 -0
  53. package/src/tool/steamCapsuleGenerator/bibliography.ts +6 -0
  54. package/src/tool/steamCapsuleGenerator/component.astro +289 -0
  55. package/src/tool/steamCapsuleGenerator/components/SteamLibraryGridMockup.astro +51 -0
  56. package/src/tool/steamCapsuleGenerator/components/SteamLibraryMockup.astro +64 -0
  57. package/src/tool/steamCapsuleGenerator/components/SteamMasterControls.astro +2 -0
  58. package/src/tool/steamCapsuleGenerator/components/SteamStoreMockup.astro +90 -0
  59. package/src/tool/steamCapsuleGenerator/entry.ts +28 -0
  60. package/src/tool/steamCapsuleGenerator/i18n/de.ts +144 -0
  61. package/src/tool/steamCapsuleGenerator/i18n/en.ts +243 -0
  62. package/src/tool/steamCapsuleGenerator/i18n/es.ts +243 -0
  63. package/src/tool/steamCapsuleGenerator/i18n/fr.ts +165 -0
  64. package/src/tool/steamCapsuleGenerator/i18n/id.ts +144 -0
  65. package/src/tool/steamCapsuleGenerator/i18n/it.ts +144 -0
  66. package/src/tool/steamCapsuleGenerator/i18n/ja.ts +144 -0
  67. package/src/tool/steamCapsuleGenerator/i18n/ko.ts +144 -0
  68. package/src/tool/steamCapsuleGenerator/i18n/nl.ts +144 -0
  69. package/src/tool/steamCapsuleGenerator/i18n/pl.ts +144 -0
  70. package/src/tool/steamCapsuleGenerator/i18n/pt.ts +144 -0
  71. package/src/tool/steamCapsuleGenerator/i18n/ru.ts +144 -0
  72. package/src/tool/steamCapsuleGenerator/i18n/shared.ts +46 -0
  73. package/src/tool/steamCapsuleGenerator/i18n/sv.ts +144 -0
  74. package/src/tool/steamCapsuleGenerator/i18n/tr.ts +144 -0
  75. package/src/tool/steamCapsuleGenerator/i18n/zh.ts +144 -0
  76. package/src/tool/steamCapsuleGenerator/index.ts +9 -0
  77. package/src/tool/steamCapsuleGenerator/logic.test.ts +72 -0
  78. package/src/tool/steamCapsuleGenerator/logic.ts +259 -0
  79. package/src/tool/steamCapsuleGenerator/seo.astro +15 -0
  80. package/src/tool/steamCapsuleGenerator/steam-capsule-generator.css +697 -0
  81. package/src/tool/steamCapsuleGenerator/ui.ts +23 -0
  82. package/src/tool/steamCapsuleGenerator/validation.ts +22 -0
  83. package/src/tools.ts +8 -0
  84. package/src/types.ts +72 -0
@@ -0,0 +1,144 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamCapsuleGeneratorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamCapsuleGeneratorUI> = {
6
+ slug: 'generator-kapsul-steam',
7
+ title: 'Generator Kapsul dan Pratinjau Gambar Steam',
8
+ description: 'Potong, pratinjau, dan format kapsul toko dan pustaka resmi Steam dengan verifikasi area aman secara langsung.',
9
+ ui: {
10
+ uploadTitle: 'Unggah Gambar Game',
11
+ uploadHint: 'Unggah gambar resolusi tinggi (disarankan 3840x1240 px atau lebih besar).',
12
+ chooseFile: 'Pilih Berkas',
13
+ minimumSize: 'Ukuran minimum disarankan: 1920x1080 px',
14
+ horizontalFocus: 'Fokus Horizontal (X)',
15
+ verticalFocus: 'Fokus Vertikal (Y)',
16
+ zoomLevel: 'Tingkat Zoom',
17
+ resetFocus: 'Riset Fokus',
18
+ safeZone: 'Area Aman',
19
+ downloadZip: 'Unduh Semua Aset (ZIP)',
20
+ headerCapsule: 'Kapsul Header (460x215 / HD 920x430)',
21
+ smallCapsule: 'Kapsul Kecil (231x87 / HD 462x174)',
22
+ mainCapsule: 'Kapsul Utama (616x353 / HD 1232x706)',
23
+ verticalCapsule: 'Kapsul Vertikal Pustaka (300x450 / HD 600x900)',
24
+ libraryHero: 'Banner Pustaka (1920x620 / HD 3840x1240)',
25
+ communityIcon: 'Ikon Aplikasi Komunitas (32x32 / HD 184x184)',
26
+ storePreviewTab: 'Toko Steam',
27
+ libraryPreviewTab: 'Pustaka Steam',
28
+ allAssetsTab: 'Semua Ukuran',
29
+ toggleSafeZones: 'Panduan Area Aman',
30
+ toggleSteamOverlay: 'Antarmuka Steam'
31
+ },
32
+ seo: [
33
+ {
34
+ type: 'title',
35
+ level: 2,
36
+ text: 'Spesifikasi Gambar Kapsul Steam'
37
+ },
38
+ {
39
+ type: 'paragraph',
40
+ html: 'Halaman toko Steam dan tampilan pustaka bergantung pada gambar kapsul terstandar untuk menampilkan game Anda di berbagai perangkat.'
41
+ },
42
+ {
43
+ type: 'stats',
44
+ columns: 4,
45
+ items: [
46
+ { label: 'Resolusi HD Header Toko', value: '920 x 430 px' },
47
+ { label: 'Rasio Kapsul Pustaka', value: '2:3 Vertikal' },
48
+ { label: 'Resolusi Maks Banner', value: '3840 x 1240 px' },
49
+ { label: 'Ukuran Ikon Komunitas', value: '184 x 184 px' }
50
+ ]
51
+ },
52
+ {
53
+ type: 'table',
54
+ headers: ['Jenis Aset', 'Ukuran Standar (px)', 'Ukuran Target HD (px)', 'Rasio Aspek', 'Format'],
55
+ rows: [
56
+ ['Kapsul Header', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
57
+ ['Kapsul Kecil', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
58
+ ['Kapsul Utama', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
59
+ ['Kapsul Vertikal', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
60
+ ['Banner Pustaka', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
61
+ ['Logo Pustaka', '1280 x 720', '1280 x 720', '16:9', 'PNG Transparan'],
62
+ ['Ikon Komunitas', '32 x 32', '184 x 184', '1:1', 'PNG']
63
+ ]
64
+ },
65
+ {
66
+ type: 'tip',
67
+ title: 'Strategi Area Aman',
68
+ html: 'Jaga semua logo utama dan wajah karakter berada di dua pertiga bagian kiri atas gambar.'
69
+ },
70
+ {
71
+ type: 'proscons',
72
+ title: 'Evaluasi Alur Kerja',
73
+ items: [
74
+ {
75
+ pro: 'Pembuatan cepat semua ukuran aset Steamworks',
76
+ con: 'Komposisi rumit mungkin memerlukan lapisan terpisah'
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ type: 'glossary',
82
+ items: [
83
+ {
84
+ term: 'Kapsul',
85
+ definition: 'Istilah standar Valve untuk gambar promosi game.'
86
+ }
87
+ ]
88
+ }
89
+ ],
90
+ faqTitle: 'Pertanyaan Umum tentang Aset Steam',
91
+ faq: [
92
+ {
93
+ question: 'Format berkas apa yang harus digunakan?',
94
+ answer: 'Steam menerima berkas JPG atau PNG untuk kapsul utama.'
95
+ }
96
+ ],
97
+ howTo: [
98
+ {
99
+ name: 'Unggah Gambar',
100
+ text: 'Pilih gambar resolusi tinggi.'
101
+ }
102
+ ],
103
+ schemas: [
104
+ {
105
+ '@context': 'https://schema.org',
106
+ '@type': 'SoftwareApplication',
107
+ name: 'Generator Kapsul dan Pratinjau Gambar Steam',
108
+ applicationCategory: 'DeveloperApplication',
109
+ operatingSystem: 'Any',
110
+ offers: {
111
+ '@type': 'Offer',
112
+ price: '0',
113
+ priceCurrency: 'USD'
114
+ }
115
+ },
116
+ {
117
+ '@context': 'https://schema.org',
118
+ '@type': 'FAQPage',
119
+ mainEntity: [
120
+ {
121
+ '@type': 'Question',
122
+ name: 'Format berkas apa yang harus digunakan?',
123
+ acceptedAnswer: {
124
+ '@type': 'Answer',
125
+ text: 'Steam menerima berkas JPG atau PNG.'
126
+ }
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ name: 'Cara membuat kapsul Steam',
134
+ step: [
135
+ {
136
+ '@type': 'HowToStep',
137
+ name: 'Unggah Gambar',
138
+ text: 'Pilih gambar resolusi tinggi.'
139
+ }
140
+ ]
141
+ }
142
+ ],
143
+ bibliography: bibliographyEntries
144
+ };
@@ -0,0 +1,144 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamCapsuleGeneratorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamCapsuleGeneratorUI> = {
6
+ slug: 'generatore-di-capsule-steam',
7
+ title: 'Generatore e Anteprima di Capsule Steam',
8
+ description: 'Ritaglia, visualizza in anteprima e formatta le capsule ufficiali del negozio e della libreria Steam con verifica delle zone di sicurezza e qualità elevata.',
9
+ ui: {
10
+ uploadTitle: 'Carica Grafica del Gioco',
11
+ uploadHint: 'Carica un immagine ad alta risoluzione (consigliato 3840x1240 px o superiore per massima nitidezza).',
12
+ chooseFile: 'Seleziona File',
13
+ minimumSize: 'Dimensione minima consigliata: 1920x1080 px',
14
+ horizontalFocus: 'Fuoco Orizzontale (X)',
15
+ verticalFocus: 'Fuoco Verticale (Y)',
16
+ zoomLevel: 'Livello di Zoom',
17
+ resetFocus: 'Centra Fuoco',
18
+ safeZone: 'Zona di Sicurezza',
19
+ downloadZip: 'Scarica Tutti i File (ZIP)',
20
+ headerCapsule: 'Capsula Intestazione (460x215 / HD 920x430)',
21
+ smallCapsule: 'Capsula Piccola (231x87 / HD 462x174)',
22
+ mainCapsule: 'Capsula Principale (616x353 / HD 1232x706)',
23
+ verticalCapsule: 'Capsula Verticale Libreria (300x450 / HD 600x900)',
24
+ libraryHero: 'Banner Libreria (1920x620 / HD 3840x1240)',
25
+ communityIcon: 'Icona App Community (32x32 / HD 184x184)',
26
+ storePreviewTab: 'Negozio Steam',
27
+ libraryPreviewTab: 'Libreria Steam',
28
+ allAssetsTab: 'Tutte le Dimensioni',
29
+ toggleSafeZones: 'Guide di Sicurezza',
30
+ toggleSteamOverlay: 'Interfaccia Steam'
31
+ },
32
+ seo: [
33
+ {
34
+ type: 'title',
35
+ level: 2,
36
+ text: 'Specifiche delle Capsule Grafiche di Steam e Qualità di Visualizzazione'
37
+ },
38
+ {
39
+ type: 'paragraph',
40
+ html: 'Le pagine del negozio Steam e le viste della libreria utilizzano capsule grafiche standardizzate per mostrare il tuo gioco su diversi schermi. È fondamentale garantire leggibilità e fedeltà cromatica. Durante l invio su Steamworks, gli sviluppatori devono rispettare dimensioni in pixel e zone di sicurezza per evitare sovrapposizioni con i prezzi ed elementi di modalità.'
41
+ },
42
+ {
43
+ type: 'stats',
44
+ columns: 4,
45
+ items: [
46
+ { label: 'Risoluzione HD Intestazione', value: '920 x 430 px' },
47
+ { label: 'Rapporto Capsula Verticale', value: '2:3 Verticale' },
48
+ { label: 'Risoluzione Max Banner', value: '3840 x 1240 px' },
49
+ { label: 'Dimensione Icona Community', value: '184 x 184 px' }
50
+ ]
51
+ },
52
+ {
53
+ type: 'table',
54
+ headers: ['Tipo di Risorsa', 'Dimensione Standard (px)', 'Dimensione HD Target (px)', 'Rapporto d Aspetto', 'Formato'],
55
+ rows: [
56
+ ['Capsula Intestazione', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
57
+ ['Capsula Piccola', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
58
+ ['Capsula Principale', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
59
+ ['Capsula Verticale', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
60
+ ['Banner Libreria', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
61
+ ['Logo Libreria', '1280 x 720', '1280 x 720', '16:9', 'PNG Trasparente'],
62
+ ['Icona Community', '32 x 32', '184 x 184', '1:1', 'PNG']
63
+ ]
64
+ },
65
+ {
66
+ type: 'tip',
67
+ title: 'Ottimizzazione delle Zone di Sicurezza e Qualità',
68
+ html: 'Mantieni tutti i loghi e i volti dei personaggi nei due terzi superiori a sinistra dell immagine per una fruibilità ideale ed è fondamentale verificare le sovrapposizioni.'
69
+ },
70
+ {
71
+ type: 'proscons',
72
+ title: 'Valutazione del Flusso di Lavoro',
73
+ items: [
74
+ {
75
+ pro: 'Generazione istantanea di tutte le dimensioni per Steamworks con velocità ed affidabilità',
76
+ con: 'Immagini complesse potrebbero richiedere livelli separati per la massima fedeltà'
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ type: 'glossary',
82
+ items: [
83
+ {
84
+ term: 'Capsula',
85
+ definition: 'Termine standard di Valve per indicare i contenitori grafici promozionali.'
86
+ }
87
+ ]
88
+ }
89
+ ],
90
+ faqTitle: 'Domande Frequenti sulle Risorse Steam',
91
+ faq: [
92
+ {
93
+ question: 'Quale formato di file devo usare per le capsule Steam?',
94
+ answer: 'Steam accetta file JPG o PNG ed è consigliato il formato alta qualità.'
95
+ }
96
+ ],
97
+ howTo: [
98
+ {
99
+ name: 'Carica la Grafica',
100
+ text: 'Seleziona un immagine ad alta risoluzione.'
101
+ }
102
+ ],
103
+ schemas: [
104
+ {
105
+ '@context': 'https://schema.org',
106
+ '@type': 'SoftwareApplication',
107
+ name: 'Generatore e Anteprima di Capsule Steam',
108
+ applicationCategory: 'DeveloperApplication',
109
+ operatingSystem: 'Any',
110
+ offers: {
111
+ '@type': 'Offer',
112
+ price: '0',
113
+ priceCurrency: 'EUR'
114
+ }
115
+ },
116
+ {
117
+ '@context': 'https://schema.org',
118
+ '@type': 'FAQPage',
119
+ mainEntity: [
120
+ {
121
+ '@type': 'Question',
122
+ name: 'Quale formato di file devo usare per le capsule Steam?',
123
+ acceptedAnswer: {
124
+ '@type': 'Answer',
125
+ text: 'Steam accetta file JPG o PNG.'
126
+ }
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ name: 'Come generare capsule per Steam',
134
+ step: [
135
+ {
136
+ '@type': 'HowToStep',
137
+ name: 'Carica la Grafica',
138
+ text: 'Seleziona un immagine ad alta risoluzione.'
139
+ }
140
+ ]
141
+ }
142
+ ],
143
+ bibliography: bibliographyEntries
144
+ };
@@ -0,0 +1,144 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamCapsuleGeneratorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamCapsuleGeneratorUI> = {
6
+ slug: 'steam-capsule-generator',
7
+ title: 'Steamカプセル&アートプレビュージェネレーター',
8
+ description: 'Steamストアおよびライブラリ用の公式カプセル画像をトリミング、プレビュー、フォーマットし、セーフゾーンを検証します。',
9
+ ui: {
10
+ uploadTitle: 'ゲームアートワークをアップロード',
11
+ uploadHint: '高解像度のキービジュアルをアップロードしてください(推奨 3840x1240 px 以上)。',
12
+ chooseFile: 'ファイルを選択',
13
+ minimumSize: '推奨最小サイズ:1920x1080 px',
14
+ horizontalFocus: '水平フォーカス (X)',
15
+ verticalFocus: '垂直フォーカス (Y)',
16
+ zoomLevel: 'ズーム倍率',
17
+ resetFocus: 'フォーカスをリセット',
18
+ safeZone: 'セーフゾーン表示',
19
+ downloadZip: '全アセットをダウンロード (ZIP)',
20
+ headerCapsule: 'ヘッダーカプセル (460x215 / HD 920x430)',
21
+ smallCapsule: 'スモールカプセル (231x87 / HD 462x174)',
22
+ mainCapsule: 'メインカプセル (616x353 / HD 1232x706)',
23
+ verticalCapsule: 'ライブラリ縦型カプセル (300x450 / HD 600x900)',
24
+ libraryHero: 'ライブラリヒーロー (1920x620 / HD 3840x1240)',
25
+ communityIcon: 'コミュニティアプリアイコン (32x32 / HD 184x184)',
26
+ storePreviewTab: 'Steamストアプレビュー',
27
+ libraryPreviewTab: 'Steamライブラリプレビュー',
28
+ allAssetsTab: '全アセットサイズ',
29
+ toggleSafeZones: 'セーフゾーンガイド',
30
+ toggleSteamOverlay: 'Steam UI表示'
31
+ },
32
+ seo: [
33
+ {
34
+ type: 'title',
35
+ level: 2,
36
+ text: 'Steamグラフィックアセットの仕様とルール'
37
+ },
38
+ {
39
+ type: 'paragraph',
40
+ html: 'Steamストアページやライブラリ表示では、標準化されたカプセル画像を使用してゲームを表示します。'
41
+ },
42
+ {
43
+ type: 'stats',
44
+ columns: 4,
45
+ items: [
46
+ { label: 'ストアヘッダー HD解像度', value: '920 x 430 px' },
47
+ { label: 'ライブラリカプセル比率', value: '2:3 縦型' },
48
+ { label: 'ライブラリヒーロー最大解像度', value: '3840 x 1240 px' },
49
+ { label: 'コミュニティアイコンサイズ', value: '184 x 184 px' }
50
+ ]
51
+ },
52
+ {
53
+ type: 'table',
54
+ headers: ['アセットの種類', '標準サイズ (px)', 'HD目標サイズ (px)', 'アスペクト比', 'フォーマット'],
55
+ rows: [
56
+ ['ヘッダーカプセル', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
57
+ ['スモールカプセル', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
58
+ ['メインカプセル', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
59
+ ['縦型ライブラリカプセル', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
60
+ ['ライブラリヒーロー', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
61
+ ['ライブラリロゴ', '1280 x 720', '1280 x 720', '16:9', '透過PNG'],
62
+ ['コミュニティアイコン', '32 x 32', '184 x 184', '1:1', 'PNG']
63
+ ]
64
+ },
65
+ {
66
+ type: 'tip',
67
+ title: 'セーフゾーンの最適化',
68
+ html: '重要なロゴやキャラクターの顔は画像全体の左上3分之2以内に配置してください。'
69
+ },
70
+ {
71
+ type: 'proscons',
72
+ title: 'ワークフローの評価',
73
+ items: [
74
+ {
75
+ pro: 'Steamworksに必要なアセットサイズを即座に一括生成',
76
+ con: '複雑なキービジュアルは個別レイヤーでの調整が必要な場合があります'
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ type: 'glossary',
82
+ items: [
83
+ {
84
+ term: 'カプセル',
85
+ definition: 'Steamストアおよびライブラリで使用されるプロモーション画像の総称。'
86
+ }
87
+ ]
88
+ }
89
+ ],
90
+ faqTitle: 'Steamアセットに関するよくある質問',
91
+ faq: [
92
+ {
93
+ question: 'どのファイル形式を使用すべきですか?',
94
+ answer: 'メインカプセルにはJPGまたはPNGファイルを使用できます。'
95
+ }
96
+ ],
97
+ howTo: [
98
+ {
99
+ name: '高解像度画像をアップロード',
100
+ text: 'キービジュアル画像を選択してください。'
101
+ }
102
+ ],
103
+ schemas: [
104
+ {
105
+ '@context': 'https://schema.org',
106
+ '@type': 'SoftwareApplication',
107
+ name: 'Steamカプセル&アートプレビュージェネレーター',
108
+ applicationCategory: 'DeveloperApplication',
109
+ operatingSystem: 'Any',
110
+ offers: {
111
+ '@type': 'Offer',
112
+ price: '0',
113
+ priceCurrency: 'JPY'
114
+ }
115
+ },
116
+ {
117
+ '@context': 'https://schema.org',
118
+ '@type': 'FAQPage',
119
+ mainEntity: [
120
+ {
121
+ '@type': 'Question',
122
+ name: 'どのファイル形式を使用すべきですか?',
123
+ acceptedAnswer: {
124
+ '@type': 'Answer',
125
+ text: 'メインカプセルにはJPGまたはPNGファイルを使用できます。'
126
+ }
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ name: 'Steamカプセル画像の生成方法',
134
+ step: [
135
+ {
136
+ '@type': 'HowToStep',
137
+ name: '高解像度画像をアップロード',
138
+ text: 'キービジュアル画像を選択してください。'
139
+ }
140
+ ]
141
+ }
142
+ ],
143
+ bibliography: bibliographyEntries
144
+ };
@@ -0,0 +1,144 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamCapsuleGeneratorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamCapsuleGeneratorUI> = {
6
+ slug: 'steam-capsule-generator',
7
+ title: 'Steam 캡슐 및 아트 미리보기 생성기',
8
+ description: '공식 Steam 상점 캡슐 및 라이브러리 이미지 자산을 잘라내고 미리보며 안전 영역을 검증합니다.',
9
+ ui: {
10
+ uploadTitle: '게임 아트워크 업로드',
11
+ uploadHint: '고해상도 키 비주얼 이미지를 업로드하세요 (권장 3840x1240 px 이상).',
12
+ chooseFile: '파일 선택',
13
+ minimumSize: '권장 최소 크기: 1920x1080 px',
14
+ horizontalFocus: '수평 초점 (X)',
15
+ verticalFocus: '수직 초점 (Y)',
16
+ zoomLevel: '확대 배율',
17
+ resetFocus: '초점 재설정',
18
+ safeZone: '안전 영역',
19
+ downloadZip: '모든 자산 다운로드 (ZIP)',
20
+ headerCapsule: '헤더 캡슐 (460x215 / HD 920x430)',
21
+ smallCapsule: '소형 캡슐 (231x87 / HD 462x174)',
22
+ mainCapsule: '메인 캡슐 (616x353 / HD 1232x706)',
23
+ verticalCapsule: '세로형 라이브러리 캡슐 (300x450 / HD 600x900)',
24
+ libraryHero: '라이브러리 히어로 (1920x620 / HD 3840x1240)',
25
+ communityIcon: '커뮤니티 앱 아이콘 (32x32 / HD 184x184)',
26
+ storePreviewTab: 'Steam 상점 미리보기',
27
+ libraryPreviewTab: 'Steam 라이브러리 미리보기',
28
+ allAssetsTab: '모든 자산 크기',
29
+ toggleSafeZones: '안전 영역 가이드',
30
+ toggleSteamOverlay: 'Steam UI 표시'
31
+ },
32
+ seo: [
33
+ {
34
+ type: 'title',
35
+ level: 2,
36
+ text: 'Steam 그래픽 자산 사양 및 지침'
37
+ },
38
+ {
39
+ type: 'paragraph',
40
+ html: 'Steam 상점 페이지 및 라이브러리 뷰는 정규화된 캡슐 이미지를 사용하여 타이틀을 표시합니다.'
41
+ },
42
+ {
43
+ type: 'stats',
44
+ columns: 4,
45
+ items: [
46
+ { label: '상점 헤더 HD 해상도', value: '920 x 430 px' },
47
+ { label: '라이브러리 캡슐 비율', value: '2:3 세로형' },
48
+ { label: '라이브러리 히어로 최대 해상도', value: '3840 x 1240 px' },
49
+ { label: '커뮤니티 아이콘 크기', value: '184 x 184 px' }
50
+ ]
51
+ },
52
+ {
53
+ type: 'table',
54
+ headers: ['자산 유형', '표준 크기 (px)', 'HD 목표 크기 (px)', '화면 비율', '포맷'],
55
+ rows: [
56
+ ['헤더 캡슐', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
57
+ ['소형 캡슐', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
58
+ ['메인 캡슐', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
59
+ ['세로형 라이브러리 캡슐', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
60
+ ['라이브러리 히어로', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
61
+ ['라이브러리 로고', '1280 x 720', '1280 x 720', '16:9', '투명 PNG'],
62
+ ['커뮤니티 아이콘', '32 x 32', '184 x 184', '1:1', 'PNG']
63
+ ]
64
+ },
65
+ {
66
+ type: 'tip',
67
+ title: '안전 영역 최적화',
68
+ html: '주요 로고와 캐릭터 얼굴은 전체 이미지의 좌측 상단 3분분의 2 이내에 배치하세요.'
69
+ },
70
+ {
71
+ type: 'proscons',
72
+ title: '작업 흐름 평가',
73
+ items: [
74
+ {
75
+ pro: 'Steamworks 필수 자산 크기를 즉시 일괄 생성',
76
+ con: '복잡한 비주얼은 레이어별 별도 작업이 필요할 수 있습니다'
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ type: 'glossary',
82
+ items: [
83
+ {
84
+ term: '캡슐',
85
+ definition: 'Steam 상점 및 라이브러리에 사용되는 홍보용 그래픽 용기 용어입니다.'
86
+ }
87
+ ]
88
+ }
89
+ ],
90
+ faqTitle: 'Steam 자산 관련 자주 묻는 질문',
91
+ faq: [
92
+ {
93
+ question: '어떤 파일 포맷을 사용해야 하나요?',
94
+ answer: '메인 캡슐에는 JPG 또는 PNG 파일을 사용할 수 있습니다.'
95
+ }
96
+ ],
97
+ howTo: [
98
+ {
99
+ name: '고해상도 이미지 업로드',
100
+ text: '키 비주얼 이미지를 선택하세요.'
101
+ }
102
+ ],
103
+ schemas: [
104
+ {
105
+ '@context': 'https://schema.org',
106
+ '@type': 'SoftwareApplication',
107
+ name: 'Steam 캡슐 및 아트 미리보기 생성기',
108
+ applicationCategory: 'DeveloperApplication',
109
+ operatingSystem: 'Any',
110
+ offers: {
111
+ '@type': 'Offer',
112
+ price: '0',
113
+ priceCurrency: 'KRW'
114
+ }
115
+ },
116
+ {
117
+ '@context': 'https://schema.org',
118
+ '@type': 'FAQPage',
119
+ mainEntity: [
120
+ {
121
+ '@type': 'Question',
122
+ name: '어떤 파일 포맷을 사용해야 하나요?',
123
+ acceptedAnswer: {
124
+ '@type': 'Answer',
125
+ text: '메인 캡슐에는 JPG 또는 PNG 파일을 사용할 수 있습니다.'
126
+ }
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ name: 'Steam 캡슐 이미지 생성 방법',
134
+ step: [
135
+ {
136
+ '@type': 'HowToStep',
137
+ name: '고해상도 이미지 업로드',
138
+ text: '키 비주얼 이미지를 선택하세요.'
139
+ }
140
+ ]
141
+ }
142
+ ],
143
+ bibliography: bibliographyEntries
144
+ };