mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-16 11:42:12 +08:00
Translate all remaining menu items in Data > "Insert value" submenu
This commit is contained in:
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: HeidiSQL\n"
|
"Project-Id-Version: HeidiSQL\n"
|
||||||
"POT-Creation-Date: 2012-11-05 21:40\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"
|
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
|
||||||
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/"
|
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/"
|
||||||
"language/en/)\n"
|
"language/en/)\n"
|
||||||
@ -1341,6 +1341,7 @@ msgid "Command"
|
|||||||
msgstr "Command"
|
msgstr "Command"
|
||||||
|
|
||||||
#. MainForm..panelTop..pnlRight..PageControlMain..tabHost..PageControlHost..tabProcessList..ListProcesses......WideText
|
#. MainForm..panelTop..pnlRight..PageControlMain..tabHost..PageControlHost..tabProcessList..ListProcesses......WideText
|
||||||
|
#. Data grid > Insert value
|
||||||
#: main.dfm:888
|
#: main.dfm:888
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Time"
|
msgstr "Time"
|
||||||
@ -5654,9 +5655,14 @@ msgid "Allows the following replacement patterns:"
|
|||||||
msgstr "Allows the following replacement patterns:"
|
msgstr "Allows the following replacement patterns:"
|
||||||
|
|
||||||
#. Table tools
|
#. Table tools
|
||||||
|
#. Data grid > Insert value
|
||||||
msgid "Date and time"
|
msgid "Date and time"
|
||||||
msgstr "Date and time"
|
msgstr "Date and time"
|
||||||
|
|
||||||
|
#. Data grid > Insert value
|
||||||
|
msgid "Date"
|
||||||
|
msgstr "Date"
|
||||||
|
|
||||||
#. Table tools
|
#. Table tools
|
||||||
msgid "Day of month"
|
msgid "Day of month"
|
||||||
msgstr "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.
|
#. 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."
|
msgid "Unknown datatype \"%s\". Fall back to %s."
|
||||||
msgstr "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"
|
||||||
|
@ -6373,17 +6373,17 @@ var
|
|||||||
Col: TTableColumn;
|
Col: TTableColumn;
|
||||||
begin
|
begin
|
||||||
DecodeDateTime(Now, y, m, d, h, i, s, ms);
|
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]);
|
DataDateTime.Caption := Format('%s: %.4d-%.2d-%.2d %.2d:%.2d:%.2d', [_('Date and time'), y,m,d,h,i,s]);
|
||||||
DataDate.Caption := 'DATE: ' + Format('%.4d-%.2d-%.2d', [y,m,d]);
|
DataDate.Caption := Format('%s: %.4d-%.2d-%.2d', [_('Date'), y,m,d]);
|
||||||
DataTime.Caption := 'TIME: ' + Format('%.2d:%.2d:%.2d', [h,i,s]);
|
DataTime.Caption := Format('%s: %.2d:%.2d:%.2d', [_('Time'), h,i,s]);
|
||||||
DataYear.Caption := 'YEAR: ' + Format('%.4d', [y]);
|
DataYear.Caption := Format('%s: %.4d', [_('Year'), y]);
|
||||||
GetSystemTime(SystemTime);
|
GetSystemTime(SystemTime);
|
||||||
UnixTimestamp := DateTimeToUnix(SystemTimeToDateTime(SystemTime));
|
UnixTimestamp := DateTimeToUnix(SystemTimeToDateTime(SystemTime));
|
||||||
DataUNIXtimestamp.Caption := _('UNIX Timestamp')+': ' + IntToStr(UnixTimestamp);
|
DataUNIXtimestamp.Caption := _('UNIX Timestamp')+': ' + IntToStr(UnixTimestamp);
|
||||||
CreateGuid(Uid);
|
CreateGuid(Uid);
|
||||||
StrUid := GuidToString(Uid);
|
StrUid := GuidToString(Uid);
|
||||||
DataGUID.Caption := 'GUID: ' + StrUid;
|
DataGUID.Caption := _('GUID') + ': ' + StrUid;
|
||||||
DataGUIDwobraces.Caption := 'GUID without braces: ' + Copy(StrUid, 2, Length(StrUid)-2);
|
DataGUIDwobraces.Caption := _('GUID without braces') + ': ' + Copy(StrUid, 2, Length(StrUid)-2);
|
||||||
|
|
||||||
ColNum := DataGrid.FocusedColumn;
|
ColNum := DataGrid.FocusedColumn;
|
||||||
DataDefaultValue.Caption := _('Default value')+': ?';
|
DataDefaultValue.Caption := _('Default value')+': ?';
|
||||||
|
Reference in New Issue
Block a user