mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
Lots of new code for the import routine part 2
This commit is contained in:
@@ -56,7 +56,7 @@ class AssetAccountIbans implements MapperInterface
|
||||
asort($list);
|
||||
|
||||
$list = $topList + $list;
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -53,7 +53,7 @@ class AssetAccounts implements MapperInterface
|
||||
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -46,7 +46,7 @@ class Bills implements MapperInterface
|
||||
}
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -46,7 +46,7 @@ class Budgets implements MapperInterface
|
||||
}
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -46,7 +46,7 @@ class Categories implements MapperInterface
|
||||
}
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -62,7 +62,7 @@ class OpposingAccountIbans implements MapperInterface
|
||||
asort($list);
|
||||
|
||||
$list = $topList + $list;
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -59,7 +59,7 @@ class OpposingAccounts implements MapperInterface
|
||||
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -46,7 +46,7 @@ class Tags implements MapperInterface
|
||||
}
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
@@ -42,7 +42,7 @@ class TransactionCurrencies implements MapperInterface
|
||||
|
||||
asort($list);
|
||||
|
||||
$list = [0 => trans('csv.map_do_not_map')] + $list;
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
Reference in New Issue
Block a user