summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:29:31 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 12:29:39 +0200
commitee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch)
treece9b6b2cf18caa73b8500245d558ff2ac484074d /i18nlangtag
parent0940229305247b4e64e8c85c9734020c9808a6ec (diff)
Fix '..'
To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for ".." instead of "..." between words. It passed "make check" on Linux. Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8 Reviewed-on: https://gerrit.libreoffice.org/78357 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index e88e5c1ab3cd..e972400f7c84 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1085,7 +1085,7 @@ bool LanguageTagImpl::canonicalize()
}
else
{
- // Now this is getting funny.. we only have some BCP47 string
+ // Now this is getting funny... we only have some BCP47 string
// and want to determine if parsing it would be possible
// without using liblangtag just to see if it is a simple known
// locale or could fall back to one.
@@ -2560,7 +2560,7 @@ LanguageTagImpl::Extraction LanguageTagImpl::simpleExtract( const OUString& rBcp
rLanguage = "es";
rScript.clear();
rCountry = "ES";
- rVariants = "tradnl"; // this is nonsense, but.. ignored.
+ rVariants = "tradnl"; // this is nonsense, but... ignored.
eRet = EXTRACTED_KNOWN_BAD;
}
}
@@ -2745,7 +2745,7 @@ OUString LanguageTag::convertToBcp47( const css::lang::Locale& rLocale, bool bRe
OUString LanguageTag::convertToBcp47( LanguageType nLangID )
{
lang::Locale aLocale( LanguageTag::convertToLocale( nLangID ));
- // If system for some reason (should not happen.. haha) could not be
+ // If system for some reason (should not happen... haha) could not be
// resolved DO NOT CALL LanguageTag::convertToBcp47(Locale) because that
// would recurse into this method here!
if (aLocale.Language.isEmpty())