MO::is_entry_good_for_export( Translation_Entry $entry )


Description Description


Parameters Parameters

$entry

(Translation_Entry) (Required)


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: wp-includes/pomo/mo.php

		function is_entry_good_for_export( $entry ) {
			if ( empty( $entry->translations ) ) {
				return false;
			}

			if ( ! array_filter( $entry->translations ) ) {
				return false;
			}

			return true;
		}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.