1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
[formats]
# <name> = <example> [example...]
awk = %d
# https://www.gnu.org/software/gawk/manual/html_node/Printf.html
boost = %d
# https://www.boost.org/doc/libs/1_68_0/libs/format/doc/format.html
c = %d
# https://man7.org/linux/man-pages/man3/printf.3.html
csharp = {0}
# https://learn.microsoft.com/en-us/dotnet/standard/base-types/composite-formatting
elisp = %d
# https://www.gnu.org/software/emacs/manual/html_node/elisp/Formatting-Strings.html
gcc-internal = %d
# https://www.gnu.org/software/gettext/manual/html_node/gcc_002dinternal_002dformat.html
gfc-internal = %d
# https://www.gnu.org/software/gettext/manual/html_node/gfc_002dinternal_002dformat.html
java = {0}
# https://docs.oracle.com/javase/7/docs/api/java/text/MessageFormat.html
# https://ssl.icu-project.org/apiref/icu4j/com/ibm/icu/text/MessageFormat.html
javascript = %d
# https://www.gnu.org/software/gettext/manual/html_node/javascript_002dformat.html
# https://nodejs.org/api/util.html#util_util_format_format
kde = %1
# https://techbase.kde.org/Development/Tutorials/Localization/i18n
kde-kuit = %1
# https://api.kde.org/frameworks/ki18n/html/prg_guide.html
librep = %d
# https://librep.sourceforge.net/librep-manual.html#Formatted%20Output
lisp = ~A
# https://www.lispworks.com/documentation/HyperSpec/Body/22_c.htm
lua = %d
# https://www.lua.org/manual/5.2/manual.html#pdf-string.format
objc = %d
# https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
object-pascal = %d
# https://www.freepascal.org/docs-html/rtl/sysutils/format.html
perl = %d
# https://perldoc.perl.org/functions/sprintf
perl-brace = {var}
# https://metacpan.org/pod/Locale::TextDomain
php = %d
# https://www.php.net/manual/en/function.sprintf.php
python = %d
# https://docs.python.org/2/library/stdtypes.html#string-formatting-operations
# https://docs.python.org/3/library/stdtypes.html#old-string-formatting
python-brace = {0} {var}
# https://docs.python.org/2/library/string.html#formatstrings
# https://docs.python.org/3/library/string.html#formatstrings
qt = %1
# https://doc.qt.io/qt-6/qstring.html#arg
qt-plural = %n
# https://doc.qt.io/qt-6/i18n-source-translation.html#handle-plural-forms
scheme = ~A
# https://people.csail.mit.edu/jaffer/slib/Format-Specification.html
sh = $var
# https://www.gnu.org/software/gettext/manual/html_node/sh_002dformat.html
smalltalk = %1
# https://www.gnu.org/software/smalltalk/manual-base/html_node/CharacterArray_002dstring-processing.html
tcl = %d
# https://www.tcl-lang.org/man/tcl8.6/TclCmd/format.htm
ycp = %1
# https://doc.opensuse.org/projects/YaST/SLES11/tdg/sformat.html
# vim:ft=dosini
|