Changeset 178


Ignore:
Timestamp:
Aug 27, 2024, 9:53:16 AM (3 weeks ago)
Author:
chronos
Message:
Location:
trunk/Packages/Common
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Common.pas

    r177 r178  
    190190  I: Integer;
    191191begin
     192  Result := Default(TStringArray);
    192193  SetLength(Result, GetEnvironmentVariableCount);
    193194  for I := 0 to GetEnvironmentVariableCount - 1 do
  • trunk/Packages/Common/Forms/FormKeyShortcuts.lfm

    r177 r178  
    5555    Column = 0
    5656    Order = soNone
    57     Left = 255
    58     Top = 138
     57    Left = 200
     58    Top = 160
    5959  end
    6060end
  • trunk/Packages/Common/Forms/FormKeyShortcuts.pas

    r177 r178  
    66  Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
    77  ComCtrls, ActnList, LCLProc, Menus, FormEx, Generics.Collections, ImgList,
    8   ListViewSort;
     8  StdCtrls, ListViewSort;
    99
    1010type
     
    4242  SMainForm = 'Main window';
    4343  SGlobal = 'Global';
     44  // TODO: https://gitlab.com/freepascal.org/lazarus/lazarus/-/issues/41095
     45  {$hints off}
     46  SAction = 'Action';
     47  SWindow = 'Window';
     48  SExecute = 'Execute';
     49  SShortcut = 'Shortcut';
     50  SKeyShortcuts = 'Key shortcuts';
    4451
    4552{ TFormKeyShortcuts }
  • trunk/Packages/Common/Languages/FormKeyShortcuts.cs.po

    r177 r178  
    1212"X-Generator: Poedit 3.4.2\n"
    1313
     14#: formkeyshortcuts.saction
     15msgid "Action"
     16msgstr "Akce"
     17
     18#: formkeyshortcuts.sexecute
     19msgid "Execute"
     20msgstr "Vykonat"
     21
    1422#: formkeyshortcuts.sglobal
     23msgctxt "formkeyshortcuts.sglobal"
    1524msgid "Global"
    1625msgstr "Globální"
     26
     27#: formkeyshortcuts.skeyshortcuts
     28msgid "Key shortcuts"
     29msgstr "Klávesové zkratky"
    1730
    1831#: formkeyshortcuts.smainform
     
    2033msgstr "Hlavní okno"
    2134
     35#: formkeyshortcuts.sshortcut
     36msgid "Shortcut"
     37msgstr "Zkratka"
     38
     39#: formkeyshortcuts.swindow
     40msgid "Window"
     41msgstr "Okno"
  • trunk/Packages/Common/Languages/FormKeyShortcuts.pot

    r177 r178  
    22msgstr "Content-Type: text/plain; charset=UTF-8"
    33
     4#: formkeyshortcuts.saction
     5msgid "Action"
     6msgstr ""
     7
     8#: formkeyshortcuts.sexecute
     9msgid "Execute"
     10msgstr ""
     11
    412#: formkeyshortcuts.sglobal
    513msgid "Global"
     14msgstr ""
     15
     16#: formkeyshortcuts.skeyshortcuts
     17msgid "Key shortcuts"
    618msgstr ""
    719
     
    1022msgstr ""
    1123
     24#: formkeyshortcuts.sshortcut
     25msgid "Shortcut"
     26msgstr ""
     27
     28#: formkeyshortcuts.swindow
     29msgid "Window"
     30msgstr ""
     31
  • trunk/Packages/Common/Table.pas

    r171 r178  
    44
    55uses
    6   Classes, SysUtils, Generics.Collections, ComCtrls, XMLRead, XMLWrite, DOM;
     6  Classes, SysUtils, Generics.Collections, ComCtrls, XMLRead, DOM;
    77
    88type
Note: See TracChangeset for help on using the changeset viewer.