35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Heading
 | 
						|
$_['heading_title']     = 'Lataukset';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_success']      = 'Success: You have modified downloads!';
 | 
						|
$_['text_list']         = 'Latauslista';
 | 
						|
$_['text_add']          = 'Lisää lataus';
 | 
						|
$_['text_edit']         = 'Muokkaa latausta';
 | 
						|
$_['text_upload']       = 'Your file was successfully uploaded!';
 | 
						|
 | 
						|
// Column
 | 
						|
$_['column_name']       = 'Latauksen nimi';
 | 
						|
$_['column_date_added'] = 'Lisäyspäivä';
 | 
						|
$_['column_action']     = 'Toiminto';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_name']        = 'Latauksen nimi';
 | 
						|
$_['entry_filename']    = 'Tiedoston nimi';
 | 
						|
$_['entry_mask']        = 'Mask';
 | 
						|
 | 
						|
// Help
 | 
						|
$_['help_filename']     = 'You can upload via the upload button or use FTP to upload to the download directory and enter the details below.';
 | 
						|
$_['help_mask']         = 'It is recommended that the filename and the mask are different to stop people trying to directly link to your downloads.';
 | 
						|
 | 
						|
// Error
 | 
						|
$_['error_permission']  = 'Varoitus: You do not have permission to modify downloads!';
 | 
						|
$_['error_name']        = 'Download Name must be between 3 and 64 characters!';
 | 
						|
$_['error_upload']      = 'Upload required!';
 | 
						|
$_['error_filename']    = 'Filename must be between 3 and 128 characters!';
 | 
						|
$_['error_exists']      = 'File does not exist!';
 | 
						|
$_['error_mask']        = 'Mask must be between 3 and 128 characters!';
 | 
						|
$_['error_filetype']    = 'Invalid file type!';
 | 
						|
$_['error_product']     = 'Varoitus: This download cannot be deleted as it is currently assigned to %s products!';
 |