mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 11:29:51 +03:00
Make default category translatable (with dev warning) (#4712)
This commit is contained in:
parent
3eb39ddac2
commit
443d75c0ac
2 changed files with 4 additions and 2 deletions
|
@ -415,7 +415,8 @@ void MdiChild::generalEdit()
|
|||
|
||||
void MdiChild::categoryAdd()
|
||||
{
|
||||
CategoryData category("New category");
|
||||
/*: Translators do NOT use accent for this, this is the default category name on Horus. */
|
||||
CategoryData category(qPrintable(tr("New category")));
|
||||
radioData.categories.push_back(category);
|
||||
setModified();
|
||||
emit copyAvailable(false); // workaround : nothing is selected after model creation
|
||||
|
|
|
@ -114,7 +114,8 @@ void ModelEdit::launchSimulation()
|
|||
{
|
||||
RadioData * simuData = new RadioData();
|
||||
simuData->generalSettings = generalSettings;
|
||||
CategoryData category("Models");
|
||||
/*: Translators do NOT use accent for this, this is the default category name on Horus. */
|
||||
CategoryData category(qPrintable(tr("Models")));
|
||||
simuData->categories.push_back(category);
|
||||
if (simuData->models.size() == 0) {
|
||||
simuData->models.push_back(model);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue