verbb / smith

A Craft CMS plugin to add copy, paste and clone functionality to Matrix blocks.
MIT License
25 stars 9 forks source link

Plugin can't be translated #16

Closed dgsiegel closed 3 years ago

dgsiegel commented 3 years ago

Description

Even though static message translations are given, the plugin still shows the default strings "Copy", "Clone" and "Paste". I can't find those strings in JSON translations strings in the CP either.

Steps to reproduce

  1. Add static translations to either translations/de/app.php or translations/de/smith.php:
<?php

return [
  "Clone" => "Duplizieren",
  "Copy" => "Kopieren",
  "Paste" => "Einfügen",
];
  1. Still find the old strings in the CP

Additional info

engram-design commented 3 years ago

Fixed in 1.1.13. Please supply translations in your app.php file.

dgsiegel commented 3 years ago

Thanks for the quick fix!