@jjlmoya/utils-social 1.2.0 → 1.4.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 (120) hide show
  1. package/package.json +59 -58
  2. package/src/category/i18n/de.ts +23 -0
  3. package/src/category/i18n/id.ts +23 -0
  4. package/src/category/i18n/it.ts +23 -0
  5. package/src/category/i18n/ja.ts +23 -0
  6. package/src/category/i18n/ko.ts +23 -0
  7. package/src/category/i18n/nl.ts +23 -0
  8. package/src/category/i18n/pl.ts +23 -0
  9. package/src/category/i18n/pt.ts +23 -0
  10. package/src/category/i18n/ru.ts +23 -0
  11. package/src/category/i18n/sv.ts +23 -0
  12. package/src/category/i18n/tr.ts +23 -0
  13. package/src/category/i18n/zh.ts +23 -0
  14. package/src/category/index.ts +12 -0
  15. package/src/index.ts +8 -0
  16. package/src/tests/i18n_coverage.test.ts +36 -0
  17. package/src/tests/locale_completeness.test.ts +1 -1
  18. package/src/tests/schemas_fulfillment.test.ts +23 -0
  19. package/src/tests/slug_uniqueness.test.ts +81 -0
  20. package/src/tests/title_quality.test.ts +55 -0
  21. package/src/tool/redditFormatter/i18n/de.ts +193 -0
  22. package/src/tool/redditFormatter/i18n/en.ts +1 -1
  23. package/src/tool/redditFormatter/i18n/es.ts +1 -1
  24. package/src/tool/redditFormatter/i18n/fr.ts +1 -1
  25. package/src/tool/redditFormatter/i18n/id.ts +193 -0
  26. package/src/tool/redditFormatter/i18n/it.ts +193 -0
  27. package/src/tool/redditFormatter/i18n/ja.ts +193 -0
  28. package/src/tool/redditFormatter/i18n/ko.ts +193 -0
  29. package/src/tool/redditFormatter/i18n/nl.ts +193 -0
  30. package/src/tool/redditFormatter/i18n/pl.ts +193 -0
  31. package/src/tool/redditFormatter/i18n/pt.ts +193 -0
  32. package/src/tool/redditFormatter/i18n/ru.ts +193 -0
  33. package/src/tool/redditFormatter/i18n/sv.ts +193 -0
  34. package/src/tool/redditFormatter/i18n/tr.ts +193 -0
  35. package/src/tool/redditFormatter/i18n/zh.ts +193 -0
  36. package/src/tool/redditFormatter/index.ts +15 -7
  37. package/src/tool/safeZones/i18n/de.ts +244 -0
  38. package/src/tool/safeZones/i18n/id.ts +244 -0
  39. package/src/tool/safeZones/i18n/it.ts +244 -0
  40. package/src/tool/safeZones/i18n/ja.ts +244 -0
  41. package/src/tool/safeZones/i18n/ko.ts +244 -0
  42. package/src/tool/safeZones/i18n/nl.ts +244 -0
  43. package/src/tool/safeZones/i18n/pl.ts +244 -0
  44. package/src/tool/safeZones/i18n/pt.ts +244 -0
  45. package/src/tool/safeZones/i18n/ru.ts +244 -0
  46. package/src/tool/safeZones/i18n/sv.ts +244 -0
  47. package/src/tool/safeZones/i18n/tr.ts +244 -0
  48. package/src/tool/safeZones/i18n/zh.ts +244 -0
  49. package/src/tool/safeZones/index.ts +17 -9
  50. package/src/tool/socialImageResizer/i18n/de.ts +211 -0
  51. package/src/tool/socialImageResizer/i18n/en.ts +1 -1
  52. package/src/tool/socialImageResizer/i18n/id.ts +211 -0
  53. package/src/tool/socialImageResizer/i18n/it.ts +211 -0
  54. package/src/tool/socialImageResizer/i18n/ja.ts +211 -0
  55. package/src/tool/socialImageResizer/i18n/ko.ts +211 -0
  56. package/src/tool/socialImageResizer/i18n/nl.ts +211 -0
  57. package/src/tool/socialImageResizer/i18n/pl.ts +211 -0
  58. package/src/tool/socialImageResizer/i18n/pt.ts +211 -0
  59. package/src/tool/socialImageResizer/i18n/ru.ts +211 -0
  60. package/src/tool/socialImageResizer/i18n/sv.ts +211 -0
  61. package/src/tool/socialImageResizer/i18n/tr.ts +211 -0
  62. package/src/tool/socialImageResizer/i18n/zh.ts +211 -0
  63. package/src/tool/socialImageResizer/index.ts +16 -8
  64. package/src/tool/socialValueCalculator/i18n/de.ts +306 -0
  65. package/src/tool/socialValueCalculator/i18n/es.ts +1 -1
  66. package/src/tool/socialValueCalculator/i18n/fr.ts +1 -1
  67. package/src/tool/socialValueCalculator/i18n/id.ts +306 -0
  68. package/src/tool/socialValueCalculator/i18n/it.ts +306 -0
  69. package/src/tool/socialValueCalculator/i18n/ja.ts +306 -0
  70. package/src/tool/socialValueCalculator/i18n/ko.ts +306 -0
  71. package/src/tool/socialValueCalculator/i18n/nl.ts +306 -0
  72. package/src/tool/socialValueCalculator/i18n/pl.ts +306 -0
  73. package/src/tool/socialValueCalculator/i18n/pt.ts +306 -0
  74. package/src/tool/socialValueCalculator/i18n/ru.ts +306 -0
  75. package/src/tool/socialValueCalculator/i18n/sv.ts +306 -0
  76. package/src/tool/socialValueCalculator/i18n/tr.ts +306 -0
  77. package/src/tool/socialValueCalculator/i18n/zh.ts +306 -0
  78. package/src/tool/socialValueCalculator/index.ts +17 -9
  79. package/src/tool/tinderPhotoOptimizer/i18n/de.ts +272 -0
  80. package/src/tool/tinderPhotoOptimizer/i18n/id.ts +272 -0
  81. package/src/tool/tinderPhotoOptimizer/i18n/it.ts +272 -0
  82. package/src/tool/tinderPhotoOptimizer/i18n/ja.ts +272 -0
  83. package/src/tool/tinderPhotoOptimizer/i18n/ko.ts +272 -0
  84. package/src/tool/tinderPhotoOptimizer/i18n/nl.ts +272 -0
  85. package/src/tool/tinderPhotoOptimizer/i18n/pl.ts +272 -0
  86. package/src/tool/tinderPhotoOptimizer/i18n/pt.ts +272 -0
  87. package/src/tool/tinderPhotoOptimizer/i18n/ru.ts +272 -0
  88. package/src/tool/tinderPhotoOptimizer/i18n/sv.ts +272 -0
  89. package/src/tool/tinderPhotoOptimizer/i18n/tr.ts +272 -0
  90. package/src/tool/tinderPhotoOptimizer/i18n/zh.ts +272 -0
  91. package/src/tool/tinderPhotoOptimizer/index.ts +17 -9
  92. package/src/tool/youtubeThumbnail/i18n/de.ts +207 -0
  93. package/src/tool/youtubeThumbnail/i18n/id.ts +207 -0
  94. package/src/tool/youtubeThumbnail/i18n/it.ts +207 -0
  95. package/src/tool/youtubeThumbnail/i18n/ja.ts +207 -0
  96. package/src/tool/youtubeThumbnail/i18n/ko.ts +207 -0
  97. package/src/tool/youtubeThumbnail/i18n/nl.ts +207 -0
  98. package/src/tool/youtubeThumbnail/i18n/pl.ts +207 -0
  99. package/src/tool/youtubeThumbnail/i18n/pt.ts +207 -0
  100. package/src/tool/youtubeThumbnail/i18n/ru.ts +207 -0
  101. package/src/tool/youtubeThumbnail/i18n/sv.ts +207 -0
  102. package/src/tool/youtubeThumbnail/i18n/tr.ts +207 -0
  103. package/src/tool/youtubeThumbnail/i18n/zh.ts +207 -0
  104. package/src/tool/youtubeThumbnail/index.ts +17 -9
  105. package/src/tool/youtubeThumbnailPreviewer/i18n/de.ts +321 -0
  106. package/src/tool/youtubeThumbnailPreviewer/i18n/en.ts +1 -1
  107. package/src/tool/youtubeThumbnailPreviewer/i18n/es.ts +1 -1
  108. package/src/tool/youtubeThumbnailPreviewer/i18n/fr.ts +2 -2
  109. package/src/tool/youtubeThumbnailPreviewer/i18n/id.ts +321 -0
  110. package/src/tool/youtubeThumbnailPreviewer/i18n/it.ts +321 -0
  111. package/src/tool/youtubeThumbnailPreviewer/i18n/ja.ts +321 -0
  112. package/src/tool/youtubeThumbnailPreviewer/i18n/ko.ts +321 -0
  113. package/src/tool/youtubeThumbnailPreviewer/i18n/nl.ts +321 -0
  114. package/src/tool/youtubeThumbnailPreviewer/i18n/pl.ts +321 -0
  115. package/src/tool/youtubeThumbnailPreviewer/i18n/pt.ts +321 -0
  116. package/src/tool/youtubeThumbnailPreviewer/i18n/ru.ts +321 -0
  117. package/src/tool/youtubeThumbnailPreviewer/i18n/sv.ts +321 -0
  118. package/src/tool/youtubeThumbnailPreviewer/i18n/tr.ts +321 -0
  119. package/src/tool/youtubeThumbnailPreviewer/i18n/zh.ts +321 -0
  120. package/src/tool/youtubeThumbnailPreviewer/index.ts +24 -0
