- Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/ directory and its contents - Includes package manifest, Dockerfile, source code, documentation, and build artifacts - Add tirreno-1761840148.tar.gz as a build artifact - Add tirreno-cloudron-package-1761841304.tar.gz as the Cloudron package - Include all necessary files for the tirreno Cloudron package This adds the complete tirreno Cloudron package artifacts to the repository.
		
			
				
	
	
		
			60 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Tirreno ~ Open source user analytics
 | 
						|
 * Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
 | 
						|
 *
 | 
						|
 * Licensed under GNU Affero General Public License version 3 of the or any later version.
 | 
						|
 * For full copyright and license information, please see the LICENSE
 | 
						|
 * Redistributions of files must retain the above copyright notice.
 | 
						|
 *
 | 
						|
 * @copyright     Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
 | 
						|
 * @license       https://opensource.org/licenses/AGPL-3.0 AGPL License
 | 
						|
 * @link          https://www.tirreno.com Tirreno(tm)
 | 
						|
 */
 | 
						|
 | 
						|
return [
 | 
						|
    'AdminHome_page_title' => 'Dashboard',
 | 
						|
    'AdminHome_header_title' => 'Dashboard',
 | 
						|
    'AdminHome_breadcrumb_title' => 'Dashboard',
 | 
						|
 | 
						|
    'AdminHome_table_title' => 'Last events',
 | 
						|
    'AdminHome_table_column_timestamp' => 'Timestamp',
 | 
						|
    'AdminHome_table_column_user_id' => 'User Id',
 | 
						|
    'AdminHome_table_column_url' => 'URL',
 | 
						|
    'AdminHome_table_column_client_ip' => 'Client IP',
 | 
						|
    'AdminHome_table_column_country' => 'Country',
 | 
						|
 | 
						|
    'AdminHome_total_events' => 'Events',
 | 
						|
    'AdminHome_total_events_tooltip' => 'The number of events during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_users' => 'Users',
 | 
						|
    'AdminHome_total_users_tooltip' => 'The number of active users during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_ips' => 'IP addresses',
 | 
						|
    'AdminHome_total_ips_tooltip' => 'The number of active IP addresses during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_countries' => 'Countries',
 | 
						|
    'AdminHome_total_countries_tooltip' => 'The number of identified countries during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_urls' => 'Resources',
 | 
						|
    'AdminHome_total_urls_tooltip' => 'The number of requested resources during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_users_for_review' => 'Review',
 | 
						|
    'AdminHome_total_users_for_review_tooltip' => 'The number of users added to the review queue during a selected period of time and in total.',
 | 
						|
    'AdminHome_total_blocked_users' => 'Blacklisted',
 | 
						|
    'AdminHome_total_blocked_users_tooltip' => 'The number of blacklisted users during a selected period of time and in total.',
 | 
						|
    'AdminHome_view_all' => 'View all',
 | 
						|
 | 
						|
    'AdminHome_top10_most_active_users' => 'Activity by users',
 | 
						|
    'AdminHome_top10_most_active_users_tooltip' => 'A list of users with the highest quantity of recorded events.',
 | 
						|
    'AdminHome_top10_active_countries' => 'Activity by countries',
 | 
						|
    'AdminHome_top10_active_countries_tooltip' => 'A list of countries with the highest quantity of recorded users.',
 | 
						|
    'AdminHome_top10_active_urls' => 'Activity by resources',
 | 
						|
    'AdminHome_top10_active_urls_tooltip' => 'A list of resources with the highest quantity of recorded users.',
 | 
						|
    'AdminHome_top10_ips_with_the_most_users' => 'Shared IP addresses',
 | 
						|
    'AdminHome_top10_ips_with_the_most_users_tooltip' => 'A list of IP addresses utilized by several users.',
 | 
						|
    'AdminHome_top10_users_with_most_login_fail' => 'Account login fail',
 | 
						|
    'AdminHome_top10_users_with_most_login_fail_tooltip' => 'A list of users with the highest quantity of failed login attempts.',
 | 
						|
    'AdminHome_top10_users_with_the_most_ips' => 'Multiple IP addresses',
 | 
						|
    'AdminHome_top10_users_with_the_most_ips_tooltip' => 'A list of users with a high number of IP addresses.',
 | 
						|
 | 
						|
    'AdminHome_clock_day_tooltip' => 'The day of year (DOY) is the sequential day number starting with day 1 on January 1st.',
 | 
						|
    'AdminHome_clock_time_tooltip' => 'Current time in your application based on timezone settings.',
 | 
						|
];
 |