| @@ -141,9 +141,9 @@ | ||
| 141 | 141 | 'default_route' => $default_route, |
| 142 | 142 | 'has_elements' => static::get_property( 'has_elements' ), |
| 143 | 143 | 'support_kit' => static::get_property( 'support_kit' ), |
| 144 | 144 | 'messages' => [ |
| 145 | - /* translators: %s: the document title. */ | |
| 145 | + /* translators: %s: Document title. */ | |
| 146 | 146 | 'publish_notification' => sprintf( esc_html__( 'Hurray! Your %s is live.', 'elementor' ), static::get_title() ), |
| 147 | 147 | ], |
| 148 | 148 | ]; |
| 149 | 149 | } |
| @@ -1008,9 +1008,9 @@ | ||
| 1008 | 1008 | * @access public |
| 1009 | 1009 | */ |
| 1010 | 1010 | public function get_panel_page_settings() { |
| 1011 | 1011 | return [ |
| 1012 | - /* translators: %s: Document title */ | |
| 1012 | + /* translators: %s: Document title. */ | |
| 1013 | 1013 | 'title' => sprintf( esc_html__( '%s Settings', 'elementor' ), static::get_title() ), |
| 1014 | 1014 | ]; |
| 1015 | 1015 | } |
| 1016 | 1016 | |
| @@ -1254,12 +1254,12 @@ | ||
| 1254 | 1254 | $date = date_i18n( _x( 'M j, H:i', 'revision date format', 'elementor' ), strtotime( $post->post_modified ) ); |
| 1255 | 1255 | $display_name = get_the_author_meta( 'display_name', $post->post_author ); |
| 1256 | 1256 | |
| 1257 | 1257 | if ( $autosave_post || 'revision' === $post->post_type ) { |
| 1258 | - /* translators: 1: Saving date, 2: Author display name */ | |
| 1258 | + /* translators: 1: Saving date, 2: Author display name. */ | |
| 1259 | 1259 | $last_edited = sprintf( esc_html__( 'Draft saved on %1$s by %2$s', 'elementor' ), '<time>' . $date . '</time>', $display_name ); |
| 1260 | 1260 | } else { |
| 1261 | - /* translators: 1: Editing date, 2: Author display name */ | |
| 1261 | + /* translators: 1: Editing date, 2: Author display name. */ | |
| 1262 | 1262 | $last_edited = sprintf( esc_html__( 'Last edited on %1$s by %2$s', 'elementor' ), '<time>' . $date . '</time>', $display_name ); |
| 1263 | 1263 | } |
| 1264 | 1264 | |
| 1265 | 1265 | return $last_edited; |