1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Helpers/TranslationHelper.php

27 lines
661 B
PHP
Raw Normal View History

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