New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Development Readme (trunk): Dutch

1 2 3 17
Prio Original string Translation
A plugin for WordPress which allows you to send an email to the registered blog users. Users can send personal emails to each other.
Priority: high
You have to log in to add a translation. Details
A plugin for WordPress which allows you to send an email to the registered blog users. Users can send personal emails to each other.
Comment

Short description.

You have to log in to edit this translation.

Email Users
Priority: high
You have to log in to add a translation. Details
Email Users
Comment

Plugin name.

You have to log in to edit this translation.

Installation Instructions You have to log in to add a translation. Details
Installation Instructions
Comment

Found in faq header.

You have to log in to edit this translation.

Regular SQL comparisons (=, !=, etc.) can be performed. Wildcard matches (LIKE, NOT LIKE) are not supported due to how the WordPress get_users() API currently handles LIKE comparison. A better solution is to use the REGEXP/NOT REGEXP constructs added in WordPress 3.7. Regular Expressions allow you to select groups of users based on matching meta values like first or last name or ranges within them. You have to log in to add a translation. Details
Regular SQL comparisons (=, !=, etc.) can be performed. Wildcard matches (LIKE, NOT LIKE) are not supported due to how the WordPress get_users() API currently handles LIKE comparison. A better solution is to use the REGEXP/NOT REGEXP constructs added in WordPress 3.7. Regular Expressions allow you to select groups of users based on matching meta values like first or last name or ranges within them.
Comment

Found in description paragraph.

You have to log in to edit this translation.

The mailusers_register_user_custom_meta_filter() and mailusers_register_group_custom_meta_filter() actions each take 3-4 parameters: 1. Label - text that will appear on the WordPress Email-Users menu (users) or in the Recipient List (groups). 1. Meta Key - the meta key to search for in the user meta table. 1. Meta Value - the value to match against in the user meta table. 1. Meta Compare - optional, defaults to '='. The type of comparison to be performed. You have to log in to add a translation. Details
The mailusers_register_user_custom_meta_filter() and mailusers_register_group_custom_meta_filter() actions each take 3-4 parameters: 1. Label - text that will appear on the WordPress Email-Users menu (users) or in the Recipient List (groups). 1. Meta Key - the meta key to search for in the user meta table. 1. Meta Value - the value to match against in the user meta table. 1. Meta Compare - optional, defaults to '='. The type of comparison to be performed.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Email Users supports a number of filters and actions. 1. Action: mailusers_before_wp_mail - called before wp_mail is called. 1. Action: mailusers_after_wp_mail - called after wp_mail is called. 1. Filter: mailusers_manipulate_headers - called before wp_mail is called. You have to log in to add a translation. Details
Email Users supports a number of filters and actions. 1. Action: mailusers_before_wp_mail - called before wp_mail is called. 1. Action: mailusers_after_wp_mail - called after wp_mail is called. 1. Filter: mailusers_manipulate_headers - called before wp_mail is called.
Comment

Found in description paragraph.

You have to log in to edit this translation.

New in v4.5.0 is an action, <em>mailusers_update_custom_meta_filters</em>, which can be used to dynamically update Meta Filters before they're used for recipient selection or email address retrieval. The example below leverages the Meta Key <em>Department</em> and its various values to define and update a new Meta Key called <em>publicworks</em>. Anytime a Group Email is sent or Post/Page notification is initiated, this action will fire and rebuild the <em>publicworks</em> meta key based on the values of the <em>department</em> meta key. This sort of action could be used to create more complex meta value relationships or to integrate other plugins. You have to log in to add a translation. Details
New in v4.5.0 is an action, <em>mailusers_update_custom_meta_filters</em>, which can be used to dynamically update Meta Filters before they're used for recipient selection or email address retrieval. The example below leverages the Meta Key <em>Department</em> and its various values to define and update a new Meta Key called <em>publicworks</em>. Anytime a Group Email is sent or Post/Page notification is initiated, this action will fire and rebuild the <em>publicworks</em> meta key based on the values of the <em>department</em> meta key. This sort of action could be used to create more complex meta value relationships or to integrate other plugins.
Comment

