How to delete translated version of a page associated with a particular language or for all languages?
You can delete all translated pages for a particular language or for all languages using the steps below: • Go to WordPress Options->Translator->Advanced->Cache Management->Delete page from cache. • Give the url of the page for which you want to clear translator cache in URL input text field. • Select a language or ALL (to delete all translated version of the page specified in URL field). • Click Delete button. Alternatively You can execute simple SQL queries to delete all translations for a one or more pages or all translations in a particular language or any combination thereof. For example you can use this query to delete all French translations of your blog: delete from wordpress.wp_atpp_page_cache where language = ‘fr’; wordpress and wp (wordpress.wp_atpp_page_cache) are replaced by your wordpress blog database name and table prefix respectively.