Conversation
supportIn version 1.2 the translations are not loaded because load_plugin_textdomain() is not called. Here is a patch to load them: --- inazo-flamingo-automatically-delete-old-messages.orig.php 2024-07-26 14:49:30.000000000 +0100 +++ inazo-flamingo-automatically-delete-old-messages.php 2025-09-30 11:14:55.168653200 +0100 @@ -35,8 +35,15 @@ if (! wp_next_scheduled ( 'inazo_flamingo_auto_trash_cron_task_daily' )){ wp_schedule_event(time(), 'hourly', 'inazo_flamingo_auto_trash_cron_task_daily'); } + + + add_action( 'init', array( $this, 'load_translations' ) ); } - + + function load_translations() { + load_plugin_textdomain( 'inazo-flamingo-auto-trash', false, basename( dirname( __FILE__ ) ) . '/languages' ); + } + /* * Create the install of the plugin */ I can now see English strings in my dashboard.
No comments were stored for this source.