From 6a33521fe12af44ab9abe8e09c6e007f4093b2da Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Mon, 11 Oct 2010 16:06:47 +0000 Subject: [PATCH] add context to some messages svn path=/trunk/kdenlive/; revision=4980 --- src/effectslistwidget.cpp | 6 +++--- src/initeffects.cpp | 4 ++-- src/renderwidget.cpp | 16 ++++++++-------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/effectslistwidget.cpp b/src/effectslistwidget.cpp index dae8c12a..60277c0d 100644 --- a/src/effectslistwidget.cpp +++ b/src/effectslistwidget.cpp @@ -103,7 +103,7 @@ void EffectsListWidget::initList() for (int i = 0; i < topLevelItemCount(); i++) { topLevelItem(i)->takeChildren(); QString currentName = topLevelItem(i)->text(0); - if (currentName != i18n("Misc") && currentName != i18n("Audio") && currentName != i18n("Custom") && !folderNames.contains(currentName)) { + if (currentName != i18n("Misc") && currentName != i18n("Audio") && currentName != i18nc("Folder Name", "Custom") && !folderNames.contains(currentName)) { takeTopLevelItem(i); i--; } @@ -142,9 +142,9 @@ void EffectsListWidget::initList() insertTopLevelItem(0, audio); } - QTreeWidgetItem *custom = findFolder(i18n("Custom")); + QTreeWidgetItem *custom = findFolder(i18nc("Folder Name", "Custom")); if (custom == NULL) { - custom = new QTreeWidgetItem((QTreeWidget*)0, QStringList(i18n("Custom"))); + custom = new QTreeWidgetItem((QTreeWidget*)0, QStringList(i18nc("Folder Name", "Custom"))); custom->setIcon(0, folderIcon); custom->setData(0, TypeRole, QString::number((int) EFFECT_FOLDER)); custom->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); diff --git a/src/initeffects.cpp b/src/initeffects.cpp index 42cf9148..a1076583 100644 --- a/src/initeffects.cpp +++ b/src/initeffects.cpp @@ -735,7 +735,7 @@ void initEffects::fillTransitionsList(Mlt::Repository *repository, EffectsList * desc.appendChild(ret.createTextNode(i18n("Applies a stationary transition between the current and next frames."))); paramList.append(quickParameterFill(ret, i18n("Softness"), "softness", "double", "0", "0", "100", "", "", "100")); - paramList.append(quickParameterFill(ret, i18n("Invert"), "invert", "bool", "0", "0", "1")); + paramList.append(quickParameterFill(ret, i18nc("@property: means that the image is inverted", "Invert"), "invert", "bool", "0", "0", "1")); paramList.append(quickParameterFill(ret, i18n("Image File"), "resource", "list", "", "", "", imagefiles.join(","), imagenamelist.join(","))); paramList.append(quickParameterFill(ret, i18n("Reverse Transition"), "reverse", "bool", "0", "0", "1")); //thumbnailer.prepareThumbnailsCall(imagelist); @@ -796,7 +796,7 @@ void initEffects::fillTransitionsList(Mlt::Repository *repository, EffectsList * } // Add some virtual transitions. - QString slidetrans = "" + i18n("Slide") + "" + i18n("Slide image from one side to another.") + "" + i18n("Direction") + " " + i18n("Align") + "" + i18n("Force Progressive Rendering") + "" + i18n("Force Deinterlace Overlay") + "" + i18n("Invert") + ""; + QString slidetrans = "" + i18n("Slide") + "" + i18n("Slide image from one side to another.") + "" + i18n("Direction") + " " + i18n("Align") + "" + i18n("Force Progressive Rendering") + "" + i18n("Force Deinterlace Overlay") + "" + i18nc("@property: means that the image is inverted", "Invert") + ""; QDomDocument ret; ret.setContent(slidetrans); transitions->append(ret.documentElement()); diff --git a/src/renderwidget.cpp b/src/renderwidget.cpp index 0d1e2fa0..61e49c53 100644 --- a/src/renderwidget.cpp +++ b/src/renderwidget.cpp @@ -346,7 +346,7 @@ void RenderWidget::slotSaveProfile() QString dest = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); QString customGroup = m_view.format_list->currentItem()->text(); - if (customGroup.isEmpty()) customGroup = i18n("Custom"); + if (customGroup.isEmpty()) customGroup = i18nc("Group Name", "Custom"); ui.group_name->setText(customGroup); ui.parameters->setText(m_view.advanced_params->toPlainText()); @@ -356,7 +356,7 @@ void RenderWidget::slotSaveProfile() if (d->exec() == QDialog::Accepted && !ui.profile_name->text().simplified().isEmpty()) { QString newProfileName = ui.profile_name->text().simplified(); QString newGroupName = ui.group_name->text().simplified(); - if (newGroupName.isEmpty()) newGroupName = i18n("Custom"); + if (newGroupName.isEmpty()) newGroupName = i18nc("Group Name", "Custom"); QString newMetaGroupId = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); QDomDocument doc; @@ -449,7 +449,7 @@ void RenderWidget::slotCopyToFavorites() QDomDocument doc; QDomElement profileElement = doc.createElement("profile"); profileElement.setAttribute("name", currentProfile); - profileElement.setAttribute("category", i18n("Custom")); + profileElement.setAttribute("category", i18nc("Category Name", "Custom")); profileElement.setAttribute("destinationid", "favorites"); profileElement.setAttribute("extension", extension); profileElement.setAttribute("args", params); @@ -479,7 +479,7 @@ void RenderWidget::slotEditProfile() QString dest = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); QString customGroup = m_view.format_list->currentItem()->text(); - if (customGroup.isEmpty()) customGroup = i18n("Custom"); + if (customGroup.isEmpty()) customGroup = i18nc("Group Name", "Custom"); ui.group_name->setText(customGroup); ui.profile_name->setText(currentProfile); @@ -515,7 +515,7 @@ void RenderWidget::slotEditProfile() QString newProfileName = ui.profile_name->text().simplified(); QString newGroupName = ui.group_name->text().simplified(); - if (newGroupName.isEmpty()) newGroupName = i18n("Custom"); + if (newGroupName.isEmpty()) newGroupName = i18nc("Group Name", "Custom"); QString newMetaGroupId = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); QDomNodeList profilelist = doc.elementsByTagName("profile"); int i = 0; @@ -1284,7 +1284,7 @@ void RenderWidget::parseFile(QString exportFile, bool editable) newdoc.appendChild(newprofiles); QDomNodeList profilelist = doc.elementsByTagName("profile"); for (int i = 0; i < profilelist.count(); i++) { - QString category = i18n("Custom"); + QString category = i18nc("Category Name", "Custom"); QString extension; QDomNode parent = profilelist.at(i).parentNode(); if (!parent.isNull()) { @@ -1329,7 +1329,7 @@ void RenderWidget::parseFile(QString exportFile, bool editable) params = params.replace("aac", "libfaac"); } - QString category = profile.attribute("category", i18n("Custom")); + QString category = profile.attribute("category", i18nc("Category Name", "Custom")); QString dest = profile.attribute("destinationid"); QString prof_extension = profile.attribute("extension"); if (!prof_extension.isEmpty()) extension = prof_extension; @@ -1409,7 +1409,7 @@ void RenderWidget::parseFile(QString exportFile, bool editable) m_view.destination_list->addItem(icon, i18n(metagroupName.toUtf8().data()), metagroupId); } } - groupName = documentElement.attribute("name", i18n("Custom")); + groupName = documentElement.attribute("name", i18nc("Attribute Name", "Custom")); extension = documentElement.attribute("extension", QString()); renderer = documentElement.attribute("renderer", QString()); bool exists = false; -- 2.39.2