https://bugs.kde.org/show_bug.cgi?id=438092

Albert Astals Cid <aa...@kde.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|general                     |Calendar
            Version|unspecified                 |5.21.5
            Product|i18n                        |plasmashell
   Target Milestone|---                         |1.0
           Assignee|aa...@kde.org               |plasma-b...@kde.org

--- Comment #2 from Albert Astals Cid <aa...@kde.org> ---
I doubt this is a translation issue given that running this

#include <QCoreApplication>
#include <QDate>
#include <QDebug>

int main(int argc, char **argv)
{
    QCoreApplication a(argc, argv);

    QDate d = QDate::currentDate();

    QLocale l(QLocale::Hindi);
    qDebug() << l.toString(d);
    qDebug() << l.standaloneMonthName(6, QLocale::LongFormat);
    qDebug() << l.standaloneMonthName(6, QLocale::ShortFormat);
    qDebug() << l.standaloneMonthName(6, QLocale::NarrowFormat);
}

gives the correct answers.

I would more bet something in plasma is not doing the correct thing.

If someone tells me how i can run the calendar widget standalone for easier
debuggning i can try helping figuring out what's wrong.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to