If you want to do this with the Polylang string translation feature, that's a bit different. The doc is here.
use
pll_e('Price');
instead of
_e('Price','my-text-domain')
to do the translation on frontend
And to put the strings in the translation table on admin, write that somewhere in your functions.php:
pll_register_string('just a name for my string', 'Price');
However, that code breaks wehn Polylang is de-activated (so for example during the upgrade). So it is better to write:
if (function_exists('pll_register_string')) {
pll_register_string('just a name for my string', 'Price');
}
and
if (function_exists('pll_e')) {
pll_e('Price');
else {
echo 'Price';
}