Re: delay i18n arg replacement

2015-01-19 Thread Milian Wolff
On Monday 19 January 2015 14:42:13 Chusslove Illich wrote: > > [: Milian Wolff :] > > Do I really need to store I18N_NOOP2_NOSTRIP and use that with > > > > i18nc(asdf.context, asdf.translatedString, foo, bar) > > > > then? Or is there a better way, where it would be enough to store a > > QStri

Re: Documentation for KF5

2015-01-19 Thread Aleix Pol
On Mon, Jan 19, 2015 at 4:40 PM, Olivier CHURLAUD wrote: > Dear all, > > I'm looking for documentation about KF5 projects. I found a lot of things on > techbase.kde.org but it often seems to be old and deprecated (often the > newest chapter is about kde4 and no TODO or whatever about the future >

Documentation for KF5

2015-01-19 Thread Olivier CHURLAUD
Dear all, I'm looking for documentation about KF5 projects. I found a lot of things on techbase.kde.org but it often seems to be old and deprecated (often the newest chapter is about kde4 and no TODO or whatever about the future appears concerning kf5). Is there another resource website? Whe

Re: delay i18n arg replacement

2015-01-19 Thread Chusslove Illich
> [: Milian Wolff :] > Do I really need to store I18N_NOOP2_NOSTRIP and use that with > > i18nc(asdf.context, asdf.translatedString, foo, bar) > > then? Or is there a better way, where it would be enough to store a > QString in my static data structure? Or is this not possible b/c the > translati

delay i18n arg replacement

2015-01-19 Thread Milian Wolff
Hello all, I'm trying to solve a string puzzle in KDevelop, where we currently do something like this: QStringLiteral( "%1 %2 (%3)") .arg(asdf.translatedString) .arg(foo) .arg(bar) translatedString is a member in a list of static data structures which gets initialized with i18n. I tried