summaryrefslogtreecommitdiffstats
path: root/src/helper/gettext.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-03-31Some anti-aliasingPatrick Storz1-1/+1
2019-03-30Remove "PACKAGE_LOCALE_DIR" environment variablePatrick Storz1-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.
2019-03-24Fix localizationMarc Jeanmougin1-2/+2
2018-11-08Clarify licensesMax Gaukler1-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
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-1/+1
2018-10-01Use _WIN32 instead of WIN32Eduard Braun1-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
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2017-11-26license fixEduard Braun1-1/+1
2017-08-05Include the prefix.h defines in gettext configTed Gould1-1/+5
2017-05-10Use UTF8 encoding for output on windows console.Eduard Braun1-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)
2017-05-07Move functions for switching gettext charset to helper/gettext.hEduard Braun1-2/+28
(bzr r15675.1.3)
2017-05-07Move gettext initialization into separate function so it can be re-used ↵Eduard Braun1-0/+83
(will come in handy in inkview) (bzr r15675.1.2)