@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.
- package/package.json +67 -0
- package/scripts/postinstall.mjs +27 -0
- package/src/category/GamesCategorySEO.astro +19 -0
- package/src/category/i18n/de.ts +15 -0
- package/src/category/i18n/en.ts +15 -0
- package/src/category/i18n/es.ts +15 -0
- package/src/category/i18n/fr.ts +15 -0
- package/src/category/i18n/id.ts +10 -0
- package/src/category/i18n/it.ts +10 -0
- package/src/category/i18n/ja.ts +10 -0
- package/src/category/i18n/ko.ts +10 -0
- package/src/category/i18n/nl.ts +10 -0
- package/src/category/i18n/pl.ts +10 -0
- package/src/category/i18n/pt.ts +10 -0
- package/src/category/i18n/ru.ts +10 -0
- package/src/category/i18n/sv.ts +10 -0
- package/src/category/i18n/tr.ts +10 -0
- package/src/category/i18n/zh.ts +10 -0
- package/src/category/index.ts +24 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/entries.ts +5 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +21 -0
- package/src/layouts/PreviewLayout.astro +122 -0
- package/src/pages/[locale]/[slug].astro +165 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/diacritics_density.test.ts +118 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +27 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/pagespeed_best_practices.test.ts +198 -0
- package/src/tests/qa-test-helpers.ts +32 -0
- package/src/tests/qa_bibliography_links.test.ts +41 -0
- package/src/tests/qa_claim_evidence.test.ts +69 -0
- package/src/tests/qa_logic_reference_coverage.test.ts +46 -0
- package/src/tests/qa_runtime_i18n.test.ts +100 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/seo_length.test.ts +23 -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 +56 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/steamCapsuleGenerator/bibliography.astro +6 -0
- package/src/tool/steamCapsuleGenerator/bibliography.ts +6 -0
- package/src/tool/steamCapsuleGenerator/component.astro +289 -0
- package/src/tool/steamCapsuleGenerator/components/SteamLibraryGridMockup.astro +51 -0
- package/src/tool/steamCapsuleGenerator/components/SteamLibraryMockup.astro +64 -0
- package/src/tool/steamCapsuleGenerator/components/SteamMasterControls.astro +2 -0
- package/src/tool/steamCapsuleGenerator/components/SteamStoreMockup.astro +90 -0
- package/src/tool/steamCapsuleGenerator/entry.ts +28 -0
- package/src/tool/steamCapsuleGenerator/i18n/de.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/en.ts +243 -0
- package/src/tool/steamCapsuleGenerator/i18n/es.ts +243 -0
- package/src/tool/steamCapsuleGenerator/i18n/fr.ts +165 -0
- package/src/tool/steamCapsuleGenerator/i18n/id.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/it.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/ja.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/ko.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/nl.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/pl.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/pt.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/ru.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/shared.ts +46 -0
- package/src/tool/steamCapsuleGenerator/i18n/sv.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/tr.ts +144 -0
- package/src/tool/steamCapsuleGenerator/i18n/zh.ts +144 -0
- package/src/tool/steamCapsuleGenerator/index.ts +9 -0
- package/src/tool/steamCapsuleGenerator/logic.test.ts +72 -0
- package/src/tool/steamCapsuleGenerator/logic.ts +259 -0
- package/src/tool/steamCapsuleGenerator/seo.astro +15 -0
- package/src/tool/steamCapsuleGenerator/steam-capsule-generator.css +697 -0
- package/src/tool/steamCapsuleGenerator/ui.ts +23 -0
- package/src/tool/steamCapsuleGenerator/validation.ts +22 -0
- package/src/tools.ts +8 -0
- 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: 'stoom-capsule-generator',
|
|
7
|
+
title: 'Steam Capsule en Afbeeldingen Generator',
|
|
8
|
+
description: 'Bijsnijden, bekijken en formatteren van officiële Steam winkel en bibliotheek afbeeldingen met veiligheidszone controle.',
|
|
9
|
+
ui: {
|
|
10
|
+
uploadTitle: 'Upload Spelafbeelding',
|
|
11
|
+
uploadHint: 'Upload een afbeelding in hoge resolutie (aanbevolen 3840x1240 px of groter).',
|
|
12
|
+
chooseFile: 'Bestand Kiezen',
|
|
13
|
+
minimumSize: 'Aanbevolen minimale grootte: 1920x1080 px',
|
|
14
|
+
horizontalFocus: 'Horizontale Focus (X)',
|
|
15
|
+
verticalFocus: 'Verticale Focus (Y)',
|
|
16
|
+
zoomLevel: 'Zoomniveau',
|
|
17
|
+
resetFocus: 'Focus Herstellen',
|
|
18
|
+
safeZone: 'Veiligheidszone',
|
|
19
|
+
downloadZip: 'Alle Bestanden Downloaden (ZIP)',
|
|
20
|
+
headerCapsule: 'Header Capsule (460x215 / HD 920x430)',
|
|
21
|
+
smallCapsule: 'Kleine Capsule (231x87 / HD 462x174)',
|
|
22
|
+
mainCapsule: 'Hoofd Capsule (616x353 / HD 1232x706)',
|
|
23
|
+
verticalCapsule: 'Verticale Bibliotheek Capsule (300x450 / HD 600x900)',
|
|
24
|
+
libraryHero: 'Bibliotheek Banner (1920x620 / HD 3840x1240)',
|
|
25
|
+
communityIcon: 'Community App Icoon (32x32 / HD 184x184)',
|
|
26
|
+
storePreviewTab: 'Steam Winkel',
|
|
27
|
+
libraryPreviewTab: 'Steam Bibliotheek',
|
|
28
|
+
allAssetsTab: 'Alle Formaten',
|
|
29
|
+
toggleSafeZones: 'Veiligheidszones',
|
|
30
|
+
toggleSteamOverlay: 'Steam Interface'
|
|
31
|
+
},
|
|
32
|
+
seo: [
|
|
33
|
+
{
|
|
34
|
+
type: 'title',
|
|
35
|
+
level: 2,
|
|
36
|
+
text: 'Steam Grafische Capsule Specificaties'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
type: 'paragraph',
|
|
40
|
+
html: 'Steam winkelpagina s en bibliotheekweergaven gebruiken gestandaardiseerde capsule afbeeldingen om uw spel op verschillende schermen te tonen. Ontwikkelaars moeten zich houden aan exacte afmetingen en veiligheidszones om overlapping met prijzen te voorkomen.'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
type: 'stats',
|
|
44
|
+
columns: 4,
|
|
45
|
+
items: [
|
|
46
|
+
{ label: 'Winkel Header HD Resolutie', value: '920 x 430 px' },
|
|
47
|
+
{ label: 'Bibliotheek Capsule Ratio', value: '2:3 Verticaal' },
|
|
48
|
+
{ label: 'Bibliotheek Hero Maximaal', value: '3840 x 1240 px' },
|
|
49
|
+
{ label: 'Community Icoon Grootte', value: '184 x 184 px' }
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
type: 'table',
|
|
54
|
+
headers: ['Type Afbeelding', 'Standaard (px)', 'HD Doel (px)', 'Beeldverhouding', 'Formaat'],
|
|
55
|
+
rows: [
|
|
56
|
+
['Header Capsule', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
|
|
57
|
+
['Kleine Capsule', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
|
|
58
|
+
['Hoofd Capsule', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
|
|
59
|
+
['Verticale Capsule', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
|
|
60
|
+
['Bibliotheek Banner', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
|
|
61
|
+
['Bibliotheek Logo', '1280 x 720', '1280 x 720', '16:9', 'Transparante PNG'],
|
|
62
|
+
['Community Icoon', '32 x 32', '184 x 184', '1:1', 'PNG']
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'tip',
|
|
67
|
+
title: 'Veiligheidszone Optimalisatie',
|
|
68
|
+
html: 'Houd belangrijke logo s in de bovenste linker twee derde van het beeld.'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
type: 'proscons',
|
|
72
|
+
title: 'Werkproces Evaluatie',
|
|
73
|
+
items: [
|
|
74
|
+
{
|
|
75
|
+
pro: 'Directe generatie van alle vereiste Steam afmetingen',
|
|
76
|
+
con: 'Complexe afbeeldingen vereisen mogelijk aparte lagen'
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
type: 'glossary',
|
|
82
|
+
items: [
|
|
83
|
+
{
|
|
84
|
+
term: 'Capsule',
|
|
85
|
+
definition: 'Standaardterm van Valve voor promotionele afbeeldingen.'
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
faqTitle: 'Veelgestelde Vragen over Steam Afbeeldingen',
|
|
91
|
+
faq: [
|
|
92
|
+
{
|
|
93
|
+
question: 'Welk bestandsformaat moet ik gebruiken?',
|
|
94
|
+
answer: 'Steam accepteert JPG of PNG bestanden voor hoofdcapsules.'
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
howTo: [
|
|
98
|
+
{
|
|
99
|
+
name: 'Upload Afbeelding',
|
|
100
|
+
text: 'Selecteer een afbeelding in hoge resolutie.'
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
schemas: [
|
|
104
|
+
{
|
|
105
|
+
'@context': 'https://schema.org',
|
|
106
|
+
'@type': 'SoftwareApplication',
|
|
107
|
+
name: 'Steam Capsule en Afbeeldingen Generator',
|
|
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: 'Welk bestandsformaat moet ik gebruiken?',
|
|
123
|
+
acceptedAnswer: {
|
|
124
|
+
'@type': 'Answer',
|
|
125
|
+
text: 'Steam accepteert JPG of PNG bestanden voor hoofdcapsules.'
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
name: 'Hoe Steam capsules te genereren',
|
|
134
|
+
step: [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
name: 'Upload Afbeelding',
|
|
138
|
+
text: 'Selecteer een afbeelding in hoge resolutie.'
|
|
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: 'generator-kapsul-dla-steam',
|
|
7
|
+
title: 'Generator i Podgląd Kapsuł Steam',
|
|
8
|
+
description: 'Kadruj, przeglądaj i formatuj oficjalne kapsuły sklepowe oraz grafiki biblioteki Steam z weryfikacją stref bezpiecznych.',
|
|
9
|
+
ui: {
|
|
10
|
+
uploadTitle: 'Prześlij Grafikę Gry',
|
|
11
|
+
uploadHint: 'Prześlij grafikę w wysokiej rozdzielczości (zalecane 3840x1240 px lub więcej).',
|
|
12
|
+
chooseFile: 'Wybierz Plik',
|
|
13
|
+
minimumSize: 'Zalecana minimalna rozdzielczość: 1920x1080 px',
|
|
14
|
+
horizontalFocus: 'Osiowe Skupienie (X)',
|
|
15
|
+
verticalFocus: 'Pionowe Skupienie (Y)',
|
|
16
|
+
zoomLevel: 'Poziom Powiększenia',
|
|
17
|
+
resetFocus: 'Wyśrodkuj Skupienie',
|
|
18
|
+
safeZone: 'Strefa Bezpieczna',
|
|
19
|
+
downloadZip: 'Pobierz Wszystkie Pliki (ZIP)',
|
|
20
|
+
headerCapsule: 'Kapsuła Nagłówka (460x215 / HD 920x430)',
|
|
21
|
+
smallCapsule: 'Mała Kapsuła (231x87 / HD 462x174)',
|
|
22
|
+
mainCapsule: 'Główna Kapsuła (616x353 / HD 1232x706)',
|
|
23
|
+
verticalCapsule: 'Pionowa Kapsuła Biblioteki (300x450 / HD 600x900)',
|
|
24
|
+
libraryHero: 'Banner Biblioteki (1920x620 / HD 3840x1240)',
|
|
25
|
+
communityIcon: 'Ikona Aplikacji Społeczności (32x32 / HD 184x184)',
|
|
26
|
+
storePreviewTab: 'Sklep Steam',
|
|
27
|
+
libraryPreviewTab: 'Biblioteka Steam',
|
|
28
|
+
allAssetsTab: 'Wszystkie Rozmiary',
|
|
29
|
+
toggleSafeZones: 'Strefy Bezpieczne',
|
|
30
|
+
toggleSteamOverlay: 'Interfejs Steam'
|
|
31
|
+
},
|
|
32
|
+
seo: [
|
|
33
|
+
{
|
|
34
|
+
type: 'title',
|
|
35
|
+
level: 2,
|
|
36
|
+
text: 'Specyfikacja Graficzna Kapsuł Steam'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
type: 'paragraph',
|
|
40
|
+
html: 'Strony sklepu Steam oraz widoki biblioteki używają standaryzowanych grafik kapsuł do prezentacji gier.'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
type: 'stats',
|
|
44
|
+
columns: 4,
|
|
45
|
+
items: [
|
|
46
|
+
{ label: 'Nagłówek Sklepu HD', value: '920 x 430 px' },
|
|
47
|
+
{ label: 'Proporcja Kapsuły Biblioteki', value: '2:3 Pionowa' },
|
|
48
|
+
{ label: 'Maksymalny Banner', value: '3840 x 1240 px' },
|
|
49
|
+
{ label: 'Ikona Społeczności', value: '184 x 184 px' }
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
type: 'table',
|
|
54
|
+
headers: ['Typ Grafiki', 'Rozmiar Standardowy (px)', 'Rozmiar HD (px)', 'Proporcje', 'Format'],
|
|
55
|
+
rows: [
|
|
56
|
+
['Kapsuła Nagłówka', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
|
|
57
|
+
['Mała Kapsuła', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
|
|
58
|
+
['Główna Kapsuła', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
|
|
59
|
+
['Pionowa Kapsuła', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
|
|
60
|
+
['Banner Biblioteki', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
|
|
61
|
+
['Logo Biblioteki', '1280 x 720', '1280 x 720', '16:9', 'Przezroczysty PNG'],
|
|
62
|
+
['Ikona Społeczności', '32 x 32', '184 x 184', '1:1', 'PNG']
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'tip',
|
|
67
|
+
title: 'Optymalizacja Stref Bezpiecznych',
|
|
68
|
+
html: 'Umieszczaj główne logo w lewej górnej części obrazu.'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
type: 'proscons',
|
|
72
|
+
title: 'Ocena Procesu',
|
|
73
|
+
items: [
|
|
74
|
+
{
|
|
75
|
+
pro: 'Natychmiastowe generowanie wszystkich rozmiarów Steamworks',
|
|
76
|
+
con: 'Złożone grafiki mogą wymagać osobnych warstw'
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
type: 'glossary',
|
|
82
|
+
items: [
|
|
83
|
+
{
|
|
84
|
+
term: 'Kapsuła',
|
|
85
|
+
definition: 'Określenie firmy Valve dla promocyjnych kontenerów graficznych.'
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
faqTitle: 'Często Zadawane Pytania o Grafiki Steam',
|
|
91
|
+
faq: [
|
|
92
|
+
{
|
|
93
|
+
question: 'Jaki format plików wybrać?',
|
|
94
|
+
answer: 'Steam akceptuje pliki JPG lub PNG dla głównych kapsuł.'
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
howTo: [
|
|
98
|
+
{
|
|
99
|
+
name: 'Prześlij Grafikę',
|
|
100
|
+
text: 'Wybierz obraz w wysokiej rozdzielczości.'
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
schemas: [
|
|
104
|
+
{
|
|
105
|
+
'@context': 'https://schema.org',
|
|
106
|
+
'@type': 'SoftwareApplication',
|
|
107
|
+
name: 'Generator i Podgląd Kapsuł Steam',
|
|
108
|
+
applicationCategory: 'DeveloperApplication',
|
|
109
|
+
operatingSystem: 'Any',
|
|
110
|
+
offers: {
|
|
111
|
+
'@type': 'Offer',
|
|
112
|
+
price: '0',
|
|
113
|
+
priceCurrency: 'PLN'
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
'@context': 'https://schema.org',
|
|
118
|
+
'@type': 'FAQPage',
|
|
119
|
+
mainEntity: [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'Question',
|
|
122
|
+
name: 'Jaki format plików wybrać?',
|
|
123
|
+
acceptedAnswer: {
|
|
124
|
+
'@type': 'Answer',
|
|
125
|
+
text: 'Steam akceptuje pliki JPG lub PNG.'
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
name: 'Jak generować kapsuły Steam',
|
|
134
|
+
step: [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
name: 'Prześlij Grafikę',
|
|
138
|
+
text: 'Wybierz obraz w wysokiej rozdzielczości.'
|
|
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: 'gerador-de-capsulas-steam',
|
|
7
|
+
title: 'Gerador e Visualizador de Cápsulas Steam',
|
|
8
|
+
description: 'Corte, visualize e formate cápsulas oficiais da loja e biblioteca Steam com verificação de zonas de segurança.',
|
|
9
|
+
ui: {
|
|
10
|
+
uploadTitle: 'Enviar Arte do Jogo',
|
|
11
|
+
uploadHint: 'Envie uma imagem de alta resolução (recomendado 3840x1240 px ou superior).',
|
|
12
|
+
chooseFile: 'Selecionar Arquivo',
|
|
13
|
+
minimumSize: 'Tamanho mínimo recomendado: 1920x1080 px',
|
|
14
|
+
horizontalFocus: 'Foco Horizontal (X)',
|
|
15
|
+
verticalFocus: 'Foco Vertical (Y)',
|
|
16
|
+
zoomLevel: 'Nível de Zoom',
|
|
17
|
+
resetFocus: 'Centralizar Foco',
|
|
18
|
+
safeZone: 'Zona de Segurança',
|
|
19
|
+
downloadZip: 'Baixar Todos os Arquivos (ZIP)',
|
|
20
|
+
headerCapsule: 'Cápsula de Cabeçalho (460x215 / HD 920x430)',
|
|
21
|
+
smallCapsule: 'Cápsula Pequena (231x87 / HD 462x174)',
|
|
22
|
+
mainCapsule: 'Cápsula Principal (616x353 / HD 1232x706)',
|
|
23
|
+
verticalCapsule: 'Cápsula Vertical da Biblioteca (300x450 / HD 600x900)',
|
|
24
|
+
libraryHero: 'Banner da Biblioteca (1920x620 / HD 3840x1240)',
|
|
25
|
+
communityIcon: 'Ícone de Aplicativo (32x32 / HD 184x184)',
|
|
26
|
+
storePreviewTab: 'Loja Steam',
|
|
27
|
+
libraryPreviewTab: 'Biblioteca Steam',
|
|
28
|
+
allAssetsTab: 'Todos os Tamanhos',
|
|
29
|
+
toggleSafeZones: 'Guias de Segurança',
|
|
30
|
+
toggleSteamOverlay: 'Interface Steam'
|
|
31
|
+
},
|
|
32
|
+
seo: [
|
|
33
|
+
{
|
|
34
|
+
type: 'title',
|
|
35
|
+
level: 2,
|
|
36
|
+
text: 'Especificações das Cápsulas Gráficas da Steam'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
type: 'paragraph',
|
|
40
|
+
html: 'As páginas da loja Steam e a biblioteca utilizam cápsulas padronizadas para exibir seu jogo.'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
type: 'stats',
|
|
44
|
+
columns: 4,
|
|
45
|
+
items: [
|
|
46
|
+
{ label: 'Resolução HD do Cabeçalho', value: '920 x 430 px' },
|
|
47
|
+
{ label: 'Proporção Cápsula Vertical', value: '2:3 Vertical' },
|
|
48
|
+
{ label: 'Resolução Máxima do Banner', value: '3840 x 1240 px' },
|
|
49
|
+
{ label: 'Tamanho Ícone da Comunidade', value: '184 x 184 px' }
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
type: 'table',
|
|
54
|
+
headers: ['Tipo de Recurso', 'Tamanho Padrão (px)', 'Tamanho HD Alvo (px)', 'Proporção', 'Formato'],
|
|
55
|
+
rows: [
|
|
56
|
+
['Cápsula de Cabeçalho', '460 x 215', '920 x 430', '2.14:1', 'JPG / PNG'],
|
|
57
|
+
['Cápsula Pequena', '231 x 87', '462 x 174', '2.65:1', 'JPG / PNG'],
|
|
58
|
+
['Cápsula Principal', '616 x 353', '1232 x 706', '1.74:1', 'JPG / PNG'],
|
|
59
|
+
['Cápsula Vertical', '300 x 450', '600 x 900', '2:3', 'JPG / PNG'],
|
|
60
|
+
['Banner da Biblioteca', '1920 x 620', '3840 x 1240', '3.1:1', 'JPG / PNG'],
|
|
61
|
+
['Logo da Biblioteca', '1280 x 720', '1280 x 720', '16:9', 'PNG Transparente'],
|
|
62
|
+
['Ícone da Comunidade', '32 x 32', '184 x 184', '1:1', 'PNG']
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'tip',
|
|
67
|
+
title: 'Otimização de Zonas de Segurança',
|
|
68
|
+
html: 'Mantenha os logotipos principais no terço superior esquerdo da imagem.'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
type: 'proscons',
|
|
72
|
+
title: 'Avaliação do Fluxo de Trabalho',
|
|
73
|
+
items: [
|
|
74
|
+
{
|
|
75
|
+
pro: 'Geração instantânea de todos os tamanhos da Steamworks',
|
|
76
|
+
con: 'Imagens complexas podem requerer camadas separadas'
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
type: 'glossary',
|
|
82
|
+
items: [
|
|
83
|
+
{
|
|
84
|
+
term: 'Cápsula',
|
|
85
|
+
definition: 'Termo padrão da Valve para contêineres de imagens promocionais.'
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
faqTitle: 'Perguntas Frequentes sobre Recursos da Steam',
|
|
91
|
+
faq: [
|
|
92
|
+
{
|
|
93
|
+
question: 'Qual formato de arquivo devo usar?',
|
|
94
|
+
answer: 'A Steam aceita arquivos JPG ou PNG para as cápsulas principais.'
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
howTo: [
|
|
98
|
+
{
|
|
99
|
+
name: 'Enviar a Arte',
|
|
100
|
+
text: 'Selecione uma imagem em alta resolução.'
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
schemas: [
|
|
104
|
+
{
|
|
105
|
+
'@context': 'https://schema.org',
|
|
106
|
+
'@type': 'SoftwareApplication',
|
|
107
|
+
name: 'Gerador e Visualizador de Cápsulas Steam',
|
|
108
|
+
applicationCategory: 'DeveloperApplication',
|
|
109
|
+
operatingSystem: 'Any',
|
|
110
|
+
offers: {
|
|
111
|
+
'@type': 'Offer',
|
|
112
|
+
price: '0',
|
|
113
|
+
priceCurrency: 'BRL'
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
'@context': 'https://schema.org',
|
|
118
|
+
'@type': 'FAQPage',
|
|
119
|
+
mainEntity: [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'Question',
|
|
122
|
+
name: 'Qual formato de arquivo devo usar?',
|
|
123
|
+
acceptedAnswer: {
|
|
124
|
+
'@type': 'Answer',
|
|
125
|
+
text: 'A Steam aceita arquivos JPG ou PNG.'
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
name: 'Como gerar cápsulas Steam',
|
|
134
|
+
step: [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
name: 'Enviar a Arte',
|
|
138
|
+
text: 'Selecione uma imagem em alta resolução.'
|
|
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: 'generator-kapsul-dlya-steam',
|
|
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'
|
|
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: 'Размещайте ключевые логотипы в верхней левой части изображения.'
|
|
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: 'Термин компании Valve для промо контейнеров изображений.'
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
faqTitle: 'Часто Задаваемые Вопросы о Ресурсах Steam',
|
|
91
|
+
faq: [
|
|
92
|
+
{
|
|
93
|
+
question: 'Какой формат файлов использовать?',
|
|
94
|
+
answer: 'Steam принимает файлы 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: 'RUB'
|
|
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: 'Steam принимает файлы 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,46 @@
|
|
|
1
|
+
import type { SEOSection } from '../../../types';
|
|
2
|
+
import type { SteamCapsuleGeneratorLocaleContent, SteamCapsuleGeneratorUI } from '../entry';
|
|
3
|
+
|
|
4
|
+
interface LocalizedContentInput {
|
|
5
|
+
slug: string;
|
|
6
|
+
title: string;
|
|
7
|
+
description: string;
|
|
8
|
+
ui: SteamCapsuleGeneratorUI;
|
|
9
|
+
seo: SEOSection[];
|
|
10
|
+
faq: Array<{ question: string; answer: string }>;
|
|
11
|
+
howTo: Array<{ name: string; text: string }>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export function createSteamContent(input: LocalizedContentInput): SteamCapsuleGeneratorLocaleContent {
|
|
15
|
+
return {
|
|
16
|
+
...input,
|
|
17
|
+
bibliography: [
|
|
18
|
+
{ name: 'Steamworks Graphical Assets Overview', url: 'https://partner.steamgames.com/doc/store/assets' },
|
|
19
|
+
{ name: 'Steamworks Store Graphical Assets', url: 'https://partner.steamgames.com/doc/store/assets/standard' },
|
|
20
|
+
{ name: 'Steamworks Graphical Asset Rules', url: 'https://partner.steamgames.com/doc/store/assets/rules' },
|
|
21
|
+
],
|
|
22
|
+
schemas: [
|
|
23
|
+
{
|
|
24
|
+
'@context': 'https://schema.org' as const,
|
|
25
|
+
'@type': 'FAQPage' as const,
|
|
26
|
+
mainEntity: input.faq.map((item) => ({ '@type': 'Question' as const, name: item.question, acceptedAnswer: { '@type': 'Answer' as const, text: item.answer } })),
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
'@context': 'https://schema.org' as const,
|
|
30
|
+
'@type': 'HowTo' as const,
|
|
31
|
+
name: input.title,
|
|
32
|
+
description: input.description,
|
|
33
|
+
step: input.howTo.map((item) => ({ '@type': 'HowToStep' as const, name: item.name, text: item.text })),
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
'@context': 'https://schema.org' as const,
|
|
37
|
+
'@type': 'SoftwareApplication' as const,
|
|
38
|
+
name: input.title,
|
|
39
|
+
description: input.description,
|
|
40
|
+
applicationCategory: 'MultimediaApplication' as const,
|
|
41
|
+
operatingSystem: 'Web' as const,
|
|
42
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
};
|
|
46
|
+
}
|