diff options
author | Johnny_M <klasse@partyheld.de> | 2017-05-19 21:55:00 +0200 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-20 13:43:17 +0200 |
commit | fd48f39a7ec080c868b314e06bc91efd160e87c9 (patch) | |
tree | 00c2050dc846d437aef2a3f6934a592ae18c46a8 /framework | |
parent | 639a67273fd2a499ed05b805d0011da202067311 (diff) |
Translate German comments and debug strings (leftovers in f... dirs)
Translates all (leftovers) found using a custom regex, in directories not
shown by /bin/find-german-comments and beginning with "f".
Additionally:
- Fixed translation in formula/source/ui/dlg/funcutl.cxx (translated in
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commitdiff;h=5e04331fc0a6434c61d3d18843cb4f80a44e5989 ),
because clearing an event is quite the opposite of its triggering.
Change-Id: I0fd62193a29883796cd05e5a80ce8a2900636b6c
Reviewed-on: https://gerrit.libreoffice.org/37839
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/pathsettings.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx index a002758d46a4..33204d94e994 100644 --- a/framework/source/services/pathsettings.cxx +++ b/framework/source/services/pathsettings.cxx @@ -732,7 +732,7 @@ PathSettings::EChangeOp PathSettings::impl_updatePath(const OUString& sPath aPath.sPathName = sPath; // replace all might existing variables with real values // Do it before these old paths will be compared against the - // new path configuration. Otherwise some striungs uses different variables ... but substitution + // new path configuration. Otherwise some strings uses different variables ... but substitution // will produce strings with same content (because some variables are redundant!) impl_subst(aPath, false); } @@ -750,7 +750,7 @@ PathSettings::EChangeOp PathSettings::impl_updatePath(const OUString& sPath std::vector<OUString> lOldVals = impl_readOldFormat(sPath); // replace all might existing variables with real values // Do it before these old paths will be compared against the - // new path configuration. Otherwise some striungs uses different variables ... but substitution + // new path configuration. Otherwise some strings uses different variables ... but substitution // will produce strings with same content (because some variables are redundant!) impl_subst(lOldVals, fa_getSubstitution(), false); impl_mergeOldUserPaths(aPath, lOldVals); |