mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
18 lines
708 B
Plaintext
18 lines
708 B
Plaintext
The files here contain additional translations for various files
|
|
distributed with Remind.
|
|
|
|
If you create a file in $SysInclude whose name is "myfile.rem", then
|
|
you can enable translation by putting this at the top of your
|
|
file:
|
|
|
|
#===================================================================
|
|
# Localize if we can
|
|
IF access($SysInclude + "/translations/" + _("LANGID") + "/myfile.rem", "r") >= 0
|
|
SYSINCLUDE translations/[_("LANGID")]/myfile.rem
|
|
ENDIF
|
|
#===================================================================
|
|
|
|
Then you can localize your file by putting appropriate TRANSLATION directives
|
|
in the file $SysInclude/translations/<LC>/myfile.rem where <LC> is the
|
|
two-character language code.
|