mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
20 lines
432 B
PHP
20 lines
432 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Cache;
|
||
|
|
||
|
/**
|
||
|
* Returns a custom translation string
|
||
|
* falls back on defaults if no string exists
|
||
|
*
|
||
|
* //Cache::forever($custom_company_translated_string, 'mogly');
|
||
|
*
|
||
|
* @param string translation string key
|
||
|
* @return string
|
||
|
*/
|
||
|
function ctrans(string $string) : string
|
||
|
{
|
||
|
//todo pass through the cached version of the custom strings here else return trans();
|
||
|
|
||
|
return trans($string);
|
||
|
|
||
|
}
|