summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6fb9c23)
raw | patch | inline | side by side (parent: 6fb9c23)
author | binarymaster <x86corez@gmail.com> | |
Fri, 29 Sep 2017 16:03:40 +0000 (19:03 +0300) | ||
committer | binarymaster <x86corez@gmail.com> | |
Fri, 29 Sep 2017 16:03:40 +0000 (19:03 +0300) |
http://doom2d.org/forum/viewtopic.php?f=12&t=2351
src/editor/f_main.pas | patch | blob | history | |
src/editor/g_language.pas | patch | blob | history |
diff --git a/src/editor/f_main.pas b/src/editor/f_main.pas
index 2b9ddee5a2a3f6a26c8311f6984b84d4655e3836..8e186cee06aa4e4f8d85c5adc6b3c56b7c1b13c2 100644 (file)
--- a/src/editor/f_main.pas
+++ b/src/editor/f_main.pas
MapName: String;
idx: Integer;
begin
+ SelectMapForm.Caption := _lc[I_CAP_OPEN];
SelectMapForm.GetMaps(FileName);
if (FileName = OpenedWAD) and
if i > 0 then
begin
g_ProcessResourceStr(OpenedMap, @FileName, nil, nil);
+ SelectMapForm.Caption := _lc[I_CAP_SELECT];
SelectMapForm.GetMaps(FileName);
if SelectMapForm.ShowModal() = mrOK then
else if Key = _lc[I_PROP_TR_NEXT_MAP] then
begin // Выбор следующей карты:
g_ProcessResourceStr(OpenedMap, @FileName, nil, nil);
+ SelectMapForm.Caption := _lc[I_CAP_SELECT];
SelectMapForm.GetMaps(FileName);
if SelectMapForm.ShowModal() = mrOK then
MapList := WAD.GetResourcesList('');
+ SelectMapForm.Caption := _lc[I_CAP_REMOVE];
SelectMapForm.lbMapList.Items.Clear();
if MapList <> nil then
index 7e39cd56465c82af69942bd1be86b9fdc81920b4..7bb6fb3764c723810731e03d3c6f1ba9ea0c6b1e 100644 (file)
I_CAP_SAVE,
I_CAP_MINI,
I_CAP_SELECT,
-
+ I_CAP_OPEN,
+ I_CAP_REMOVE,
+
I_CTRL_PROP_KEY,
I_CTRL_PROP_VALUE,
I_CTRL_PANELS,
'Сохранить мини-карту'),
('CAP SELECT', 'Select Map',
'Выберите карту'),
+ ('CAP OPEN', 'Open Map',
+ 'Открыть карту'),
+ ('CAP REMOVE', 'Remove Map',
+ 'Удалить карту'),
('CTRL PROP KEY', 'Property',
'Свойство'),