Ben bir değişken belirleme ve daha sonra bunu bir tercüme dize sonucunu veren ile sorun yaşıyorum. Ben yanlış ne yapıyorum?
# usage: this translates some text into different language.
echo __('some text');
# make a variable and fill it with the outcome of the translated text
$title="echo __('translated content text')";
The first line outputs nicely.
The second line output literaly echo __('translated concent text')
.
Update
Tüm teşekkürler. harika cevaplar. I bulundum ne kadar aptal Tanrım, bu nedenle şimdi biraz bilge duyuyorum :)
$title = __('Colourful train rides'); # works
now experimenting with these endings
ob_end_flush();
ob_end_clean();