PluginProbe
Polylang / 2.7.3
Polylang v2.7.3
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
← All changes | admin/admin-strings.php +16 -3 2.9.22.7.3 View file →
@@ -1,8 +1,5 @@
1 1 <?php
2 -/**
3 - * @package Polylang
4 - */
5 2
6 3 /**
7 4 * A fully static class to manage strings translations on admin side
8 5 *
@@ -52,12 +49,23 @@
52 49 * @return array list of all registered strings
53 50 */
54 51 public static function &get_strings() {
55 52 self::$default_strings = array(
53 + 'options' => array(
54 + 'blogname' => __( 'Site Title', 'polylang' ),
55 + 'blogdescription' => __( 'Tagline', 'polylang' ),
56 + 'date_format' => __( 'Date Format', 'polylang' ),
57 + 'time_format' => __( 'Time Format', 'polylang' ),
58 + ),
56 59 'widget_title' => __( 'Widget title', 'polylang' ),
57 60 'widget_text' => __( 'Widget text', 'polylang' ),
58 61 );
59 62
63 + // WP strings
64 + foreach ( self::$default_strings['options'] as $option => $string ) {
65 + self::register_string( $string, get_option( $option ), 'WordPress' );
66 + }
67 +
60 68 // Widgets titles
61 69 global $wp_registered_widgets;
62 70 $sidebars = wp_get_sidebars_widgets();
63 71 foreach ( $sidebars as $sidebar => $widgets ) {
@@ -109,8 +117,13 @@
109 117 * @param string $name unique name for the string
110 118 * @return string
111 119 */
112 120 public static function sanitize_string_translation( $translation, $name ) {
121 +
122 + if ( false !== ( $option = array_search( $name, self::$default_strings['options'], true ) ) ) {
123 + $translation = sanitize_option( $option, $translation );
124 + }
125 +
113 126 if ( $name == self::$default_strings['widget_title'] ) {
114 127 $translation = sanitize_text_field( $translation );
115 128 }
116 129