- Timestamp:
- Aug 27, 2024, 9:53:16 AM (3 months ago)
- Location:
- trunk/Packages/Common
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Common.pas
r177 r178 190 190 I: Integer; 191 191 begin 192 Result := Default(TStringArray); 192 193 SetLength(Result, GetEnvironmentVariableCount); 193 194 for I := 0 to GetEnvironmentVariableCount - 1 do -
trunk/Packages/Common/Forms/FormKeyShortcuts.lfm
r177 r178 55 55 Column = 0 56 56 Order = soNone 57 Left = 2 5558 Top = 1 3857 Left = 200 58 Top = 160 59 59 end 60 60 end -
trunk/Packages/Common/Forms/FormKeyShortcuts.pas
r177 r178 6 6 Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, 7 7 ComCtrls, ActnList, LCLProc, Menus, FormEx, Generics.Collections, ImgList, 8 ListViewSort;8 StdCtrls, ListViewSort; 9 9 10 10 type … … 42 42 SMainForm = 'Main window'; 43 43 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'; 44 51 45 52 { TFormKeyShortcuts } -
trunk/Packages/Common/Languages/FormKeyShortcuts.cs.po
r177 r178 12 12 "X-Generator: Poedit 3.4.2\n" 13 13 14 #: formkeyshortcuts.saction 15 msgid "Action" 16 msgstr "Akce" 17 18 #: formkeyshortcuts.sexecute 19 msgid "Execute" 20 msgstr "Vykonat" 21 14 22 #: formkeyshortcuts.sglobal 23 msgctxt "formkeyshortcuts.sglobal" 15 24 msgid "Global" 16 25 msgstr "Globální" 26 27 #: formkeyshortcuts.skeyshortcuts 28 msgid "Key shortcuts" 29 msgstr "Klávesové zkratky" 17 30 18 31 #: formkeyshortcuts.smainform … … 20 33 msgstr "Hlavní okno" 21 34 35 #: formkeyshortcuts.sshortcut 36 msgid "Shortcut" 37 msgstr "Zkratka" 38 39 #: formkeyshortcuts.swindow 40 msgid "Window" 41 msgstr "Okno" -
trunk/Packages/Common/Languages/FormKeyShortcuts.pot
r177 r178 2 2 msgstr "Content-Type: text/plain; charset=UTF-8" 3 3 4 #: formkeyshortcuts.saction 5 msgid "Action" 6 msgstr "" 7 8 #: formkeyshortcuts.sexecute 9 msgid "Execute" 10 msgstr "" 11 4 12 #: formkeyshortcuts.sglobal 5 13 msgid "Global" 14 msgstr "" 15 16 #: formkeyshortcuts.skeyshortcuts 17 msgid "Key shortcuts" 6 18 msgstr "" 7 19 … … 10 22 msgstr "" 11 23 24 #: formkeyshortcuts.sshortcut 25 msgid "Shortcut" 26 msgstr "" 27 28 #: formkeyshortcuts.swindow 29 msgid "Window" 30 msgstr "" 31 -
trunk/Packages/Common/Table.pas
r171 r178 4 4 5 5 uses 6 Classes, SysUtils, Generics.Collections, ComCtrls, XMLRead, XMLWrite,DOM;6 Classes, SysUtils, Generics.Collections, ComCtrls, XMLRead, DOM; 7 7 8 8 type
Note:
See TracChangeset
for help on using the changeset viewer.