summaryrefslogtreecommitdiffstats
path: root/src/helper/gettext.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Some anti-aliasingPatrick Storz2019-03-311-1/+1
|
* Remove "PACKAGE_LOCALE_DIR" environment variablePatrick Storz2019-03-301-2/+0
| | | | | | | | Likely unneeded, see also https://gitlab.com/inkscape/inkscape/issues/115) If it causes issues we should set the more canonical INKSCAPE_LOCALEDIR instead.
* Fix localizationMarc Jeanmougin2019-03-241-2/+2
|
* Clarify licensesMax Gaukler2018-11-081-19/+6
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* Remove #include "config.h" wherever possibleEduard Braun2018-10-011-1/+1
|
* Use _WIN32 instead of WIN32Eduard Braun2018-10-011-3/+3
| | | | | | | | The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-1/+1
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-1/+1
|
* license fixEduard Braun2017-11-261-1/+1
|
* Include the prefix.h defines in gettext configTed Gould2017-08-051-1/+5
|
* Use UTF8 encoding for output on windows console.Eduard Braun2017-05-101-11/+12
| | | | | This avoids the misery and frustration of converting to the overly limited ANSI codepages and does not seem to cause any issues so far. (bzr r15682)
* Move functions for switching gettext charset to helper/gettext.hEduard Braun2017-05-071-2/+28
| | | (bzr r15675.1.3)
* Move gettext initialization into separate function so it can be re-used ↵Eduard Braun2017-05-071-0/+83
(will come in handy in inkview) (bzr r15675.1.2)