add_filter( 'register_post_type_args', 'filter_function_name_8795', 10, 2 );
function filter_function_name_8795( $args, $post_type ){
$locale_position = get_locale();
if ( 'post' == $post_type && $locale_position == 'en_US' ) {
$args['labels'] = [
'name' => 'Articles',
];
} elseif ( 'post' == $post_type && $locale_position == 'ru_RU' ) {
$args['labels'] = [
'name' => 'Статьи',
];
}
return $args;
}