Sto utilizzando gettext() per tradurre alcuni dei miei testi nel mio sito web. Per lo più si tratta di testi brevi/pulsanti come "Indietro", "Nome", ...Gettext() con testi più grandi
// I18N support information here
$language = "en_US";
putenv("LANG=$language");
setlocale(LC_ALL, $language);
// Set the text domain as 'messages'
$domain = 'messages';
bindtextdomain($domain, "/opt/www/abc/web/www/lcl");
textdomain($domain);
echo gettext("Back");
La mia domanda è, come 'tempo' in grado di questo testo (id) sia nella parte dell'eco gettext ("") ?
Sta rallentando il processo per i testi lunghi? O funziona anche bene? Ti piace questa ad esempio:
echo _("LZ adfadffs is a VVV contributor who writes a weekly column for Cv00m. The former Hechinger Institute Fellow has had his commentary recognized by the Online News Association, the National Association of Black Journalists and the National ");
Ok, quindi un paragrafo o 10 linee è già piuttosto lunga (nel mio caso). Mi chiedevo "stringhe più lunghe" come 40-50 parole contro stringhe corte, come 5-10 parole. Quindi, se ho capito bene, 50 parole non dovrebbero essere un grosso problema. –