Translate all remaining menu items in Data > "Insert value" submenu

This commit is contained in:
Ansgar Becker
2015-04-02 09:54:44 +00:00
parent d3f19b66f8
commit 4d694a511b
2 changed files with 19 additions and 7 deletions

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: HeidiSQL\n"
"POT-Creation-Date: 2012-11-05 21:40\n"
"PO-Revision-Date: 2015-03-31 11:11+0100\n"
"PO-Revision-Date: 2015-04-02 11:53+0100\n"
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/"
"language/en/)\n"
@ -1341,6 +1341,7 @@ msgid "Command"
msgstr "Command"
#. MainForm..panelTop..pnlRight..PageControlMain..tabHost..PageControlHost..tabProcessList..ListProcesses......WideText
#. Data grid > Insert value
#: main.dfm:888
msgid "Time"
msgstr "Time"
@ -5654,9 +5655,14 @@ msgid "Allows the following replacement patterns:"
msgstr "Allows the following replacement patterns:"
#. Table tools
#. Data grid > Insert value
msgid "Date and time"
msgstr "Date and time"
#. Data grid > Insert value
msgid "Date"
msgstr "Date"
#. Table tools
msgid "Day of month"
msgstr "Day of month"
@ -5834,3 +5840,9 @@ msgstr "Unknown datatype \"%s\" for \"%s\". Fall back to %s."
#. Error happening when facing unknown named data types. Name of column or argument passed here as a hint for the user.
msgid "Unknown datatype \"%s\". Fall back to %s."
msgstr "Unknown datatype \"%s\". Fall back to %s."
msgid "GUID"
msgstr "GUID"
msgid "GUID without braces"
msgstr "GUID without braces"

View File

@ -6373,17 +6373,17 @@ var
Col: TTableColumn;
begin
DecodeDateTime(Now, y, m, d, h, i, s, ms);
DataDateTime.Caption := 'DATETIME: ' + Format('%.4d-%.2d-%.2d %.2d:%.2d:%.2d', [y,m,d,h,i,s]);
DataDate.Caption := 'DATE: ' + Format('%.4d-%.2d-%.2d', [y,m,d]);
DataTime.Caption := 'TIME: ' + Format('%.2d:%.2d:%.2d', [h,i,s]);
DataYear.Caption := 'YEAR: ' + Format('%.4d', [y]);
DataDateTime.Caption := Format('%s: %.4d-%.2d-%.2d %.2d:%.2d:%.2d', [_('Date and time'), y,m,d,h,i,s]);
DataDate.Caption := Format('%s: %.4d-%.2d-%.2d', [_('Date'), y,m,d]);
DataTime.Caption := Format('%s: %.2d:%.2d:%.2d', [_('Time'), h,i,s]);
DataYear.Caption := Format('%s: %.4d', [_('Year'), y]);
GetSystemTime(SystemTime);
UnixTimestamp := DateTimeToUnix(SystemTimeToDateTime(SystemTime));
DataUNIXtimestamp.Caption := _('UNIX Timestamp')+': ' + IntToStr(UnixTimestamp);
CreateGuid(Uid);
StrUid := GuidToString(Uid);
DataGUID.Caption := 'GUID: ' + StrUid;
DataGUIDwobraces.Caption := 'GUID without braces: ' + Copy(StrUid, 2, Length(StrUid)-2);
DataGUID.Caption := _('GUID') + ': ' + StrUid;
DataGUIDwobraces.Caption := _('GUID without braces') + ': ' + Copy(StrUid, 2, Length(StrUid)-2);
ColNum := DataGrid.FocusedColumn;
DataDefaultValue.Caption := _('Default value')+': ?';