Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/inc/smart-site/i18n.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

34 lines
1.7 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-dashboard
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden
}
return array(
'Thrive_Dashboard' => __( 'Thrive Dashboard', 'thrive-dash' ),
'SmartSite' => __( 'Smart Site', 'thrive-dash' ),
'InvalidName' => __( 'The name should not be empty', 'thrive-dash' ),
'InvalidInput' => __( 'This field should not be empty', 'thrive-dash' ),
'InvalidText' => __( 'The text value should not be empty', 'thrive-dash' ),
'InvalidAddress' => __( 'The address should not be empty', 'thrive-dash' ),
'InvalidCity' => __( 'The city should not be empty', 'thrive-dash' ),
'InvalidCountry' => __( 'The country should not be empty', 'thrive-dash' ),
'InvalidZip' => __( 'The zip should not be empty', 'thrive-dash' ),
'InvalidPhone' => __( 'The phone should not be empty', 'thrive-dash' ),
'NoEmail' => __( 'The email address should not be empty', 'thrive-dash' ),
'InvalidEmail' => __( 'The email address is not valid', 'thrive-dash' ),
'InvalidURL' => __( 'The URL is not valid', 'thrive-dash' ),
'NoURL' => __( 'The URL should not be empty', 'thrive-dash' ),
'GroupSaved' => __( 'The group was saved successfully', 'thrive-dash' ),
'FieldSaved' => __( 'The field was saved successfully', 'thrive-dash' ),
'FieldsSaved' => __( 'The fields were saved successfully', 'thrive-dash' ),
'ItemDeleted' => __( 'was deleted successfully', 'thrive-dash' ),
'InvalidLocation' => __( 'The location value should not be empty', 'thrive-dash' ),
'NoFields' => __( 'No fields in this group. Click the Add Field button to add a new field', 'thrive-dash' ),
);