Found in description paragraph.

You have to log in to edit this translation.

In addition to defining specific Meta Key and Value pairs, Email Users also supports a filter to generate the Meta Group filters based on a Meta Key. The Meta Key filter supports two optional arguments - a Meta Value and a function callback to generate the label. Neither is required. When the label callback is used, it receives two arguments, both strings, the Meta Key and Meta Value. It must return a string. You have to log in to add a translation. Details
In addition to defining specific Meta Key and Value pairs, Email Users also supports a filter to generate the Meta Group filters based on a Meta Key. The Meta Key filter supports two optional arguments - a Meta Value and a function callback to generate the label. Neither is required. When the label callback is used, it receives two arguments, both strings, the Meta Key and Meta Value. It must return a string.
Comment

Found in description paragraph.

You have to log in to edit this translation.

In addition to filtering on User Meta data to build a custom list of users, you can now define custom groups based on User Meta data. You have to log in to add a translation. Details
In addition to filtering on User Meta data to build a custom list of users, you can now define custom groups based on User Meta data.
Comment

Found in description paragraph.

You have to log in to edit this translation.

This example will filter the user list to only those users where the first name is Alex. You have to log in to add a translation. Details
This example will filter the user list to only those users where the first name is Alex.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Email Users provides the ability to send email to a very specific set of users using a custom meta filter. To create a special mail list, you will need to add something similar to the following to your theme's functions.php file or create a separate plugin file. You have to log in to add a translation. Details
Email Users provides the ability to send email to a very specific set of users using a custom meta filter. To create a special mail list, you will need to add something similar to the following to your theme's functions.php file or create a separate plugin file.
Comment

Found in description paragraph.

You have to log in to edit this translation.

This example shows how the mailusers_manipulate_headers filter can be used to change the headers to be compatible with <a href="https://wordpress.org/plugins/wpmandrill/">wpMandrill</a>. This code could/would be placed in your <a href="http://codex.wordpress.org/Functions_File_Explained">functions.php</a> file. You have to log in to add a translation. Details
This example shows how the mailusers_manipulate_headers filter can be used to change the headers to be compatible with <a href="https://wordpress.org/plugins/wpmandrill/">wpMandrill</a>. This code could/would be placed in your <a href="http://codex.wordpress.org/Functions_File_Explained">functions.php</a> file.
Comment

Found in description paragraph.

You have to log in to edit this translation.

This plugin is available under the GPL license, which means that it's free. If you use it for a commercial web site, if you appreciate my efforts or if you want to encourage me to develop and maintain it, please consider making a donation using Paypal, a secured payment solution. You just need to click the donate button on the the <a href="http://michaelwalsh.org/wordpress/wordpress-plugins/email-users/">plugin overview page</a> and follow the instructions. You have to log in to add a translation. Details
This plugin is available under the GPL license, which means that it's free. If you use it for a commercial web site, if you appreciate my efforts or if you want to encourage me to develop and maintain it, please consider making a donation using Paypal, a secured payment solution. You just need to click the donate button on the the <a href="http://michaelwalsh.org/wordpress/wordpress-plugins/email-users/">plugin overview page</a> and follow the instructions.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Email Users has language translation support for a number of languages. New languages and updates to existing languages are always welcome. Thank you to the people who have provided these translations. You have to log in to add a translation. Details
Email Users has language translation support for a number of languages. New languages and updates to existing languages are always welcome. Thank you to the people who have provided these translations.
Comment

Found in description paragraph.

You have to log in to edit this translation.

All the instructions for installation, the support forums, a FAQ, etc. can be found on the <a href="http://wordpress.org/extend/plugins/email-users/">plugin home page</a> or on the <a href="http://michaelwalsh.org/wordpress/wordpress-plugins/email-users/">plugin overview page</a>. You have to log in to add a translation. Details
All the instructions for installation, the support forums, a FAQ, etc. can be found on the <a href="http://wordpress.org/extend/plugins/email-users/">plugin home page</a> or on the <a href="http://michaelwalsh.org/wordpress/wordpress-plugins/email-users/">plugin overview page</a>.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3 17

Export as