formatting is plaintext for error message to report

svn path=/branches/partitionmanager/1.0/partitionmanager/; revision=1096699
This commit is contained in:
Volker Lanz 2010-02-27 13:03:49 +00:00
parent 655656cbae
commit 1355007dfc
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ bool SetPartFlagsJob::run(Report& parent)
if (!ped_partition_set_flag(pedPartition, flagmap[i].pedFlag, state))
{
report->line() << i18nc("@info/plain", "There was an error setting flag %1 for partition <filename>%2</filename> to state %3.", PartitionTable::flagName(flagmap[i].flag), partition().deviceNode(), state ? i18nc("@info flag turned on, active", "on") : i18nc("@info flag turned off, inactive", "off"));
report->line() << i18nc("@info/plain", "There was an error setting flag %1 for partition <filename>%2</filename> to state %3.", PartitionTable::flagName(flagmap[i].flag), partition().deviceNode(), state ? i18nc("@info/plain flag turned on, active", "on") : i18nc("@info/plain flag turned off, inactive", "off"));
rval = false;
}