@@ -0,0 +1,306 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { SocialValueCalculatorUI } from '../ui';
4
+
5
+ const slug = 'sosyal-medya-hesap-degeri-hesaplayici';
6
+ const title = 'Sosyal Medya Hesap Değeri Hesaplayıcı: TikTok ve Instagram Fiyatlandırması';
7
+ const description =
8
+ 'Sponsorlu gönderiler için ne kadar ücret almanız gerektiğini öğrenin. Hesaplayıcımız, size makul bir piyasa değeri sunmak için takipçileri, etkileşimi ve nişi analiz eder.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Hesap değeri hesaplayıcısı ücretsiz mi?',
13
+ answer:
14
+ 'Evet, aracımız %100 ücretsizdir ve herhangi bir kayıt veya sosyal medya hesaplarınıza bağlantı gerektirmez. Sadece halka açık metriklerinizi girmeniz yeterlidir.',
15
+ },
16
+ {
17
+ question: 'TikTok değeri neden Instagram\'dan farklı?',
18
+ answer:
19
+ 'TikTok büyük ölçüde algoritmik erişime ve görüntülemelere dayanırken, Instagram hala topluluk boyutuna ve takipçi sadakatine büyük önem vermektedir.',
20
+ },
21
+ {
22
+ question: 'Daha fazla ücret almak için iyi bir etkileşim oranı nedir?',
23
+ answer:
24
+ 'Genellikle %3\'ün üzerindeki etkileşim oranı sağlıklı kabul edilir. %10\'dan fazla etkileşime sahip hesaplar "premium profiller" olarak kabul edilir ve önemli bir prim ücreti talep edebilirler.',
25
+ },
26
+ {
27
+ question: 'Niş gerçekten fiyatı o kadar etkiliyor mu?',
28
+ answer:
29
+ 'Kesinlikle. Finans veya yönetim yazılımıyla ilgilenen bir takipçinin bir marka için dönüşüm değeri, hızlı eğlence oder içerik arayan bir takipçiden çok daha yüksektir.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Platformunuzu seçin',
36
+ text: 'TikTok veya Instagram hesap değerini hesaplamak isteyip istemediğinizi seçin.',
37
+ },
38
+ {
39
+ name: 'Metriklerinizi girin',
40
+ text: 'Takipçi sayınızı ve son 10 gönderinizin ortalama görüntülenme ve beğeni sayılarını girin.',
41
+ },
42
+ {
43
+ name: 'Nişinizi seçin',
44
+ text: 'Piyasa talebine göre değeri ayarlamak için içeriğinizi en iyi tanımlayan kategoriyi seçin.',
45
+ },
46
+ {
47
+ name: 'Bütçenizi öğrenin',
48
+ text: 'Profesyonel bir iş birliği için ne kadar ücret almanız gerektiğine dair tahmini bir aralık alın.',
49
+ },
50
+ ];
51
+
52
+ const faqSchema: WithContext<FAQPage> = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'FAQPage',
55
+ mainEntity: faqData.map((item) => ({
56
+ '@type': 'Question',
57
+ name: item.question,
58
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
59
+ })),
60
+ };
61
+
62
+ const howToSchema: WithContext<HowTo> = {
63
+ '@context': 'https://schema.org',
64
+ '@type': 'HowTo',
65
+ name: title,
66
+ description,
67
+ step: howToData.map((step, i) => ({
68
+ '@type': 'HowToStep',
69
+ position: i + 1,
70
+ name: step.name,
71
+ text: step.text,
72
+ })),
73
+ };
74
+
75
+ const appSchema: WithContext<SoftwareApplication> = {
76
+ '@context': 'https://schema.org',
77
+ '@type': 'SoftwareApplication',
78
+ name: title,
79
+ description,
80
+ applicationCategory: 'UtilityApplication',
81
+ operatingSystem: 'All',
82
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'TRY' },
83
+ inLanguage: 'tr',
84
+ };
85
+
86
+ export const content: ToolLocaleContent<SocialValueCalculatorUI> = {
87
+ slug,
88
+ title,
89
+ description,
90
+ faqTitle: 'Sıkça Sorulan Sorular',
91
+ faq: faqData,
92
+ bibliographyTitle: 'Kaynaklar ve Piyasa Araştırmaları',
93
+ bibliography: [
94
+ {
95
+ name: 'Influencer Marketing Hub: Influencer Ücretleri 2026',
96
+ url: 'https://influencermarketinghub.com/influencer-rates/',
97
+ },
98
+ {
99
+ name: 'HypeAuditor: TikTok ve Instagram Etkileşim Raporu',
100
+ url: 'https://hypeauditor.com/free-tools/tiktok-engagement-calculator/',
101
+ },
102
+ {
103
+ name: 'Social Blade: Sosyal Medya İstatistikleri',
104
+ url: 'https://socialblade.com/',
105
+ },
106
+ ],
107
+ howTo: howToData,
108
+ schemas: [faqSchema, howToSchema, appSchema],
109
+ seo: [
110
+ {
111
+ type: 'tip',
112
+ title: 'Bu kılavuzda şunları öğreneceksiniz',
113
+ html: '<ul><li>2026 verilerine dayalı <strong>gerçek piyasa değeriniz</strong>.</li><li><strong>TikTok vs Instagram</strong> etkisinin nasıl ayırt edileceği.</li><li><strong>Nişinizin</strong> CPM\'nizi nasıl dramatik bir şekilde etkilediği.</li><li>Markalarla <strong>pazarlık yapmak için profesyonel bir şablon</strong>.</li></ul>',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Hesap Değeri Hesaplayıcı: TikTok veya Instagram\'da Sponsorlu Gönderi İçin Ne Kadar Ücret Alınmalı?',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Eğer bir içerik üreticisi, influencer iseniz veya sosyal medyada aktif bir topluluğunuz varsa, muhtemelen bir noktada şunu merak etmişsinizdir: <strong>Hesabım aslında ne kadar ediyor?</strong> veya <strong>Bir marka iş birliği için ne kadar istemeliyim?</strong>.',
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: 'Üretici ekonomisinin yükselişi',
127
+ level: 3,
128
+ },
129
+ {
130
+ type: 'paragraph',
131
+ html: 'Influencer pazarlaması olgunlaştı ve artık sadece takipçi sayısından ibaret değil. Markalar sonuç ve derin bir bağ arıyor. Aracımız, gerçek piyasa verilerine dayalı sağlam bir başlangıç noktası sunar.',
132
+ },
133
+ {
134
+ type: 'grid',
135
+ columns: [
136
+ {
137
+ type: 'card',
138
+ title: '+%45',
139
+ html: '<p>Influencer Pazarlama yatırımında yıllık büyüme</p>',
140
+ },
141
+ {
142
+ type: 'card',
143
+ title: '%3.2',
144
+ html: '<p>Sağlıklı kabul edilen ortalama etkileşim oranı</p>',
145
+ },
146
+ {
147
+ type: 'card',
148
+ title: '300₺–1000₺',
149
+ html: '<p>Yüksek değerli nişlerde ortalama CPM (tahmini)</p>',
150
+ },
151
+ ],
152
+ },
153
+ {
154
+ type: 'title',
155
+ text: 'Hesabınızın değerini belirleyen faktörler',
156
+ level: 2,
157
+ },
158
+ {
159
+ type: 'paragraph',
160
+ html: 'Birkaç yıl öncesine kadar inanılanın aksine, takipçi sayısı buzdağının sadece görünen kısmıdır. İşte temel bileşenler:',
161
+ },
162
+ {
163
+ type: 'title',
164
+ text: '1. Etkileşim Oranı',
165
+ level: 3,
166
+ },
167
+ {
168
+ type: 'paragraph',
169
+ html: 'Bu en önemli metriktir. Topluluğunuzun yüzde kaçının içeriğinizle aktif olarak etkileşime girdiğini ölçer. Yüksek etkileşime sahip küçük bir hesap, büyük bir "hayalet" hesaptan çok daha değerlidir.',
170
+ },
171
+ {
172
+ type: 'tip',
173
+ title: 'Etkileşim ipucu',
174
+ html: '<p>Algoritmaya olumlu sinyaller göndermek için paylaşımdan sonraki ilk birkaç saat içinde yorumlara cevap vermeye çalışın.</p>',
175
+ },
176
+ {
177
+ type: 'title',
178
+ text: '2. Ortalama Erişimi',
179
+ level: 3,
180
+ },
181
+ {
182
+ type: 'paragraph',
183
+ html: "TikTok'ta erişim, öneri algoritması nedeniyle değişkendir. Instagram'da Reels, yeni kitlelere ulaşmak için statik fotoğraflardan daha fazla önem kazanmıştır.",
184
+ },
185
+ {
186
+ type: 'title',
187
+ text: '3. Niş veya Kategori',
188
+ level: 3,
189
+ },
190
+ {
191
+ type: 'paragraph',
192
+ html: 'Tüm kitleler aynı değerde değildir. Bir teknoloji veya finans üreticisi, nihai müşterinin yüksek değeri nedeniyle genel bir eğlence üreticisinden çok daha yüksek ücretler talep edebilir.',
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: 'En yüksek ödeme yapan kategoriler (CPM)',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'list',
201
+ items: [
202
+ '<strong>Finans ve İş:</strong> Gönderi başına en iyi ödeme yapan niş.',
203
+ '<strong>Teknoloji ve Gadgetlar:</strong> Yüksek anında satın alma niyeti.',
204
+ '<strong>Sağlık ve Fitness:</strong> Ekipman ve uygulamalar için büyük pazar.',
205
+ '<strong>Ev Yenileme:</strong> Yüksek proje maliyetleri ve yüksek ROI.',
206
+ ],
207
+ },
208
+ {
209
+ type: 'title',
210
+ text: 'TikTok vs Instagram: Para nerede?',
211
+ level: 2,
212
+ },
213
+ {
214
+ type: 'paragraph',
215
+ html: 'Her ikisi de dikey video kullansa da para kazanma modelleri farklılık gösterir. Instagram markalaşmadır; TikTok ise doğrudan performanstır.',
216
+ },
217
+ {
218
+ type: 'grid',
219
+ columns: [
220
+ {
221
+ type: 'card',
222
+ title: 'Instagram',
223
+ html: '<p>Markalaşma, estetik ve sadakate odaklanır. Uzun vadeli kampanyalar için idealdir.</p><ul><li>Topluluk boyutuna değer verir</li><li>Doğrudan satış içeren Hikayeler</li><li>İstikrarlı büyüme</li><li>Daha olgun kitle</li></ul>',
224
+ },
225
+ {
226
+ type: 'card',
227
+ title: 'TikTok',
228
+ html: '<p>Ekstrem viralite ülkesi. Algoritma takipçilere hükmeder. Patlayıcı kısa vadeli ROI.</p><ul><li>Kitlesel erişime değer verir</li><li>Mutlak viral potansiyel</li><li>Düşük üretim maliyetleri</li><li>Çok aktif izleyici kitlesi</li></ul>',
229
+ },
230
+ ],
231
+ },
232
+ {
233
+ type: 'title',
234
+ text: 'Müzakerelerde sonuçları nasıl kullanmalısınız?',
235
+ level: 2,
236
+ },
237
+ {
238
+ type: 'paragraph',
239
+ html: 'Aracımızdan fiyat aralığını alın ve rehber olarak kullanın. Bu şablonu kullanarak metriklerinizi güvenle sunun:',
240
+ },
241
+ {
242
+ type: 'tip',
243
+ title: 'Pazarlık şablonu',
244
+ html: '<p>Merhaba [Marka Adı], ulaştığınız için teşekkürler. Mevcut erişim metriklerime (ortalama [X] görüntüleme) ve % [X] etkileşim oranına dayanarak, bir [Reel/TikTok] entegrasyonu için ücretim [Fiyat ₺]. Şunları içerir: senaryo ve video üretimi, 24 saatlik 1 bio bağlantısı, 2 destekleyici Story, 30 günlük kullanım hakları.</p>',
245
+ },
246
+ {
247
+ type: 'title',
248
+ text: 'Ücretinizi yükseltmek için stratejiler',
249
+ level: 2,
250
+ },
251
+ {
252
+ type: 'list',
253
+ items: [
254
+ '<strong>Etkileşimi teşvik edin:</strong> Her yoruma cevap verin.',
255
+ '<strong>Kaliteyi yükseltin:</strong> Ses, iyi bir videonun %50\'sidir.',
256
+ '<strong>Uzmanlaşın:</strong> "Uzman" olmak, daha fazla ücret istemenize olanak tanır.',
257
+ '<strong>Bir Medya Kiti oluşturun:</strong> Başarılarınızı verilerle belgeleyin.',
258
+ ],
259
+ },
260
+ {
261
+ type: 'title',
262
+ text: 'Tahmini değer güvenilir mi?',
263
+ level: 3,
264
+ },
265
+ {
266
+ type: 'paragraph',
267
+ html: 'Hesaplayıcımız uluslararası ajanslardan gelen toplu verileri kullanır. Ancak mevsimsellik (Noel kampanyaları daha fazla öder) gibi faktörler nihai fiyatı değiştirebilir.',
268
+ },
269
+ {
270
+ type: 'tip',
271
+ title: 'Üreticiler için Not',
272
+ html: '<p>Bu araç bir tahmindir. Fiyatı her zaman marka tarafından talep edilen içeriğin karmaşıklığına göre ayarlayın.</p>',
273
+ },
274
+ ],
275
+ ui: {
276
+ sectionTag: 'Denetim Parametreleri',
277
+ labelFollowers: 'Topluluk (Takipçiler)',
278
+ labelAvgViewsTiktok: 'Etki (Video Başına İzlenme)',
279
+ labelAvgViewsIg: 'Erişim (Profil Erişimi)',
280
+ tooltipViews: 'Son 10 videonuzun görüntülenme sayısını toplayın ve 10\'a bölün.',
281
+ labelEngagement: 'Sadakat (Beğeniler + Yorumlar)',
282
+ tooltipEngagement: 'Son 10 gönderinizdeki toplam beğeni ve yorumları 10\'a bölün.',
283
+ labelNiche: 'Pazar Dikey',
284
+ nicheEntertainment: 'Eğlence',
285
+ nicheFinance: 'Finans ve Emlak',
286
+ nicheTech: 'Teknoloji ve SaaS',
287
+ nicheFitness: 'Yaşam Tarzı ve Sağlık',
288
+ nicheFashion: 'Moda ve Güzellik',
289
+ nicheTravel: 'Turizm ve Seyahat',
290
+ nicheFood: 'Yemek ve Gastronomi',
291
+ nicheGaming: 'Oyun ve eSpor',
292
+ nicheHome: 'Ev ve Yenileme',
293
+ btnCalculate: 'Değer Raporu Oluştur',
294
+ emptyTitle: 'Ticari Fizibilite Analizi',
295
+ emptyDesc: 'Mevcut piyasa değerini hesaplamak için profil metriklerini girin.',
296
+ roiLabel: 'Önerilen Ücret Değerlendirmesi',
297
+ rangeLabel: 'Önerilen aralık:',
298
+ audienceQuality: 'Kitle Kalitesi',
299
+ metricER: 'Etkileşim Oranı',
300
+ investmentEfficiency: 'Yatırım Verimliliği',
301
+ metricCPM: 'Tahmini CPM',
302
+ insightText: 'Bu değerleme Türkiye pazarının ortalama CPM\'ine (2026) dayanmaktadır.',
303
+ currencySymbol: '₺',
304
+ numberLocale: 'tr-TR',
305
+ },
306
+ };
@@ -0,0 +1,306 @@
1
+ import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { SocialValueCalculatorUI } from '../ui';
4
+
5
+ const slug = 'social-account-value-calculator';
6
+ const title = '社交账号价值计算器:TikTok 和 Instagram 推广定价';
7
+ const description =
8
+ '了解您的赞助贴应该收多少钱。我们的计算器通过分析粉丝数、互动率和领域,为您提供公平的市场价值。';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '账号价值计算器是免费的吗?',
13
+ answer:
14
+ '是的,我们的工具 100% 免费,不需要注册或连接您的社交媒体账号。您只需要输入您的公开指标。',
15
+ },
16
+ {
17
+ question: '为什么 TikTok 的价值与 Instagram 不同?',
18
+ answer:
19
+ 'TikTok 很大程度上依赖于算法分发和播放量,而 Instagram 仍然更看重社区规模和粉丝忠诚度。',
20
+ },
21
+ {
22
+ question: '什么样的互动率可以收更高的费用?',
23
+ answer:
24
+ '通常,3% 以上的互动率被认为是健康的。互动率超过 10% 的账号被视为“优质账号”,可以收取显著的溢价。',
25
+ },
26
+ {
27
+ question: '领域(Niche)真的对价格影响那么大吗?',
28
+ answer:
29
+ '绝对是的。相比于寻求快速娱乐或梗图的粉丝,对金融或管理软件感兴趣的粉丝对品牌具有更高的转化价值。',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: '选择您的平台',
36
+ text: '选择您想要计算 TikTok 还是 Instagram 账号的价值。',
37
+ },
38
+ {
39
+ name: '输入您的指标',
40
+ text: '输入您的粉丝数量以及最近 10 个帖子的平均播放量和点赞数。',
41
+ },
42
+ {
43
+ name: '选择您的领域',
44
+ text: '选择最能描述您内容的类别,以便根据市场需求调整价值。',
45
+ },
46
+ {
47
+ name: '获取您的预算',
48
+ text: '获取专业合作应收取的估计价格范围。',
49
+ },
50
+ ];
51
+
52
+ const faqSchema: WithContext<FAQPage> = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'FAQPage',
55
+ mainEntity: faqData.map((item) => ({
56
+ '@type': 'Question',
57
+ name: item.question,
58
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
59
+ })),
60
+ };
61
+
62
+ const howToSchema: WithContext<HowToThing> = {
63
+ '@context': 'https://schema.org',
64
+ '@type': 'HowTo',
65
+ name: title,
66
+ description,
67
+ step: howToData.map((step, i) => ({
68
+ '@type': 'HowToStep',
69
+ position: i + 1,
70
+ name: step.name,
71
+ text: step.text,
72
+ })),
73
+ };
74
+
75
+ const appSchema: WithContext<SoftwareApplication> = {
76
+ '@context': 'https://schema.org',
77
+ '@type': 'SoftwareApplication',
78
+ name: title,
79
+ description,
80
+ applicationCategory: 'UtilityApplication',
81
+ operatingSystem: 'All',
82
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'CNY' },
83
+ inLanguage: 'zh',
84
+ };
85
+
86
+ export const content: ToolLocaleContent<SocialValueCalculatorUI> = {
87
+ slug,
88
+ title,
89
+ description,
90
+ faqTitle: '常见问题',
91
+ faq: faqData,
92
+ bibliographyTitle: '来源与市场研究',
93
+ bibliography: [
94
+ {
95
+ name: 'Influencer Marketing Hub:2026 红人定价',
96
+ url: 'https://influencermarketinghub.com/influencer-rates/',
97
+ },
98
+ {
99
+ name: 'HypeAuditor:TikTok 和 Instagram 互动报告',
100
+ url: 'https://hypeauditor.com/free-tools/tiktok-engagement-calculator/',
101
+ },
102
+ {
103
+ name: 'Social Blade:社交媒体统计数据',
104
+ url: 'https://socialblade.com/',
105
+ },
106
+ ],
107
+ howTo: howToData,
108
+ schemas: [faqSchema, howToSchema, appSchema],
109
+ seo: [
110
+ {
111
+ type: 'tip',
112
+ title: '在本指南中,您将了解到',
113
+ html: '<ul><li>基于 2026 年数据的<strong>真实市场价值</strong>。</li><li>如何区分 <strong>TikTok 与 Instagram</strong> 的影响。</li><li>您的<strong>垂直领域</strong>如何显著影响您的 CPM。</li><li>用于<strong>与品牌谈判</strong>的专业模板。</li></ul>',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: '账号价值计算器:在 TikTok 或 Instagram 上发布赞助贴应该收多少钱?',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: '如果您是一名内容创作者、红人,或者只是在社交媒体上拥有一个活跃的社区,您可能在某个时候想过:<strong>我的账号到底值多少钱?</strong> 或者 <strong>我应该向品牌合作方报多少价?</strong>',
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: '创作者经济的兴起',
127
+ level: 3,
128
+ },
129
+ {
130
+ type: 'paragraph',
131
+ html: '红人营销已经成熟,不再仅仅关注粉丝数量。品牌正在寻找结果和深层联系。我们的工具基于真实的市场数据提供了一个可靠的起点。',
132
+ },
133
+ {
134
+ type: 'grid',
135
+ columns: [
136
+ {
137
+ type: 'card',
138
+ title: '+45%',
139
+ html: '<p>红人营销投资的年度增长</p>',
140
+ },
141
+ {
142
+ type: 'card',
143
+ title: '3.2%',
144
+ html: '<p>被视为健康的平均互动率</p>',
145
+ },
146
+ {
147
+ type: 'card',
148
+ title: '¥100–¥400',
149
+ html: '<p>高价值领域的平均 CPM(预计)</p>',
150
+ },
151
+ ],
152
+ },
153
+ {
154
+ type: 'title',
155
+ text: '决定您账号价值的因素',
156
+ level: 2,
157
+ },
158
+ {
159
+ type: 'paragraph',
160
+ html: '与几年前人们所相信的不同,粉丝数量只是冰山一角。以下是核心组成部分:',
161
+ },
162
+ {
163
+ type: 'title',
164
+ text: '1. 互动率 (Engagement Rate)',
165
+ level: 3,
166
+ },
167
+ {
168
+ type: 'paragraph',
169
+ html: '这是关键指标。它衡量您的社区中有多大比例的人在积极与您的内容互动。一个互动量高的小账号远比一个毫无反应的“僵尸”大号更有价值。',
170
+ },
171
+ {
172
+ type: 'tip',
173
+ title: '互动技巧',
174
+ html: '<p>尝试在发布后的头几个小时内回复评论,以便向算法发送积极信号。</p>',
175
+ },
176
+ {
177
+ type: 'title',
178
+ text: '2. 平均触达量',
179
+ level: 3,
180
+ },
181
+ {
182
+ type: 'paragraph',
183
+ html: '在 TikTok 上,由于其推荐算法,触达量是不稳定的。在 Instagram 上,Reels 短视频在吸引新观众方面比静态照片更具权重。',
184
+ },
185
+ {
186
+ type: 'title',
187
+ text: '3. 垂直领域或类别',
188
+ level: 3,
189
+ },
190
+ {
191
+ type: 'paragraph',
192
+ html: '并非所有受众的价值都相同。由于终端客户的价值更高,科技或金融类的创作者可以收取的费用远高于普通娱乐类创作者。',
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: '报酬最高的类别 (CPM)',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'list',
201
+ items: [
202
+ '<strong>金融与商业:</strong> 每篇贴子报酬最高的领域。',
203
+ '<strong>科技与数码:</strong> 具有很强的即时购买意向。',
204
+ '<strong>健康与健身:</strong> 器材和应用的庞大市场。',
205
+ '<strong>家居装修:</strong> 项目成本高,投资回报率(ROI)高。',
206
+ ],
207
+ },
208
+ {
209
+ type: 'title',
210
+ text: 'TikTok vs Instagram:钱在哪里?',
211
+ level: 2,
212
+ },
213
+ {
214
+ type: 'paragraph',
215
+ html: '虽然两者都使用垂直视频,但它们的变现模式有所不同。Instagram 侧重于品牌建设;TikTok 则纯粹看效果。',
216
+ },
217
+ {
218
+ type: 'grid',
219
+ columns: [
220
+ {
221
+ type: 'card',
222
+ title: 'Instagram',
223
+ html: '<p>专注于品牌、美感和忠诚度。适合长期活动。</p><ul><li>看重社区规模</li><li>具有直接销售能力的 Stories</li><li>增长稳定</li><li>受众更成熟</li></ul>',
224
+ },
225
+ {
226
+ type: 'card',
227
+ title: 'TikTok',
228
+ html: '<p>极端病毒式传播的领地。算法决定了一切。爆发性的短期 ROI。</p><ul><li>看重海量触达</li><li>绝对的爆款潜力</li><li>制作成本低</li><li>受众非常活跃</li></ul>',
229
+ },
230
+ ],
231
+ },
232
+ {
233
+ type: 'title',
234
+ text: '如何利用结果进行谈判',
235
+ level: 2,
236
+ },
237
+ {
238
+ type: 'paragraph',
239
+ html: '以我们工具给出的价格范围作为参考。利用此模板自信地展示您的指标:',
240
+ },
241
+ {
242
+ type: 'tip',
243
+ title: '谈判模板',
244
+ html: '<p>您好 [品牌名称],感谢您的联系。根据我目前的触达指标(平均 [X] 次播放)和 [X]% 的互动率,我在 [Reel/TikTok] 中的单条报价为 [价格 ¥]。这包括:脚本编写和视频制作、24 小时的 bio 链接、2 条增强曝光的 Stories、30 天的使用权。</p>',
245
+ },
246
+ {
247
+ type: 'title',
248
+ text: '提高报价的策略',
249
+ level: 2,
250
+ },
251
+ {
252
+ type: 'list',
253
+ items: [
254
+ '<strong>鼓励互动:</strong> 回复每一条评论。',
255
+ '<strong>提高质量:</strong> 音频占好视频成功因素的 50%。',
256
+ '<strong>专业化:</strong> 成为“专家”能让您收更多钱。',
257
+ '<strong>制作媒体手册 (Media Kit):</strong> 用数据记录您的成功案例。',
258
+ ],
259
+ },
260
+ {
261
+ type: 'title',
262
+ text: '估计价值可靠吗?',
263
+ level: 3,
264
+ },
265
+ {
266
+ type: 'paragraph',
267
+ html: '我们的计算器使用来自国际机构的汇总数据。然而,季节性因素(圣诞节活动的报酬更高)等因素可能会改变最终价格。',
268
+ },
269
+ {
270
+ type: 'tip',
271
+ title: '创作者注',
272
+ html: '<p>此工具仅为估算值。请务必根据品牌方要求的内容复杂程度调整价格。</p>',
273
+ },
274
+ ],
275
+ ui: {
276
+ sectionTag: '审计参数',
277
+ labelFollowers: '社区(粉丝)',
278
+ labelAvgViewsTiktok: '影响力(单条视频播放量)',
279
+ labelAvgViewsIg: '触达(个人资料触达)',
280
+ tooltipViews: '将您最近 10 个视频的播放量相加并除以 10。',
281
+ labelEngagement: '忠诚度(点赞+评论)',
282
+ tooltipEngagement: '最近 10 个帖子的点赞和评论总数相加并除以 10。',
283
+ labelNiche: '市场领域',
284
+ nicheEntertainment: '娱乐',
285
+ nicheFinance: '金融与房地产',
286
+ nicheTech: '科技与 SaaS',
287
+ nicheFitness: '生活方式与健康',
288
+ nicheFashion: '时尚与美容',
289
+ nicheTravel: '旅游与旅行',
290
+ nicheFood: '美食与餐饮',
291
+ nicheGaming: '游戏与电竞',
292
+ nicheHome: '家居与装修',
293
+ btnCalculate: '生成价值报告',
294
+ emptyTitle: '商业可行性分析',
295
+ emptyDesc: '输入账号指标以预测当前市场价值。',
296
+ roiLabel: '建议价格评估',
297
+ rangeLabel: '建议范围:',
298
+ audienceQuality: '受众质量',
299
+ metricER: '互动率',
300
+ investmentEfficiency: '投资效率',
301
+ metricCPM: '预计 CPM',
302
+ insightText: '此估值基于 2026 年中国市场的平均 CPM。',
303
+ currencySymbol: '¥',
304
+ numberLocale: 'zh-CN',
305
+ },
306
+ };
@@ -7,20 +7,28 @@ import SocialValueCalculatorBibliography from './bibliography.astro';
7
7
  import type { SocialValueCalculatorUI } from './ui';
