From 1e8724c406f848c9c38d7d490e4679c76ca2b34c Mon Sep 17 00:00:00 2001 From: Paul Kevan Date: Tue, 10 Dec 2024 12:08:58 +0000 Subject: [PATCH] correct translation domain --- .../wp-content/plugins/camptix/inc/class-camptix-badges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/wp-content/plugins/camptix/inc/class-camptix-badges.php b/public_html/wp-content/plugins/camptix/inc/class-camptix-badges.php index a27f435e5..f6c3f1876 100644 --- a/public_html/wp-content/plugins/camptix/inc/class-camptix-badges.php +++ b/public_html/wp-content/plugins/camptix/inc/class-camptix-badges.php @@ -41,7 +41,7 @@ function process_badges() { // Badge_api doesn't return anything apart from a success message, so lets guess how many items were updated. $count = count( $users ); - return sprintf( _n( '%s badge updated', '%s badges updated', $count, 'wordcamp' ), number_format_i18n( $count ) ); + return sprintf( _n( '%s badge updated', '%s badges updated', $count, 'wordcamporg' ), number_format_i18n( $count ) ); } /**