| 
<?php
 declare(strict_types=1);
 
 /**************************************************************************************
 *
 * Catalyst PHP Framework
 * PHP Version 8.3 (Required).
 *
 * @package   Catalyst
 * @subpackage Public
 * @see       https://github.com/arcanisgk/catalyst
 *
 * @author    Walter Nuñez (arcanisgk/original founder) <[email protected]>
 * @copyright 2023 - 2025
 * @license   http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 *
 * @note      This program is distributed in the hope that it will be useful
 *            WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 *            or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * @category  Framework
 * @filesource
 *
 * @link      https://catalyst.dock Local development URL
 *
 */
 
 // Generated: 2025-03-24 12:47:13
 // Language: en
 // Group: common
 
 return array(
 'messages.welcome' => 'Welcome to Catalyst Framework',
 'messages.success' => 'Operation completed successfully',
 'messages.error' => 'An error occurred',
 'messages.not_found' => 'The requested resource was not found',
 'messages.loading' => 'Loading...',
 'messages.search' => 'Search for something...',
 'messages.notification_count' => 'You have :count messages',
 'navigation.home' => 'Home',
 'navigation.about' => 'About',
 'navigation.contact' => 'Contact',
 'navigation.login' => 'Login',
 'navigation.register' => 'Register',
 'navigation.logout' => 'Logout',
 'navigation.dashboard' => 'Dashboard',
 'navigation.profile' => 'Profile',
 'navigation.settings' => 'Settings',
 'navigation.messages' => 'Mailbox',
 'buttons.submit' => 'Submit',
 'buttons.cancel' => 'Cancel',
 'buttons.save' => 'Save',
 'buttons.edit' => 'Edit',
 'buttons.delete' => 'Delete',
 'buttons.back' => 'Back',
 'buttons.next' => 'Next',
 'buttons.previous' => 'Previous',
 'buttons.see_all' => 'See All Alerts',
 'dates.today' => 'Today',
 'dates.yesterday' => 'Yesterday',
 'dates.tomorrow' => 'Tomorrow',
 'dates.days_ago.one' => ':count day ago',
 'dates.days_ago.many' => ':count days ago',
 'dates.minutes_ago.one' => ':count minute ago',
 'dates.minutes_ago.many' => ':count minutes ago',
 'app.name' => 'Catalyst Framework',
 'app.version' => '1.0.0',
 'app.tagline' => 'A modern PHP framework for rapid application development',
 'app.company' => 'Your Company',
 'footer.copyright' => 'Copyright © :year for Icaros Net',
 'footer.rights' => 'All rights reserved',
 'footer.privacy' => 'Privacy Policy',
 'footer.terms' => 'Terms of Service',
 'footer.powered_by' => 'Powered by',
 );
 
 |