3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00

Add Views translatables.

This commit is contained in:
Michael Stenta 2017-04-27 09:55:09 -04:00
parent 238d6f35da
commit c335616ce8

View file

@ -159,6 +159,31 @@ if (!empty($farm_asset)) {
/* Display: Page */
$handler = $view->new_display('page', 'Page', 'page');
$handler->display->display_options['path'] = 'farm/asset/%/children';
$translatables['farm_asset_children'] = array(
t('Master'),
t('Children'),
t('more'),
t('Apply'),
t('Reset'),
t('Sort by'),
t('Asc'),
t('Desc'),
t('Items per page'),
t('- All -'),
t('Offset'),
t('« first'),
t(' previous'),
t('next '),
t('last »'),
t('No children found.'),
t('Farm asset ID'),
t('.'),
t('Name'),
t('Active'),
t('All'),
t('Children of %1'),
t('Page'),
);
$export['farm_asset_children'] = $view;
return $export;