/
var
/
www
/
leolaart.com
/
www
/
wp-content
/
plugins
/
polylang
/
include
/
/var/www/leolaart.com/www/wp-content/plugins/polylang/include
mkdir
upload
Name
Size
Mode
Actions
api.php
17763
0666
edit
dl
rm
base.php
5932
0666
edit
dl
rm
cache.php
2503
0666
edit
dl
rm
class-polylang.php
8759
0666
edit
dl
rm
cookie.php
3433
0666
edit
dl
rm
crud-posts.php
15511
0666
edit
dl
rm
crud-terms.php
10105
0666
edit
dl
rm
db-tools.php
1038
0666
edit
dl
rm
filter-rest-routes.php
4988
0666
edit
dl
rm
filters-links.php
5686
0666
edit
dl
rm
filters-sanitization.php
3311
0666
edit
dl
rm
filters-widgets-options.php
2634
0666
edit
dl
rm
filters.php
15752
0666
edit
dl
rm
functions.php
7173
0666
edit
dl
rm
language-deprecated.php
7355
0666
edit
dl
rm
language-factory.php
9535
0666
edit
dl
rm
language.php
18470
0666
edit
dl
rm
license.php
9415
0666
edit
dl
rm
links-abstract-domain.php
3240
0666
edit
dl
rm
links-default.php
3100
0666
edit
dl
rm
links-directory.php
9721
0666
edit
dl
rm
links-domain.php
3136
0666
edit
dl
rm
links-model.php
6639
0666
edit
dl
rm
links-permalinks.php
5753
0666
edit
dl
rm
links-subdomain.php
2216
0666
edit
dl
rm
links.php
1331
0666
edit
dl
rm
mo.php
2020
0666
edit
dl
rm
model.php
34651
0666
edit
dl
rm
nav-menu.php
4533
0666
edit
dl
rm
olt-manager.php
8567
0666
edit
dl
rm
query.php
6544
0666
edit
dl
rm
rest-request.php
3194
0666
edit
dl
rm
static-pages.php
6415
0666
edit
dl
rm
switcher.php
11151
0666
edit
dl
rm
translatable-object-with-types-interface.php
1127
0666
edit
dl
rm
translatable-object-with-types-trait.php
1936
0666
edit
dl
rm
translatable-object.php
13593
0666
edit
dl
rm
translatable-objects.php
3569
0666
edit
dl
rm
translate-option.php
12759
0666
edit
dl
rm
translated-object.php
16786
0666
edit
dl
rm
translated-post.php
11964
0666
edit
dl
rm
translated-term.php
10008
0666
edit
dl
rm
walker-dropdown.php
3538
0666
edit
dl
rm
walker-list.php
2308
0666
edit
dl
rm
walker.php
2336
0666
edit
dl
rm
widget-calendar.php
9667
0666
edit
dl
rm
widget-languages.php
4678
0666
edit
dl
rm
Edit:
/var/www/leolaart.com/www/wp-content/plugins/polylang/include/mo.php
(2020B)
<?php /** * @package Polylang */ /** * Manages strings translations storage * * @since 1.2 * @since 2.1 Stores the strings in a post meta instead of post content to avoid unserialize issues (See #63) * @since 3.4 Stores the strings into language taxonomy term meta instead of a post meta. */ class PLL_MO extends MO { /** * Writes the strings into a term meta. * * @since 1.2 * * @param PLL_Language $lang The language in which we want to export strings. * @return void */ public function export_to_db( $lang ) { /* * It would be convenient to store the whole object, but it would take a huge space in DB. * So let's keep only the strings in an array. * The strings are slashed to avoid breaking slashed strings in update_term_meta. * @see https://codex.wordpress.org/Function_Reference/update_post_meta#Character_Escaping. */ $strings = array(); foreach ( $this->entries as $entry ) { if ( '' !== $entry->singular ) { $strings[] = wp_slash( array( $entry->singular, $this->translate( $entry->singular ) ) ); } } update_term_meta( $lang->term_id, '_pll_strings_translations', $strings ); } /** * Reads a PLL_MO object from the term meta. * * @since 1.2 * @since 3.4 Reads a PLL_MO from the term meta. * * @param PLL_Language $lang The language in which we want to get strings. * @return void */ public function import_from_db( $lang ) { $this->set_header( 'Language', $lang->slug ); $strings = get_term_meta( $lang->term_id, '_pll_strings_translations', true ); if ( empty( $strings ) || ! is_array( $strings ) ) { return; } foreach ( $strings as $msg ) { $entry = $this->make_entry( $msg[0], $msg[1] ); if ( '' !== $entry->singular ) { $this->add_entry( $entry ); } } } /** * Deletes a string * * @since 2.9 * * @param string $string The source string to remove from the translations. * @return void */ public function delete_entry( $string ) { unset( $this->entries[ $string ] ); } }
Save
cmd:
run