improve wording

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1102027
This commit is contained in:
Volker Lanz 2010-03-11 16:43:00 +00:00
parent 34278260f3
commit f2f55e00fa
1 changed files with 2 additions and 2 deletions

View File

@ -435,9 +435,9 @@ static bool checkTooManyPartitions(QWidget* parent, const Device& d, const Parti
if (p.roles().has(PartitionRole::Unallocated) && d.partitionTable()->numPrimaries() >= d.partitionTable()->maxPrimaries() && !p.roles().has(PartitionRole::Logical))
{
KMessageBox::sorry(parent, i18ncp("@info",
"<para>There is already 1 primary partition on this device. This is the maximum number its partition table can handle.</para>"
"<para>There is already one primary partition on this device. This is the maximum number its partition table type can handle.</para>"
"<para>You cannot create, paste or restore a primary partition on it before you delete an existing one.</para>",
"<para>There are already %1 primary partitions on this device. This is the maximum number its partition table can handle.</para>"
"<para>There are already %1 primary partitions on this device. This is the maximum number its partition table type can handle.</para>"
"<para>You cannot create, paste or restore a primary partition on it before you delete an existing one.</para>",
d.partitionTable()->numPrimaries()), i18nc("@title:window", "Too Many Primary Partitions."));
return true;