Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
r57zone committed Jun 21, 2021
1 parent c7360d4 commit f5c12ca
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
![](https://user-images.githubusercontent.com/9499881/65176077-1f1c2100-da65-11e9-991a-e3f9b4b69cbe.png)

## Загрузка
>Версия для Windows XP, 7, 8.1, 10.<br>
>Версия для Windows 7, 8.1, 10.<br>
**[Загрузить](https://github.com/r57zone/Snapshots-for-Windows/releases)**

## Обратная связь
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Download app ["Notifications"](https://github.com/r57zone/notifications), unpack
![](https://user-images.githubusercontent.com/9499881/65176051-13c8f580-da65-11e9-8ea1-5c0e671d7e18.png)

## Download
>Version for Windows XP, 7, 8.1, 10.<br>
>Version for Windows 7, 8.1, 10.<br>
**[Download](https://github.com/r57zone/Snapshots-for-Windows/releases)**

## Feedback
Expand Down
5 changes: 4 additions & 1 deletion Source/Languages/English.ini
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ ID_OK=OK
ID_CANCEL=Cancel

;Select window
ID_SELECT_WINDOW_TITLE=Select window
ID_SELECT_WINDOW_TITLE=Select window

; Tray
ID_EXIT=Exit
13 changes: 8 additions & 5 deletions Source/Languages/Russian.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ ID_CAPTURE_AREA_CANCELED=
ID_ABOUT_TITLE=О программе...
ID_LAST_UPDATE=Последнее обновление:

;Capture Area
; Capture Area
ID_CAPTURE_AREA_TITLE=Захват области

;Action
; Action
ID_ACTION_TITLE=Действие

;Settings
; Settings
ID_SETTINGS_TITLE=Настройки
ID_DEFAULT_ACTION=Действие по умолчанию
ID_UPLOAD_AND_SAVE=Загрузить и сохранить
Expand All @@ -46,5 +46,8 @@ ID_SETTINGS_DONE=
ID_OK=ОК
ID_CANCEL=Отмена

;Select window
ID_SELECT_WINDOW_TITLE=Выберите окно
; Select window
ID_SELECT_WINDOW_TITLE=Выберите окно

; Tray
ID_EXIT=Выход
3 changes: 3 additions & 0 deletions Source/Unit1.pas
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ procedure TMain.FormCreate(Sender: TObject);
ID_CANCEL:=Ini.ReadString('Main', 'ID_CANCEL', '');
ID_SELECT_WINDOW_TITLE:=Ini.ReadString('Main', 'ID_SELECT_WINDOW_TITLE', '');

MenuSettingsBtn.Caption:=Ini.ReadString('Main', 'ID_SETTINGS_TITLE', '');
MenuCloseBtn.Caption:=Ini.ReadString('Main', 'ID_EXIT', '');

Ini.Free;

//AreaBtn.ControlState:=[csFocusing];
Expand Down
4 changes: 2 additions & 2 deletions Source/Unit4.pas
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ procedure TSettings.OkBtnClick(Sender: TObject);

procedure TSettings.AboutBtnClick(Sender: TObject);
begin
Application.MessageBox(PChar(Main.Caption + ' 1.3.1' + #13#10 +
ID_LAST_UPDATE + ' 25.12.2020' + #13#10 +
Application.MessageBox(PChar(Main.Caption + ' 1.3.2' + #13#10 +
ID_LAST_UPDATE + ' 21.06.2021' + #13#10 +
'http://r57zone.github.io' + #13#10 + '[email protected]'), PChar(ID_ABOUT_TITLE), MB_ICONINFORMATION);
end;

Expand Down

0 comments on commit f5c12ca

Please sign in to comment.