Mehmet Aydemir

Results 2 comments of Mehmet Aydemir

ok. ``` javascript '__noopTest' : function() { i18n.setLocale('de'); assert.equal(__('Hello'), 'Hello'); assert.equal(__('Hello %s, how are you today?', 'Marcus'), 'Hello Marcus, how are you today?'); assert.equal(__('Hello %s, how are you today? How...

But i fixed my problem via another way. Like that : ``` javascript global.__noop = function() { var sourceString = arguments[0]; __(sourceString); return sourceString; } ``` thanks.