# AI-vertaling backfill werkt toch niet na het configureren van alle instellingen

**URL:** https://meta.discourse.org/t/ai-translation-backfill-not-working-after-all-settings-configured/374669
**Category:** Support
**Tags:** ai, content-localization
**Created:** [17 juli 2025 om 17:09 UTC](https://meta.discourse.org/t/ai-translation-backfill-not-working-after-all-settings-configured/374669 "2025-07-17T17:09:59Z")
**Posts on this page:** 1
**Showing post:** 29

<div class="post-metadata">

### Author: ![nat](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nat/32/235063_2.png) [@nat](https://meta.discourse.org/u/nat)
#### Post date: [11 november 2025 om 17:19 UTC](https://meta.discourse.org/t/ai-translation-backfill-not-working-after-all-settings-configured/374669/29 "2025-11-11T17:19:52Z")

</div>

I don’t recommend using the free tier for translations. Translating a simple post can wipe out all the quota in the free tier.

You can use the following query to check which post is using up the tokens:

```plaintext
-- [params]
-- date :start_date = '2025-11-01'

SELECT 
  feature_name,
  created_at,
  post_id,
  response_tokens
FROM 
  ai_api_audit_logs
WHERE 
  post_id IS NOT NULL
  AND created_at > :start_date
  AND (response_tokens IS NULL OR response_tokens != 1)
ORDER BY 
  created_at DESC

```

Since I still have access to your site, I created it in your [data explorer](https://meta.discourse.org/t/32566?silent=true). Truly it is a post that wiped it out, you can see it on your site at `/admin/plugins/explorer/queries/7`.

---

_[View the full topic](https://meta.discourse.org/t/ai-translation-backfill-not-working-after-all-settings-configured/374669)._
