1
0
mirror of https://git.tukaani.org/xz.git synced 2026-02-25 21:38:06 +00:00
Lasse Collin 2026-02-24 18:34:19 +02:00
parent cd8a6231d0
commit 4e76651dba
No known key found for this signature in database
GPG Key ID: 38EE757D69184620
4 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ subdir = po
top_builddir = .. top_builddir = ..
# These options get passed to xgettext. # These options get passed to xgettext.
XGETTEXT_OPTIONS = --add-location=file --no-wrap --keyword=_ --keyword=N_ '--keyword=W_:1,"This is word wrapped at spaces. The Unicode character U+00A0 works as a non-breaking space. Tab (\t) is interpret as a zero-width space (the tab itself is not displayed); U+200B is NOT supported. Manual word wrapping with \n is supported but requires care."' XGETTEXT_OPTIONS = --add-location=file --no-wrap --keyword=_ --keyword=N_ '--keyword=W_:1,"This is word wrapped at spaces. The Unicode character U+00A0 works as a non-breaking space. Tab (\t) is interpreted as a zero-width space (the tab itself is not displayed); U+200B is NOT supported. Manual word wrapping with \n is supported but requires care."'
# This is the copyright holder that gets inserted into the header of the # This is the copyright holder that gets inserted into the header of the
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding

View File

@ -41,11 +41,11 @@
#define N_(msgid) msgid #define N_(msgid) msgid
// Optional: Strings that are word wrapped using tuklib_mbstr_wrap may be // Optional: Strings that are word wrapped using tuklib_mbstr_wrap may be
// marked with W_("foo) in the source code. xgettext can then add a comment // marked with W_("foo") in the source code. xgettext can then add a comment
// to all such strings to inform translators. The following option needs to // to all such strings to inform translators. The following option needs to
// be added to XGETTEXT_OPTIONS in po/Makevars or in an equivalent place: // be added to XGETTEXT_OPTIONS in po/Makevars or in an equivalent place:
// //
// '--keyword=W_:1,"This is word wrapped at spaces. The Unicode character U+00A0 works as a non-breaking space. Tab (\t) is interpret as a zero-width space (the tab itself is not displayed); U+200B is NOT supported. Manual word wrapping with \n is supported but requires care."' // '--keyword=W_:1,"This is word wrapped at spaces. The Unicode character U+00A0 works as a non-breaking space. Tab (\t) is interpreted as a zero-width space (the tab itself is not displayed); U+200B is NOT supported. Manual word wrapping with \n is supported but requires care."'
// //
// NOTE: The double-quotes in the --keyword argument above must be passed to // NOTE: The double-quotes in the --keyword argument above must be passed to
// xgettext as is, thus one needs the single-quotes in Makevars. // xgettext as is, thus one needs the single-quotes in Makevars.

View File

@ -28,10 +28,10 @@
TUKLIB_DECLS_BEGIN TUKLIB_DECLS_BEGIN
/// One or more output lines exceeded right_margin. /// One or more output lines exceeded right_margin.
/// This only a warning; everything was still printed successfully. /// This is only a warning; everything was still printed successfully.
#define TUKLIB_WRAP_WARN_OVERLONG 0x01 #define TUKLIB_WRAP_WARN_OVERLONG 0x01
/// Error writing to to the output FILE. The error flag in the FILE /// Error writing to the output FILE. The error flag in the FILE
/// should have been set as well. /// should have been set as well.
#define TUKLIB_WRAP_ERR_IO 0x02 #define TUKLIB_WRAP_ERR_IO 0x02

View File

@ -37,7 +37,7 @@ This is useful for programs that use main():
* UTF-8 allows such programs to access files whose names contain * UTF-8 allows such programs to access files whose names contain
characters that don't exist in the current legacy code page. characters that don't exist in the current legacy code page.
However, filenames on Windows may contain unpaired surrogates However, filenames on Windows may contain unpaired surrogates
(invalid UTF-16). Such files cannot be accesses even with the (invalid UTF-16). Such files cannot be accessed even with the
UTF-8 code page. UTF-8 code page.
* UTF-8 avoids a security issue in command line argument handling: * UTF-8 avoids a security issue in command line argument handling: