2009-02-17 06:03:29 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Contains Translation_Entry class
|
|
|
|
*
|
2015-11-20 05:34:25 +01:00
|
|
|
* @version $Id: entry.php 1157 2015-11-20 04:30:11Z dd32 $
|
2009-02-17 06:03:29 +01:00
|
|
|
* @package pomo
|
|
|
|
* @subpackage entry
|
|
|
|
*/
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'Translation_Entry', false ) ) :
|
2009-02-17 06:03:29 +01:00
|
|
|
/**
|
2022-04-14 11:18:08 +02:00
|
|
|
* Translation_Entry class encapsulates a translatable string.
|
2009-02-17 06:03:29 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
class Translation_Entry {
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
2022-04-14 11:18:08 +02:00
|
|
|
* Whether the entry contains a string and its plural form, default is false.
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
2021-12-01 13:17:00 +01:00
|
|
|
* @var bool
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
2020-10-17 18:26:09 +02:00
|
|
|
public $is_plural = false;
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2020-10-17 18:26:09 +02:00
|
|
|
public $context = null;
|
|
|
|
public $singular = null;
|
|
|
|
public $plural = null;
|
|
|
|
public $translations = array();
|
|
|
|
public $translator_comments = '';
|
|
|
|
public $extracted_comments = '';
|
|
|
|
public $references = array();
|
|
|
|
public $flags = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
|
|
|
|
/**
|
2021-12-07 13:20:02 +01:00
|
|
|
* @param array $args {
|
|
|
|
* Arguments array, supports the following keys:
|
|
|
|
*
|
|
|
|
* @type string $singular The string to translate, if omitted an
|
|
|
|
* empty entry will be created.
|
|
|
|
* @type string $plural The plural form of the string, setting
|
2022-04-14 11:18:08 +02:00
|
|
|
* this will set `$is_plural` to true.
|
2021-12-07 13:20:02 +01:00
|
|
|
* @type array $translations Translations of the string and possibly
|
|
|
|
* its plural forms.
|
|
|
|
* @type string $context A string differentiating two equal strings
|
|
|
|
* used in different contexts.
|
|
|
|
* @type string $translator_comments Comments left by translators.
|
|
|
|
* @type string $extracted_comments Comments left by developers.
|
|
|
|
* @type array $references Places in the code this string is used, in
|
|
|
|
* relative_to_root_path/file.php:linenum form.
|
|
|
|
* @type array $flags Flags like php-format.
|
|
|
|
* }
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
2021-10-18 19:52:58 +02:00
|
|
|
public function __construct( $args = array() ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// If no singular -- empty object.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! isset( $args['singular'] ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-29 01:45:18 +01:00
|
|
|
// Get member variable values from args hash.
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $args as $varname => $value ) {
|
|
|
|
$this->$varname = $value;
|
|
|
|
}
|
|
|
|
if ( isset( $args['plural'] ) && $args['plural'] ) {
|
|
|
|
$this->is_plural = true;
|
|
|
|
}
|
|
|
|
if ( ! is_array( $this->translations ) ) {
|
|
|
|
$this->translations = array();
|
|
|
|
}
|
|
|
|
if ( ! is_array( $this->references ) ) {
|
|
|
|
$this->references = array();
|
|
|
|
}
|
|
|
|
if ( ! is_array( $this->flags ) ) {
|
|
|
|
$this->flags = array();
|
|
|
|
}
|
2009-02-17 06:03:29 +01:00
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see Translation_Entry::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
public function Translation_Entry( $args = array() ) {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct( $args );
|
2009-02-17 06:03:29 +01:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
2022-04-28 18:53:09 +02:00
|
|
|
* Generates a unique key for this entry.
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
2022-04-28 18:53:09 +02:00
|
|
|
* @return string|false The key or false if the entry is empty.
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
2021-10-18 19:52:58 +02:00
|
|
|
public function key() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( null === $this->singular || '' === $this->singular ) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Prepend context and EOT, like in MO files.
|
2018-09-12 08:11:26 +02:00
|
|
|
$key = ! $this->context ? $this->singular : $this->context . "\4" . $this->singular;
|
2020-01-29 01:45:18 +01:00
|
|
|
// Standardize on \n line endings.
|
2017-12-01 00:11:00 +01:00
|
|
|
$key = str_replace( array( "\r\n", "\r" ), "\n", $key );
|
2015-11-18 21:37:25 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return $key;
|
|
|
|
}
|
2015-11-18 21:37:25 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param object $other
|
|
|
|
*/
|
2021-10-18 19:52:58 +02:00
|
|
|
public function merge_with( &$other ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->flags = array_unique( array_merge( $this->flags, $other->flags ) );
|
|
|
|
$this->references = array_unique( array_merge( $this->references, $other->references ) );
|
|
|
|
if ( $this->extracted_comments != $other->extracted_comments ) {
|
|
|
|
$this->extracted_comments .= $other->extracted_comments;
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2011-08-11 06:29:35 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
endif;
|