facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
@c This file is part of the GNU gettext manual.
|
|
@c Copyright (C) 1995-2020 Free Software Foundation, Inc.
|
|
@c See the file gettext.texi for copying conditions.
|
|
|
|
@node Vala
|
|
@subsection Vala
|
|
|
|
@table @asis
|
|
@item RPMs
|
|
vala
|
|
|
|
@item Ubuntu packages
|
|
valac
|
|
|
|
@item File extension
|
|
@code{vala}
|
|
|
|
@item String syntax
|
|
@itemize @bullet
|
|
|
|
@item @code{"abc"}
|
|
|
|
@item @code{"""abc"""}
|
|
|
|
@end itemize
|
|
|
|
@item gettext shorthand
|
|
@code{_("abc")}
|
|
|
|
@item gettext/ngettext functions
|
|
@code{gettext}, @code{dgettext}, @code{dcgettext}, @code{ngettext},
|
|
@code{dngettext}, @code{dpgettext}, @code{dpgettext2}
|
|
|
|
@item textdomain
|
|
@code{textdomain} function, defined under the @code{Intl} namespace
|
|
|
|
@item bindtextdomain
|
|
@code{bindtextdomain} function, defined under the @code{Intl} namespace
|
|
|
|
@item setlocale
|
|
Programmer must call @code{Intl.setlocale (LocaleCategory.ALL, "")}
|
|
|
|
@item Prerequisite
|
|
---
|
|
|
|
@item Use or emulate GNU gettext
|
|
Use
|
|
|
|
@item Extractor
|
|
@code{xgettext}
|
|
|
|
@item Formatting with positions
|
|
Same as for the C language.
|
|
|
|
@item Portability
|
|
autoconf (gettext.m4) and #if ENABLE_NLS
|
|
|
|
@item po-mode marking
|
|
yes
|
|
@end table
|