All translations

Enter a message name below to show all available translations.

Message

Found 3 translations.

NameCurrent message text
 h English (en)If you do
<code>QString translatedStuff = i18n("foobar");</code> translatedStuff will contain the translation of "foobar", while for <code> const char *markedStuff = I18N_NOOP("foobar");</code> <tt>markedStuff</tt> will still contain literal "foobar", but translators will know you want "foobar" translated so you can later on do <code>QString translatedStuff = i18n(markedStuff);</code> and get the translation of "foobar", which wouldn't work without that I18N_NOOP. 
So, normally you want to just use i18n(), but in cases where you absolutely need to pass something untranslated, but still need to translate it later or in the case that you have something to be translated before the KInstance exists, use <code>I18N_NOOP()</code>.
 h Japanese (ja)<code>QString translatedStuff=i18n("foobar");</code> を使った場合、translatedStuff は "foobar" の翻訳結果が含まれます。一方、
<code>const char *markedStuff = I18N_NOOP("foobar");</code> を使った場合、<tt>marketStuff</tt> はまだ、リテラル "foobar" を含んでいます。しかし、翻訳者はそのが翻訳されてほしいことを分っているので、後に <code>QString translatedStuff=i18n(markedStuff);</code> を実行すると、"foobar" の翻訳結果が得られます。これは I18N_NOOP なしではうまくいきません。
そのため、普通は i18n を使ってください。しかし、絶対に翻訳をさせずに後で翻訳したい場合や、KInstance が存在する前に翻訳したいものを持っておきたい場合は、<code>I18N_NOOP()</code> を使って下さい。
 h Brazilian Portuguese (pt-br)Se você fizer <code>QString translatedStuff = i18n("foobar");</code> translatedStuff conterá a tradução de "foobar", enquanto que para <code> const char *markedStuff = I18N_NOOP("foobar");</code> <tt>markedStuff</tt> conterá "foobar" literal, mas tradutores saberão que você deseja "foobar" traduzido, então, para que você possa mais tarde fazer <code>QString translatedStuff = i18n(markedStuff);</code> e obter a tradução de "foobar", que não funcionaria sem I18N_NOOP. Então, normalmente você quer apenas usar i18n (), mas nos casos em que é absolutamente necessário passar algo não traduzido, ainda precisa traduzi-lo mais tarde ou, no caso de você ter algo a ser traduzido antes do Kinstance existir, use <code>I18N_NOOP()</code>.