mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-11-04 03:31:02 -03:00 
			
		
		
		
	Now the main page, item page and e-mails are translated into Brazilian Portuguese
		
			
				
	
	
		
			18 lines
		
	
	
		
			527 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			527 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@component('mail::message')
 | 
						|
{!! __('Hi, :username,', ['username' => $username]) !!}
 | 
						|
 | 
						|
 | 
						|
#{!! __('Good news: :itemname is available!', ['itemname' => $item->name]) !!}
 | 
						|
 | 
						|
 | 
						|
{!! __('The item <em>:itemname (:productname)</em> is now available on **Share It**.', ['itemname' => $item->name, 'productname' => $item->product->name]) !!}
 | 
						|
 | 
						|
 | 
						|
{!! __('**Take It** before anyone else at the website:') !!}
 | 
						|
 | 
						|
 | 
						|
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
 | 
						|
{{ config('app.name') }}
 | 
						|
@endcomponent
 | 
						|
 | 
						|
@endcomponent |