-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warn when wp_mail() is already declared; add plugin admin links and f…
…ix some other links
- Loading branch information
Showing
7 changed files
with
101 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.svn | ||
languages/disable-emails.mo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: disable-emails\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2014-04-19 10:24+1000\n" | ||
"PO-Revision-Date: 2014-04-19 10:24+1000\n" | ||
"POT-Creation-Date: 2014-06-22 11:05+1000\n" | ||
"PO-Revision-Date: 2014-06-22 11:06+1000\n" | ||
"Last-Translator: Ross McKay <[email protected]>\n" | ||
"Language-Team: \n" | ||
"Language: en_US\n" | ||
|
@@ -22,6 +22,23 @@ msgstr "" | |
"X-Generator: Poedit 1.5.4\n" | ||
"X-Poedit-SearchPath-0: ..\n" | ||
|
||
#: ../includes/class.DisableEmailsPlugin.php:122 | ||
msgid "Get help" | ||
msgstr "" | ||
|
||
#: ../includes/class.DisableEmailsPlugin.php:123 | ||
msgid "Rating" | ||
msgstr "" | ||
|
||
#: ../includes/class.DisableEmailsPlugin.php:124 | ||
msgctxt "translate from English" | ||
msgid "Translate" | ||
msgstr "" | ||
|
||
#: ../includes/class.DisableEmailsPlugin.php:125 | ||
msgid "Donate" | ||
msgstr "" | ||
|
||
#: ../views/settings-form.php:9 | ||
msgid "Disable Emails settings" | ||
msgstr "" | ||
|
@@ -33,3 +50,9 @@ msgstr "" | |
#: ../views/settings-form.php:19 | ||
msgid "call WordPress hooks so that listeners can act, e.g. log emails" | ||
msgstr "" | ||
|
||
#: ../views/warn-already-defined.php:3 | ||
msgid "" | ||
"Emails are not disabled! Something else has already declared wp_mail(), so " | ||
"Disable Emails cannot stop emails being sent!" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Disable Emails # | ||
|
||
Stop WordPress from sending any emails. ANY! | ||
|
||
* [Home](http://shop.webaware.com.au/downloads/disable-emails/) | ||
* [GitHub](https://github.com/webaware/disable-emails/) | ||
* [Readme](https://github.com/webaware/disable-emails/blob/master/readme.txt) | ||
* [Download](http://wordpress.org/plugins/disable-emails/) | ||
* [Documentation](http://wordpress.org/plugins/disable-emails/faq/) | ||
* [Support](http://wordpress.org/support/plugin/disable-emails) | ||
* [Translate](http://translate.webaware.com.au/projects/disable-emails) | ||
* [Donate](http://shop.webaware.com.au/downloads/disable-emails/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
<div class="error"> | ||
<p><?php _e("Emails are not disabled! Something else has already declared wp_mail(), so Disable Emails cannot stop emails being sent!", 'disable-emails'); ?></p> | ||
</div> |