Hello
allora i18n sono dei file segreti ....

scherzi a parte.
Ma non avete mai dato un occhiata ai file che compilate?
i18n.c , i18n.h etc. si possono tranquillamente visualizzare con un editor etc.
faccio un esempio in termini da newbie (in termini tecnici non lo so fare)

andate nella directory di un plugin. p.es vdrrip.
e fate un
cat i18n.c o
less i18n.c e dovreste vedere :
Codice: Seleziona tutto
// i18n.c
#include "i18n.h"
const tI18nPhrase Phrases[] = {
{ "encode vdr-recording",
"VDR-Aufzeichnung encodieren",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"Encoder un enregistrement",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
#if VDRVERSNUM>10301
"",// TODO
#endif
},
{ "edit encoding queue",
"Warteschlange bearbeiten",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"Voir les encodages en attente",
aprite il file con un editor e metteci la lingua italiana (nella quarta posizione)
cosi :
Codice: Seleziona tutto
// i18n.c
#include "i18n.h"
const tI18nPhrase Phrases[] = {
{ "encode vdr-recording",
"VDR-Aufzeichnung encodieren",
"",// TODO
"Comprimi registrazioni di vdr",
"",// TODO
"",// TODO
"Encoder un enregistrement",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
#if VDRVERSNUM>10301
"",// TODO
#endif
},
{ "edit encoding queue",
"Warteschlange bearbeiten",
"",// TODO
"Visualizza coda di compressione",
"",// TODO
"",// TODO
"Voir les encodages en attente",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
salvate e ricompilate il plugin.
ecco il plugin italianizzato
PS. 1.inglese, 2.tedesco, 3.sloveno, 4.italiano, 5.olandese, 6.portogese, 7.francese,etc.
bye