mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 11:19:24 +02:00
AnchorDocking: Save the new settings for grabber + generated translations. Part os issue #24672, patch from Andrey Zubarev
git-svn-id: trunk@41964 -
This commit is contained in:
parent
d50b5ead1c
commit
123beaa6dc
@ -1287,6 +1287,8 @@ begin
|
||||
HideHeaderCaptionFloatingControl:=Config.GetValue('HideHeaderCaptionFloatingControl',true);
|
||||
AllowDragging:=Config.GetValue('AllowDragging',true);
|
||||
HeaderStyle:=StrToADHeaderStyle(Config.GetValue('HeaderStyle',ADHeaderStyleNames[adhsDefault]));
|
||||
HeaderFlatten:=Config.GetValue('HeaderFlatten',true);
|
||||
HeaderFilled:=Config.GetValue('HeaderFilled',true);
|
||||
Config.UndoAppendBasePath;
|
||||
end;
|
||||
|
||||
@ -1306,6 +1308,8 @@ begin
|
||||
Config.SetDeleteValue('HideHeaderCaptionFloatingControl',HideHeaderCaptionFloatingControl,true);
|
||||
Config.SetDeleteValue('AllowDragging',AllowDragging,true);
|
||||
Config.SetDeleteValue('HeaderStyle',ADHeaderStyleNames[HeaderStyle],ADHeaderStyleNames[adhsDefault]);
|
||||
Config.SetDeleteValue('HeaderFlatten',HeaderFlatten,true);
|
||||
Config.SetDeleteValue('HeaderFilled',HeaderFilled,true);
|
||||
Config.UndoAppendBasePath;
|
||||
end;
|
||||
|
||||
@ -1325,6 +1329,8 @@ begin
|
||||
and (HideHeaderCaptionFloatingControl=Settings.HideHeaderCaptionFloatingControl)
|
||||
and (AllowDragging=Settings.AllowDragging)
|
||||
and (HeaderStyle=Settings.HeaderStyle)
|
||||
and (HeaderFlatten=Settings.HeaderFlatten)
|
||||
and (HeaderFilled=Settings.HeaderFilled)
|
||||
;
|
||||
end;
|
||||
|
||||
|
@ -225,6 +225,8 @@ object AnchorDockOptionsFrame: TAnchorDockOptionsFrame
|
||||
Top = 253
|
||||
Width = 99
|
||||
Caption = 'FlattenHeaders'
|
||||
ParentShowHint = False
|
||||
ShowHint = True
|
||||
TabOrder = 9
|
||||
end
|
||||
object FilledHeaders: TCheckBox
|
||||
@ -236,6 +238,8 @@ object AnchorDockOptionsFrame: TAnchorDockOptionsFrame
|
||||
Top = 272
|
||||
Width = 91
|
||||
Caption = 'FilledHeaders'
|
||||
ParentShowHint = False
|
||||
ShowHint = True
|
||||
TabOrder = 10
|
||||
end
|
||||
end
|
||||
|
@ -313,7 +313,12 @@ begin
|
||||
TheSettings.HideHeaderCaptionFloatingControl;
|
||||
|
||||
FlattenHeaders.Checked:=TheSettings.HeaderFlatten;
|
||||
FlattenHeaders.Caption:=adrsFlattenHeaders;
|
||||
FlattenHeaders.Hint:=adrsFlattenHeadersHint;
|
||||
|
||||
FilledHeaders.Checked:=TheSettings.HeaderFilled;
|
||||
FilledHeaders.Caption:=adrsFilledHeaders;
|
||||
FilledHeaders.Hint:=adrsFilledHeadersHint;
|
||||
end;
|
||||
|
||||
end.
|
||||
|
@ -122,6 +122,11 @@ resourcestring
|
||||
adrsDockingAnchordocking = 'Docking / Anchordocking';
|
||||
adrsHeaderStyle = 'Header Style:';
|
||||
|
||||
adrsFlattenHeaders = 'Flatten headers';
|
||||
adrsFlattenHeadersHint = 'Flat headers of docked controls';
|
||||
adrsFilledHeaders = 'Filled headers';
|
||||
adrsFilledHeadersHint = 'Fill headers of docked controls';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -110,6 +110,22 @@ msgstr "Chyba načítání rozvržení oken ze souboru \"%s\"%s%s"
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Chyba zapisování rozvržení oken do souboru \"%s\"%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Obecné volby ukotvení"
|
||||
|
@ -109,6 +109,22 @@ msgstr ""
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Allgemeine Docking-Einstellungen"
|
||||
|
@ -110,6 +110,22 @@ msgstr "Error al cargar el diseño de ventana de archivo \"%s\"%s%s"
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Error al escribir archivo \"%s\"%s%s diseño de ventana"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Opciones generales de acoplamiento"
|
||||
|
@ -113,6 +113,22 @@ msgstr "Errore nel caricamento del layout della finestra dal file \"%s\"%s%s"
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Errore nella scrittura del layout della finestra dal file \"%s\"%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Opzioni generiche di docking"
|
||||
|
@ -113,6 +113,22 @@ msgstr "Iš failo „%s“ nepavyko įkelti lango maketo, nes:%s%s"
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Lango maketo nepavyko įrašyti failan „%s“, nes:%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Pagrindinės pritvirtinimo parinktys"
|
||||
|
@ -101,6 +101,22 @@ msgstr ""
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr ""
|
||||
|
@ -112,6 +112,22 @@ msgstr "Erro ao carregar \"layout\" da janela do arquivo \"%s\"%s%s"
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Erro ao gravar \"layout\" da janela para arquivo \"%s\"%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Opções gerais de ancoragem"
|
||||
|
@ -110,6 +110,22 @@ msgstr "Ошибка загрузки разбивки окна из файла
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Ошибка записи разбивки окна в файл \"%s\"%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Общие параметры стыковки"
|
||||
|
@ -113,6 +113,22 @@ msgstr "Помилка завантаження віконної схеми з
|
||||
msgid "Error writing window layout to file \"%s\"%s%s"
|
||||
msgstr "Помилка запису віконної схеми в файл \"%s\"%s%s"
|
||||
|
||||
#: anchordockstr.adrsfilledheaders
|
||||
msgid "Filled headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsfilledheadershint
|
||||
msgid "Fill headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheaders
|
||||
msgid "Flatten headers"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsflattenheadershint
|
||||
msgid "Flat headers of docked controls"
|
||||
msgstr ""
|
||||
|
||||
#: anchordockstr.adrsgeneraldockingoptions
|
||||
msgid "General docking options"
|
||||
msgstr "Загальні параметри стикування"
|
||||
|
Loading…
Reference in New Issue
Block a user