Update tranlation text domain

This commit is contained in:
David Stone
2025-02-15 23:19:24 -07:00
parent 217009caab
commit f05ab77418
424 changed files with 6368 additions and 6368 deletions

View File

@ -83,7 +83,7 @@ class Screenshot {
* Check if the results contain a PNG header.
*/
if (! str_starts_with($response['body'], "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a")) {
wu_log_add('screenshot-generator', $log_prefix . __('Result is not a PNG file.', 'wp-ultimo'), LogLevel::ERROR);
wu_log_add('screenshot-generator', $log_prefix . __('Result is not a PNG file.', 'wp-multisite-waas'), LogLevel::ERROR);
return false;
}
@ -122,7 +122,7 @@ class Screenshot {
// Assign metadata to attachment
wp_update_attachment_metadata($attach_id, $attach_data);
wu_log_add('screenshot-generator', $log_prefix . __('Success!', 'wp-ultimo'));
wu_log_add('screenshot-generator', $log_prefix . __('Success!', 'wp-multisite-waas'));
return $attach_id;
}