1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Helpers/TranslationHelper.php
David Bomba 37e4b67ab9
V5.0 (#2617)
* Add URL link directly to client view in list view

* Implement Form requests for all client routes

* Refactor how permissions are implemented on Datatable row action menus

* fixes for tests

* bug fix

* Add ctrans global function for custom translations. Reduced DB queries for Client List. Added Debugbar for dev environments

* ctrans
2019-01-22 20:47:26 +11:00

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);
}