Translating Pods Framework into Dutch

Last monday I`ve started the Dutch / Nederlands (ISO: nl-NL) translation of the Pods Framework for WordPress. You can find the official translation at translate.wordpress.org/projects/wp-plugins/pods/stable/nl/default
Initially there was 0-5% translated and after a good day of work Ive managed to get it to 25%. I aim to have it translated to 75% before 1 January 2016.

For those who also would like to participate in the translation sprint, go ahead! There are tens of languages available and almost all could use some help!

Quick fix for WordPress SSL Verify error

When your WordPress installation has problems with updating and retrieving files over SSL, because of outdated certificates, you can bypass this.
It`s actually a workaround, not a fix!

Just place the following code in your theme or plugin

// SSL fix
add_filter( 'https_ssl_verify', '__return_false' );
add_filter( 'https_local_ssl_verify', '__return_false' );