Bug 486913 - i18n: interchanged context for two strings
Summary: i18n: interchanged context for two strings
Status: REPORTED
Alias: None
Product: frameworks-knewstuff
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Other Other
: NOR normal
Target Milestone: ---
Assignee: Dan Leinir Turthra Jensen
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-05-12 07:32 UTC by Kishore Gopalakrishnan
Modified: 2024-05-12 07:32 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kishore Gopalakrishnan 2024-05-12 07:32:55 UTC
In src/qtquick/qml/UploadPage.qml, the context strings in lines 154 and 155 seem to be accidentally interchanged (the one which is supposed to be for a generic provider mentions the KDE store, while the one which is supposed to be KDE-specific does not mention KDE at all).

https://lxr.kde.org/source/frameworks/knewstuff/src/qtquick/qml/UploadPage.qml#0154
```
                         ? i18ndc("knewstuff6", "A description of how to upload content to a generic provider", "To upload new entries, or to add content to an existing entry on the KDE Store, please open the website and log in. Once you have done this, you will be able to find the My Products entry in the menu which pops up when you click your user icon. Click on this entry to go to the product management system, where you can work on your products .")
                         : i18ndc("knewstuff6", "A description of how to upload content to the KDE Store specifically", "To upload new entries, or to add content to an existing entry, please open the provider's website and follow the instructions there. You will likely need to create a user and log in to a product management system, where you will need to follow the instructions for how to add. Alternatively, you might be required to contact the managers of the site directly to get new content added.")
0156                 }
```