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

27 lines
659 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
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
/**
* Returns a custom translation string
* falls back on defaults if no string exists.
*
* //Cache::forever($custom_company_translated_string, 'mogly');
*
2023-04-26 09:41:30 +02:00
* @param string $string
2020-10-28 11:10:49 +01:00
* @param array $replace
* @param null $locale
* @return string
*/
function ctrans(string $string, $replace = [], $locale = null) : string
{
return trans($string, $replace, $locale);
}