Some (very minor) translation string improvements.

Fix superfluous space.
Unify case sensitivity in string that appears multiple times.
This commit is contained in:
Christian Stimming 2018-12-30 22:19:07 +01:00
parent 83ae800645
commit 1eed3db5e7
2 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ std::string GncImportPrice::verify_essentials (void)
else if (m_from_commodity == boost::none) else if (m_from_commodity == boost::none)
return _("No 'Commodity from' column."); return _("No 'Commodity from' column.");
else if (gnc_commodity_equal (*m_from_commodity, *m_to_currency)) else if (gnc_commodity_equal (*m_from_commodity, *m_to_currency))
return _("'Commodity from' can not be the same as 'Currency to'."); return _("'Commodity From' can not be the same as 'Currency To'.");
else else
return std::string(); return std::string();
} }