Alle Übersetzungen

Gib einen Nachrichtennamen ein, um alle verfügbaren Übersetzungen anzuzeigen.

Nachricht

Es wurde eine Übersetzung gefunden.

NameAktueller Text
 V Deutsch (de)If the search string is the keyword <code>DATE</code>, dynamic date replacement takes place:
* The replace string must then be a date in the format <code>yyyyMMddHHmm</code> or <code>Now</code>.
* In the sourcefile, the placeholder to be replaced must be given as follows: <code>{DATE|ValidFormatstring|ValidNumber,DateInterval}</code>, where
** ValidFormatstring: a date format string consisting of e.g. yyyy, MM, dd, HH, mm (see [https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings here] for more options)
** ValidNumber: 0, +2, -5 or any other integer (adds/subtracts the number of years,  months, days, hours, minutes as given with the number)
** DateIntervall= y, M, d, h, m (is used to add the ValidNumber to the date)
:Example: <code>{DATE|dd|+1,d}</code> with a replace date of 30/12/2017 results in <code>31</code> (given date + 1 day, expressed as date (<code>dd</code>)).