Hi @schuerich
1) Since the 1.0.7 version there has been added 4th attribute for getting the expired date and localizing it. See details here https://www.ads-software.com/support/topic/some-dates-are-not-localized/
2) The Loco plugin and its location is the custom 3rd-party solution for translations.
System: “languages/plugins/” folder is safe for plugins/themes update and we use it for all custom translations.
If you need to use Loco plugin translation and its custom translations folder please insert this callback to your child-theme’s functions.php file.
add_filter( 'jb_language_file', 'jb_my_custom_translations_dir' );
function jb_my_custom_translations_dir( $language_file ) {
$language_locale = ( get_locale() != '' ) ? get_locale() : 'en_US';
$language_locale = apply_filters( 'jb_language_locale', $language_locale );
$language_domain = apply_filters( 'jb_language_textdomain', 'jobboardwp' );
$language_file = WP_LANG_DIR . DIRECTORY_SEPARATOR . 'loco' . DIRECTORY_SEPARATOR . 'plugins' . DIRECTORY_SEPARATOR . $language_domain . '-' . $language_locale . '.mo';
return $language_file;
}
Let me know if that works,
Best Regards!