translate_with_context [ WordPress Function ]
translate_with_context ( $text, $domain = 'default' )
| Parameters: |
|
| Uses: | |
| See: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: translate_with_gettext_context, translate_smiley, _wp_translate_postdata, get_the_content, register_widget_control
Translates $text like translate(), but assumes that the text contains a context after its last vertical bar.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- #11388 (Deprecated functions: Formally deprecate and/or move to ...
All other functions double-checked. 11388.4.diff · Download (37.9 KB) - added by nacin 2 years ago. Deprecates translate_with_context() in favor of _x().
core.trac.wordpress.org - WordPress › Support » Upgrade to 2.9 failed and crashed my site
function _c( $text, $domain = 'default' ) { _deprecated_function(__FUNCTION__, ' 2.9', '_x' ); return translate_with_context( $text, $domain ); } ?> pawoodster ...
wordpress.org - display info of user with certain role or level ini WP 2.7 - WordPress
//list each role and each user with that role global $wp_roles; foreach( $wp_roles- >role_names as $role => $name ) { $name = translate_with_context($name); ...
wordpress.org - graysky/translator · GitHub
Dec 10, 2009 ... Updated the ActionView::Base translate_with_context method to work in… … … cases where the view doesn't have a template (i.e. Ajax ...
github.com