[solved] I18N how to make blank translation

Hey,

I have one question here:)

If webapp uses Yii::t(‘webapp’,‘message’), how do I set webapp.php file to use blank translation?

e.g.

return array (

'message' => '_blank_',

);

Thanks

CoLT

The message translations go into application/messages/XX/file.php. (XX = two letter language code)

For example in:

application/messages/nl/webapp.php

return array(

message => ‘blank

);

I hope this helps.

Hm, I would like to add blank space e.g. ‘message’ => ‘’

Because now it uses ‘message’ instead of ‘’

CoLT


'message' => false

seems to work

/Tommy

Yep, that worked correctly! Problem solved. :)

Thanks

CoLT