summaryrefslogtreecommitdiff
path: root/admin/admin_newsletter_subscriptions.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-15 16:40:38 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-15 16:40:38 +0100
commite27c55b1244ced35e798a6825737d5bb6bfd2f9b (patch)
tree6ac69f97ff2ccf040360c42984e27c623c8f28ad /admin/admin_newsletter_subscriptions.php
parent93ecf609d059b979d37af3da417efa005d350ca7 (diff)
downloadnewsletters-e27c55b1244ced35e798a6825737d5bb6bfd2f9b.tar.gz
newsletters-e27c55b1244ced35e798a6825737d5bb6bfd2f9b.tar.bz2
newsletters-e27c55b1244ced35e798a6825737d5bb6bfd2f9b.zip
Namespace fixes
Diffstat (limited to 'admin/admin_newsletter_subscriptions.php')
-rw-r--r--admin/admin_newsletter_subscriptions.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/admin/admin_newsletter_subscriptions.php b/admin/admin_newsletter_subscriptions.php
index b25682d..00498a1 100644
--- a/admin/admin_newsletter_subscriptions.php
+++ b/admin/admin_newsletter_subscriptions.php
@@ -1,4 +1,5 @@
<?php
+use Bitweaver\KernelTools;
// $Header$
@@ -37,8 +38,8 @@ if( $gContent->isValid() ) {
}
$gBitSystem->confirmDialog( $formHash,
[
- 'warning' => tra('Are you sure you want to delete these subscriptions?') . ' (' . tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
- 'error' => tra('This cannot be undone!'),
+ 'warning' => KernelTools::tra('Are you sure you want to delete these subscriptions?') . ' (' . KernelTools::tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
+ 'error' => KernelTools::tra('This cannot be undone!'),
],
);
} else {
@@ -58,8 +59,8 @@ if( $gContent->isValid() ) {
}
$gBitSystem->confirmDialog( $formHash,
[
- 'warning' => tra('Are you sure you want to unsubcsribe these subscriptions?') . ' (' . tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
- 'error' => tra('This cannot be undone!'),
+ 'warning' => KernelTools::tra('Are you sure you want to unsubcsribe these subscriptions?') . ' (' . KernelTools::tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
+ 'error' => KernelTools::tra('This cannot be undone!'),
],
);
} else {
@@ -79,8 +80,8 @@ if( $gContent->isValid() ) {
}
$gBitSystem->confirmDialog( $formHash,
[
- 'warning' => tra('Are you sure you want to resubscribe these subscriptions?') . ' (' . tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
- 'error' => tra('This cannot be undone!'),
+ 'warning' => KernelTools::tra('Are you sure you want to resubscribe these subscriptions?') . ' (' . KernelTools::tra('Count: ') . count( $_REQUEST["checked"] ) . ')',
+ 'error' => KernelTools::tra('This cannot be undone!'),
],
);
} else {