I think Jacob has probably solved your problem in the comments.
However, to your question:
How to debug further this issue?
I would hook into the load_textdomain_mofile filter and check the fully built file paths WordPress is actually trying to read: Example:
<?php
function debug_missing_mofile( $mofile, $domain ){
if( 'ausg' === $domain && ! is_readable($mofile) ){
trigger_error('MO file not found at '.$mofile, E_USER_WARNING);
}
return $mofile;
}
add_filter('load_textdomain_mofile','debug_missing_mofile',999,2);
You should get two warnings. First for a missing file under WP_LANG_DIR, Second for a missing file that is probably your incorrect plugin path.
Notes:
- Up to you how you print the error. This example just raises a warning.
- Hooking with low priority to ensure other filters modifying paths have run.
Related Posts:
- How to translate wordpress backend to another language
- `wp_set_script_translations` with `wp.i18n` does not return translated strings in simple plugin
- Language Translation is not working?
- Is it possible to check is loaded language files correctly with WordPress plugin?
- Plugin language always shows WP site language, not profile language
- Is hint for translator compulsory while internationalizing a string containing variables?
- HTML inside __() or _e() language translation string
- How to make a WordPress plugin translation ready?
- Change language by clicking a button
- How to get a translated string from a language other than the current one?
- Change admin language based on user (in single-site)
- How to provide translations for a WordPress TinyMCE plugin?
- Changing the language of a single page
- Problems with localization
- How does gettext works for translating readme file of plugin?
- Can’t we use strings defined as PHP constants if we want to translate them in a plugin?
- WordPress: After Gutenberg plugin migration to block.json the localization/ translations with PolyGlot in JavaScript does not work anymore
- use __($str) to translate strings (symfony/twig)
- Plugin Localization
- Why load_textdomain work but not load_plugin_textdomain?
- plugin development: storing language specific options
- Translate strings not recognised in plugin
- How to i18n text coming from the db or from an external source
- Should I always prefer esc_attr_e & esc_html_e instead of _e?
- ‘Trick’ a plugin (WP-Members) to think the blog language has changed for a single page
- load_theme_textdomain path
- Should shorcodes in i18n plugins be translated and if so, how?
- Widget translation on my plugin
- Frontend language per user
- Plugin translations not installed but… strings are translated!
- .mo translation strings not loading in PHP scripts that handle AJAX calls
- Generate JSON files for language translation from po file without wp-cli i18n make-json
- Build a translation correcter plugin
- Plugin directory says that my plugin it’s not availabe in Spanish, but it is
- Translation per IP location [closed]
- Force language in translate function
- Translate slug in WPMU with PO files
- Translate MCE button text/tooltip in custom plugin
- esc_html__() and __() not working within arrays
- How to prevent someone from entering strings without making it available for translation?
- Readme.txt seems to be cached but not the version
- Internationalizing Plugin
- Return Value of load_plugin_textdomain
- Translate javascript with WordPress built-in localization API for static strings
- Translating plugin settings page – dropdown list
- Make dynamic string translatable
- Using HTML links within translatable string
- Plugin Development – Multilangual – Different pages
- Borrowing of Previously Translated Strings by Child Plugin
- Translation for a text that is not printed on the screen
- Translations only load from `wp-content/languages/plugins` but not from the plugin’s languages folder
- Include external po file for 3th party plugin to theme
- HTML Elements in my WP Plugin being generated in JS. Security and Translated Text Question about this method being used
- get_the_date() returns english Year & Day when language is Arabic
- Qtranslate-X get raw post title value
- Conditionally change WordPress core language
- How can I specify the plugin language in WordPress?
- Add language localisation to javascript alert?
- wordpress4.8.2 Multilingual Plugin
- How to store in the database directly the translation?
- Translation not working for Constant strings in Plugin
- Load textdomain from global languages directory
- Plugin translation not being displayed
- Translation not working in sprinf variable
- Problem with Poedit [closed]
- How to translate WP plugin name?
- get the queried_object of an url
- Save translation file of third party plugin in a custom plugin?
- How to get locale within WP REST Request?
- Looking for WordPress System Diagrams
- Check the Version of an Enqueue’d External Library
- How to Parse an Array of Elements in Gutenberg Block
- Custom rewrite rule serves content, but returns 404 error code
- How to edit mySQL wp_posts table from plugin php?
- Creating a Wordpess Plugin that writes data to a csv file. The data doesn’t show in the csv file?
- Widget update function not saving values
- get_the_excerpt() is not returning an empty string when the_excerpt is blank?
- “Plugin could not be activated because it triggered a fatal error.”
- Does the order of sections in readme.txt matter?
- Add column in WP user but it goes wrong
- Is file_get_contents() the only way for plugins reading local files OR does WP_Filesystem_Direct::get_contents() even work?
- Hook into Jetpacks Publicize without using a post type
- Checking a WordPress for OWASP top 10 vulnerabilities [closed]
- The Correct Way to Use Nonce Field without Settings API
- Run command “composer install” when activating wordpress plugin
- Import user data using CSV
- How to submit/upload data to database and in specific folder?
- OOP plugin not working
- Plugin Options not saving options and doesn’t work
- JQuery Slider – Similar to www.internetmarketinginc.com [closed]
- WordPress video js error this.mediaElement.play is not a function
- First page download plugin
- How to avoid conflict if a plugin already have included open library?
- How to get an array out of a nav menu if it’s a plugin?
- Is there a way to make is_search() always return false
- Translate placeholder text in search field
- How to get the value entered in the input field in wordpres
- Sanitize and Save metabox values
- How can I add a custom button to the post editor?
- How to use register_setting()