invoiceninja/app/Helpers/TranslationHelper.php

27 lines
674 B
PHP
Raw Permalink Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
/**
* Returns a custom translation string
* falls back on defaults if no string exists.
*
* //Cache::forever($custom_company_translated_string, 'mogly');
*
2020-10-28 21:10:49 +11: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);
}