Skip to content

Commit

Permalink
Add translateable string in footer
Browse files Browse the repository at this point in the history
Fixes missing translation reported in WPManageNinja#19
  • Loading branch information
tdrayson committed Nov 19, 2024
1 parent 7044d2e commit 4daff0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#50114F",
"titleBar.activeBackground": "#70186F",
"titleBar.activeForeground": "#FEFCFE"
}
}
2 changes: 1 addition & 1 deletion app/Views/notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<table role="presentation" border="0" cellpadding="0" cellspacing="0" style="border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;" width="100%">
<tr>
<td class="content-block" style="font-family: sans-serif; vertical-align: top; padding-bottom: 10px; padding-top: 10px; color: #999999; font-size: 12px; text-align: center;" valign="top" align="center">
<span class="apple-link" style="color: #999999; font-size: 12px; text-align: center;">This email has been sent from FluentAuth Security Plugin. Site: <?php echo esc_url(site_url()); ?></span>
<span class="apple-link" style="color: #999999; font-size: 12px; text-align: center;"><?php echo sprintf(__('This email has been sent from FluentAuth Security Plugin. Site: %s', 'fluent-security'), esc_url(site_url())); ?></span>
</td>
</tr>
</table>
Expand Down

0 comments on commit 4daff0e

Please sign in to comment.