﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
15985,_c (deprecated) by _x,arena,,"_x is declaring _c as deprecated, however _x and _c are not doing the same thing

reminder :


{{{
function _c( $text, $domain = 'default' ) {
    _deprecated_function( __FUNCTION__, '2.9', '_x()' );
    return before_last_bar( translate( $text, $domain ) );
}
}}}


{{{
function _x( $single, $context, $domain = 'default' ) {
    return translate_with_gettext_context( $single, $context, $domain );
}
}}}

_x should clean up the string calling : before_last_bar()

after analysing the code, i really do not understand how the $context variable is handled as it is not present in the po/mo files

thank you for your explanations


",defect (bug),closed,normal,,I18N,3.1,normal,invalid,,
