mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Fix error in translatable string
This commit is contained in:
parent
e50ab2639e
commit
92189b6c50
68 changed files with 69 additions and 165 deletions
|
@ -302,7 +302,7 @@ void AutomatedRssDownloader::saveEditedRule()
|
|||
void AutomatedRssDownloader::on_addRuleBtn_clicked()
|
||||
{
|
||||
// Ask for a rule name
|
||||
const QString rule_name = QInputDialog::getText(this, tr("New rule name"), tr("Please type the name of the new download rule->"));
|
||||
const QString rule_name = QInputDialog::getText(this, tr("New rule name"), tr("Please type the name of the new download rule."));
|
||||
if (rule_name.isEmpty()) return;
|
||||
// Check if this rule name already exists
|
||||
if (m_ruleList->getRule(rule_name)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue