2019-01-22 10:47:26 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-01-22 10:47:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a custom translation string
|
2020-09-06 11:38:10 +02:00
|
|
|
* falls back on defaults if no string exists.
|
2019-01-22 10:47:26 +01:00
|
|
|
*
|
|
|
|
* //Cache::forever($custom_company_translated_string, 'mogly');
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param string translation string key
|
|
|
|
* @param array $replace
|
|
|
|
* @param null $locale
|
2019-01-22 10:47:26 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2019-12-10 21:25:54 +01:00
|
|
|
function ctrans(string $string, $replace = [], $locale = null) : string
|
2019-01-22 10:47:26 +01:00
|
|
|
{
|
2019-12-10 21:25:54 +01:00
|
|
|
return trans($string, $replace, $locale);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|