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?
- Translations not making it into Block UI but work in the rest of the plugin
- How to use native wordpress translation domain inside a custom plugin?
- My wordpress plugin defaults to English (US) I would like it to default to English (UK)
- Insert, update or remove data from database (usermeta)
- I have English words in Kurdish pages
- Get search result count in plugin
- How to translate wordpress blog to other languages?
- WordPress: I wanted to use Add rewrite rule multiple times for multiple CPT in my plugin
- Transform internationalized plugin into internationalized mu-plugin?
- How can we stop showing short code in create or edit post section
- How to get inserted row IDs for bulk/batch insert with wpdb query?
- __() function inside html tags
- Override woocommerce loop-start.php from theme using plugin?
- Get value of custom checkbox from Gutenberg sidebar in plugin
- setTimeout not working in jquery
- Getting products information, in woocommerce based on products ID
- Enable a role named ‘backend_user’ to access my plugin pages
- I’m including a html file in my plugin, but it can’t find its css or js files
- Save meta box data from selected dropdown list in bbpress reply form
- get the term_id of current taxonomy page
- how to handle premium features in a wordpress plugin?
- Sanitize WordPress Array Input?
- How to know if current plugin is going to be used while rendering the page?
- How the add_action is included in the plugin development
- Dynamically modify content added to table via javascript
- Disabling Yoast, All-in-One, and Rank Math on Certain Pages within a Plugin
- How to show content in the body with my plugin (only in frontend not backend)?
- Show username only if logged in in a else no directly name
- Metabox types list
- How to limit number of category term display in home page grids?
- how to create a shortcode from a variable in plugin