You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
711 B
16 lines
711 B
<?php
|
|
|
|
// --------------------------------------------------------
|
|
// This is only a pointer file, not an actual language file
|
|
// --------------------------------------------------------
|
|
//
|
|
// If you've copied this file to your /resources/lang/vendor/backpack/
|
|
// folder, please delete it, it's no use there. You need to copy/publish the
|
|
// actual language file, from the package.
|
|
|
|
// If a langfile with the same name exists in the package, load that one
|
|
if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
|
return include __DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
|
}
|
|
|
|
return [];
|
|
|