WPIntell

Source evidence

Translations not loaded

Inazo's flamingo automatically delete old messages · support · 2025-09-30T10:25:00+00:00

complaintsentiment
mediumseverity
0.75relevance
0replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 34 rows with source links

11.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
daymobrew unresolved
In 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.

Comments

0 shown

No comments were stored for this source.