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:
 
$de = array(
   'buch' => 'buch',
   'katze' => 'katze'
);
 
and here the array with the English terms:

 
$en = array(
   'buch' => 'book',
   'katze' => 'cat'
);
   
Your sincerly
   
Stephan
  
0

Please sign in to leave a comment.