This commit is contained in:
Tony Volpe
2024-06-17 14:41:24 -04:00
parent f885e93ca8
commit a00f379f7f
11158 changed files with 0 additions and 1781316 deletions

View File

@@ -1,78 +0,0 @@
<?php
/**
* WPSEO Premium plugin file.
*
* @package WPSEO\Premium\Classes
*/
/**
* Class WPSEO_Premium_Javascript_Strings.
*/
class WPSEO_Premium_Javascript_Strings {
/**
* List containing the localized JavaScript translations.
*
* @var string[]|null
*/
private static $strings = null;
/**
* Fill the value of self::$strings with translated strings.
*/
private static function fill() {
self::$strings = [
'error_circular' => __( 'You can\'t redirect a URL to itself.', 'wordpress-seo-premium' ),
'error_old_url' => __( 'The old URL field can\'t be empty.', 'wordpress-seo-premium' ),
'error_regex' => __( 'The Regular Expression field can\'t be empty.', 'wordpress-seo-premium' ),
'error_new_url' => __( 'The new URL field can\'t be empty.', 'wordpress-seo-premium' ),
'error_saving_redirect' => __( 'Error while saving this redirect', 'wordpress-seo-premium' ),
'error_new_type' => __( 'New type can\'t be empty.', 'wordpress-seo-premium' ),
'unsaved_redirects' => __( 'You have unsaved redirects, are you sure you want to leave?', 'wordpress-seo-premium' ),
/* translators: %s is replaced with the URL that will be deleted. */
'enter_new_url' => __( 'Please enter the new URL for %s', 'wordpress-seo-premium' ),
/* translators: variables will be replaced with from and to URLs. */
'redirect_saved' => __( 'Redirect created from %1$s to %2$s!', 'wordpress-seo-premium' ),
/* translators: %1$s will be replaced with the from URL. */
'redirect_saved_no_target' => __( '410 Redirect created from %1$s!', 'wordpress-seo-premium' ),
'redirect_added' => [
'title' => __( 'Redirect added.', 'wordpress-seo-premium' ),
'message' => __( 'The redirect was added successfully.', 'wordpress-seo-premium' ),
],
'redirect_updated' => [
'title' => __( 'Redirect updated.', 'wordpress-seo-premium' ),
'message' => __( 'The redirect was updated successfully.', 'wordpress-seo-premium' ),
],
'redirect_deleted' => [
'title' => __( 'Redirect deleted.', 'wordpress-seo-premium' ),
'message' => __( 'The redirect was deleted successfully.', 'wordpress-seo-premium' ),
],
'button_ok' => __( 'OK', 'wordpress-seo-premium' ),
'button_cancel' => __( 'Cancel', 'wordpress-seo-premium' ),
'button_save' => __( 'Save', 'wordpress-seo-premium' ),
'button_save_anyway' => __( 'Save anyway', 'wordpress-seo-premium' ),
'edit_redirect' => __( 'Edit redirect', 'wordpress-seo-premium' ),
'editing_redirect' => __( 'You are already editing a redirect, please finish this one first', 'wordpress-seo-premium' ),
'editAction' => __( 'Edit', 'wordpress-seo-premium' ),
'deleteAction' => __( 'Delete', 'wordpress-seo-premium' ),
];
}
/**
* Returns an array with all the translated strings.
*
* @return string[]
*/
public static function strings() {
if ( self::$strings === null ) {
self::fill();
}
return self::$strings;
}
}