# Перевод с ИИ: что случилось с «Переводимыми категориями» и как рассчитывается стоимость перевода?

**URL:** https://meta.discourse.org/t/ai-translation-what-happened-to-translatable-categories-and-how-are-translation-costs-calculated/405072
**Category:** Support
**Tags:** ai, dynaloc
**Created:** [11.Июнь.2026 13:55:30 UTC](https://meta.discourse.org/t/ai-translation-what-happened-to-translatable-categories-and-how-are-translation-costs-calculated/405072 "2026-06-11T13:55:30Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [11.Июнь.2026 14:35:25 UTC](https://meta.discourse.org/t/ai-translation-what-happened-to-translatable-categories-and-how-are-translation-costs-calculated/405072/3 "2026-06-11T14:35:25Z")

</div>

Для других вопросов вы также можете использовать [Data Explorer](https://meta.discourse.org/t/32566?silent=true).

Это то, что вы имели в виду?

 ![Screenshot_20260611_163307_Firefox](https://global.discourse-cdn.com/meta/original/4X/8/b/f/8bf6529463608bf2dace0a287f0a6d7b1a3fb2b3.jpeg)

```sql
SELECT
    c.id AS category_id,
    COUNT(DISTINCT pl.post_id) AS translated_posts,
    COUNT(DISTINCT pl.locale) AS languages,
    COUNT(*) AS total_translations
FROM post_localizations pl
JOIN posts p ON p.id = pl.post_id
JOIN topics t ON t.id = p.topic_id
JOIN categories c ON c.id = t.category_id
GROUP BY c.id, c.name
ORDER BY total_translations DESC

```

---

_[View the full topic](https://meta.discourse.org/t/ai-translation-what-happened-to-translatable-categories-and-how-are-translation-costs-calculated/405072)._
