Changed: default date/time format for file output to allow better sorting
Added: Dutch translation
This commit is contained in:
parent
6ee9383340
commit
73eef9caeb
@ -17,10 +17,10 @@ resourcestring
|
||||
}
|
||||
|
||||
{ Date format used to determine the file name of detail files }
|
||||
LogFileNameDateFormat = 'ddmmyyyy_hhnn';
|
||||
LogFileNameDateFormat = 'yyyymmdd_hhnn';
|
||||
|
||||
{ Date format used in log files }
|
||||
LogFileLineDateFormat = 'dd-mm-yy hh:nn';
|
||||
LogFileLineDateFormat = 'yyyy-mm-dd hh:nn';
|
||||
|
||||
{ The text added to the message if details are stored externally }
|
||||
LogFileLineDetails = ' (details: %s)';
|
||||
|
37
X2Log.Translations.Dutch.pas
Normal file
37
X2Log.Translations.Dutch.pas
Normal file
@ -0,0 +1,37 @@
|
||||
unit X2Log.Translations.Dutch;
|
||||
|
||||
interface
|
||||
implementation
|
||||
uses
|
||||
X2Log.Constants;
|
||||
|
||||
|
||||
procedure TranslateConstants;
|
||||
begin
|
||||
SetLogResourceString(@LogLevelVerbose, 'Uitgebreid');
|
||||
SetLogResourceString(@LogLevelInfo, 'Informatie');
|
||||
SetLogResourceString(@LogLevelWarning, 'Waarschuwing');
|
||||
SetLogResourceString(@LogLevelError, 'Fout');
|
||||
|
||||
SetLogResourceString(@LogFileNameDateFormat, 'ddmmyyyy_hhnn');
|
||||
SetLogResourceString(@LogFileLineDateFormat, 'dd-mm-yy hh:nn');
|
||||
SetLogResourceString(@LogFileLineDetails, ' (details: %s)');
|
||||
|
||||
SetLogResourceString(@LogMonitorFormCaption, '%s - Live Log');
|
||||
SetLogResourceString(@LogMonitorFormColumnTime, 'Tijd');
|
||||
SetLogResourceString(@LogMonitorFormColumnMessage, 'Melding');
|
||||
|
||||
SetLogResourceString(@LogMonitorFormButtonClear, 'Wissen');
|
||||
SetLogResourceString(@LogMonitorFormButtonPause, 'Pauzeren');
|
||||
SetLogResourceString(@LogMonitorFormButtonCopyDetails, 'Kopiëren');
|
||||
SetLogResourceString(@LogMonitorFormButtonSaveDetails, 'Opslaan');
|
||||
SetLogResourceString(@LogMonitorFormStatusPaused, 'Gepauzeerd: %d melding(en) overgeslagen');
|
||||
|
||||
SetLogResourceString(@LogMonitorFormSaveDetailsFilter, 'Alle bestanden (*.*)|*.*');
|
||||
end;
|
||||
|
||||
|
||||
initialization
|
||||
TranslateConstants;
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user