Why load_textdomain work but not load_plugin_textdomain?

Looking at the source load_plugin_textdomain takes three arguments:

load_plugin_textdomain( $domain, $abs_rel_path = false, $plugin_rel_path = false )

It seems you are passing the absolute path to your language domain, as a relative path. Try:

load_plugin_textdomain( 'myplugin', ABS_PATH_TO_LANGS_DIR);