summaryrefslogtreecommitdiff
path: root/plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2018-08-02 21:15:17 +0300
committerdartraiden <wowemuh@gmail.com>2018-08-02 21:15:17 +0300
commit4c47c97da317d3f4ff233411c212a8ac98847cfa (patch)
tree5bf8c597752093a19647d3ee31d64803640904ca /plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp
parent2d2977af995a333820bfa64650d4c43e8876b153 (diff)
CurrencyRates: fix capitalization, spelling correction
Diffstat (limited to 'plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp')
-rw-r--r--plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp b/plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp
index 3f5fdb4cdb..05fceba8ac 100644
--- a/plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp
+++ b/plugins/CurrencyRates/src/CurrencyRatesProviderVisitorFormatSpecificator.cpp
@@ -10,8 +10,8 @@ CCurrencyRatesProviderVisitorFormatSpecificator::~CCurrencyRatesProviderVisitorF
void CCurrencyRatesProviderVisitorFormatSpecificator::Visit(const CCurrencyRatesProviderDukasCopy&/* rProvider*/)
{
- m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Rate Symbol")));
- m_aSpecificators.push_back(CFormatSpecificator(L"%d", TranslateT("Currency Rate Name")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Symbol")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%d", TranslateT("Currency Name")));
}
void CCurrencyRatesProviderVisitorFormatSpecificator::Visit(const CCurrencyRatesProviderBase&/* rProvider*/)
@@ -29,8 +29,8 @@ void CCurrencyRatesProviderVisitorFormatSpecificator::Visit(const CCurrencyRates
void CCurrencyRatesProviderVisitorFormatSpecificator::Visit(const CCurrencyRatesProviderGoogleFinance&/* rProvider*/)
{
- m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Rate Symbol")));
- m_aSpecificators.push_back(CFormatSpecificator(L"%n", TranslateT("Currency Rate Name")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Symbol")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%n", TranslateT("Currency Name")));
m_aSpecificators.push_back(CFormatSpecificator(L"%o", TranslateT("Open Price")));
m_aSpecificators.push_back(CFormatSpecificator(L"%d", TranslateT("Percent Change to After Hours")));
m_aSpecificators.push_back(CFormatSpecificator(L"%y", TranslateT("Percent Change to Yesterday Close")));
@@ -43,8 +43,8 @@ const CCurrencyRatesProviderVisitorFormatSpecificator::TFormatSpecificators& CCu
void CCurrencyRatesProviderVisitorFormatSpecificator::Visit(const CCurrencyRatesProviderYahoo&)
{
- m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Rate Symbol")));
- m_aSpecificators.push_back(CFormatSpecificator(L"%n", TranslateT("Currency Rate Name")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%s", TranslateT("Currency Symbol")));
+ m_aSpecificators.push_back(CFormatSpecificator(L"%n", TranslateT("Currency Name")));
m_aSpecificators.push_back(CFormatSpecificator(L"%o", TranslateT("Open Price")));
m_aSpecificators.push_back(CFormatSpecificator(L"%h", TranslateT("Day's High")));
m_aSpecificators.push_back(CFormatSpecificator(L"%g", TranslateT("Day's Low")));