wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_nx_noop › WordPress Function
Seit2.8.0
Veraltetn/v
› _nx_noop ( $singular, $plural, $context, $domain = null )
Parameter: (4) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Registers plural strings with gettext context in POT file, but does not translate them.
Used when you want to keep structures with translatable plural strings and use them later when the number is known. Example of a generic phrase which is disambiguated via the context parameter: $messages = array( 'people' => _nx_noop( '%s group', '%s groups', 'people', 'text-domain' ), 'animals' => _nx_noop( '%s group', '%s groups', 'animals', 'text-domain' ), ); ... $message = $messages[ $type ]; printf( translate_nooped_plural( $message, $count, 'text-domain' ), number_format_i18n( $count ) );