8
8
  export type SocialValueCalculatorLocaleContent = ToolLocaleContent<SocialValueCalculatorUI>;
9
9
 
10
- import { content as es } from './i18n/es';
11
- import { content as en } from './i18n/en';
12
- import { content as fr } from './i18n/fr';
13
-
14
10
  export const socialValueCalculator: SocialToolEntry<SocialValueCalculatorUI> = {
15
11
  id: 'social-value-calculator',
16
12
  icons: {
17
- bg: 'mdi:currency-usd',
18
- fg: 'mdi:instagram',
13
+ bg: 'mdi:calculator-variant-outline',
14
+ fg: 'mdi:currency-usd',
19
15
  },
20
16
  i18n: {
21
- es: async () => es,
22
- en: async () => en,
23
- fr: async () => fr,
17
+ es: () => import('./i18n/es').then((m) => m.content),
18
+ en: () => import('./i18n/en').then((m) => m.content),
19
+ fr: () => import('./i18n/fr').then((m) => m.content),
20
+ de: () => import('./i18n/de').then((m) => m.content),
21
+ id: () => import('./i18n/id').then((m) => m.content),
22
+ it: () => import('./i18n/it').then((m) => m.content),
23
+ ja: () => import('./i18n/ja').then((m) => m.content),
24
+ ko: () => import('./i18n/ko').then((m) => m.content),
25
+ nl: () => import('./i18n/nl').then((m) => m.content),
26
+ pl: () => import('./i18n/pl').then((m) => m.content),
27
+ pt: () => import('./i18n/pt').then((m) => m.content),
28
+ ru: () => import('./i18n/ru').then((m) => m.content),
29
+ sv: () => import('./i18n/sv').then((m) => m.content),
30
+ tr: () => import('./i18n/tr').then((m) => m.content),
31
+ zh: () => import('./i18n/zh').then((m) => m.content),
24
32
  },
25
33
  };
26
34