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
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
>
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
> [: 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
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