Zend certified PHP/Magento developer

Magento2: Issue with translate

I add to list.pthml:

  <tr>
    <th style="width:10%"><?php /* @escapeNotVerified */ echo __('SKU') ?></th> 
    <th style="width:10%"><?php /* @escapeNotVerified */ echo __('Image') ?></th>
    <th style="width:10%"><?php /* @escapeNotVerified */ echo __('EAN') ?></th>
    <th style="width:10%"><?php /* @escapeNotVerified */ echo __('Brand') ?></th>
    <th style="width:20%"><?php /* @escapeNotVerified */ echo __('Product name') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('Size') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('Leadtime') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('MSRP') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('Price') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('Units') ?></th>
    <th style="width:5%"><?php /* @escapeNotVerified */ echo __('To Add') ?></th>
    <th style="width:10%"><?php /* @escapeNotVerified */ echo __('Actions') ?></th>
  </tr>

Now i try to translate to PL:

I use translate file from Mageplaza:
I add below code to vendor/mageplaza/pl_PL.csv

"BRAND","Marka"
"Product name","Nazwa produktu"
"Size","Rozmiar"
"Leadtime","Czas dostawy"
"Price","Cena"
"Units","Ilość"
"To Add","Do dodania"
"Actions","Akcje"

Now I ran deploy pl_PL but no result in frontned.

Also I create i18n in my custom template:
app/desing/i18n/pl_PL.csv

Still no result. Any solution?