translate array
Hello!
PhpStorm has a plugin which supports translation!
I have an array. In this array are the German terms
This array should treat translated.
An Example:
The array of German terms:
PhpStorm has a plugin which supports translation!
I have an array. In this array are the German terms
This array should treat translated.
An Example:
The array of German terms:
$de = array(
'buch' => 'buch',
'katze' => 'katze'
);
and here the array with the English terms:
$en = array(
'buch' => 'book',
'katze' => 'cat'
);
Your sincerly
Stephan
Please sign in to leave a comment.