fix missing trans strings (#8128)
This commit is contained in:
parent
7fbc1fba72
commit
df8269df2a
|
|
@ -310,11 +310,11 @@ export default function Stock() {
|
|||
icon={<InvenTreeIcon icon="stock" />}
|
||||
actions={[
|
||||
{
|
||||
name: 'Count Stock',
|
||||
name: t`Count Stock`,
|
||||
icon: (
|
||||
<InvenTreeIcon icon="stocktake" iconProps={{ color: 'blue' }} />
|
||||
),
|
||||
tooltip: 'Count Stock',
|
||||
tooltip: t`Count Stock`,
|
||||
onClick: () => countStockItems.open()
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -464,11 +464,11 @@ export function StockItemTable({
|
|||
}
|
||||
},
|
||||
{
|
||||
name: 'Count Stock',
|
||||
name: t`Count Stock`,
|
||||
icon: (
|
||||
<InvenTreeIcon icon="stocktake" iconProps={{ color: 'blue' }} />
|
||||
),
|
||||
tooltip: 'Count Stock',
|
||||
tooltip: t`Count Stock`,
|
||||
disabled: !can_add_stocktake,
|
||||
onClick: () => {
|
||||
countStock.open();
|
||||
|
|
|
|||
Loading…
Reference in New Issue