Skip to content

Commit c56535a

Browse files
committed
Improvements and fixes
1 parent ced7450 commit c56535a

File tree

6 files changed

+141
-111
lines changed

6 files changed

+141
-111
lines changed

README.RU.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[![EN](https://user-images.githubusercontent.com/9499881/33184537-7be87e86-d096-11e7-89bb-f3286f752bc6.png)](https://github.com/r57zone/Firewall-Easy/blob/master/README.md)
22
[![RU](https://user-images.githubusercontent.com/9499881/27683795-5b0fbac6-5cd8-11e7-929c-057833e01fb1.png)](https://github.com/r57zone/Firewall-Easy/blob/master/README.RU.md)
3+
34
# Firewall Easy
45
Приложение позволяет заблокировать доступ в интернет другим приложения, с помощью Брандмауэр Windows.
56

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[![EN](https://user-images.githubusercontent.com/9499881/33184537-7be87e86-d096-11e7-89bb-f3286f752bc6.png)](https://github.com/r57zone/Firewall-Easy/blob/master/README.md)
22
[![RU](https://user-images.githubusercontent.com/9499881/27683795-5b0fbac6-5cd8-11e7-929c-057833e01fb1.png)](https://github.com/r57zone/Firewall-Easy/blob/master/README.RU.md)
3+
– Other languages
4+
35
# Firewall Easy
46
Application allows you to block Internet access to other applications using the Windows Firewall.
57

Source/Languages/English.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[Main]
2+
ID_RULES=Rules
3+
ID_IMPORT=Import
4+
ID_EXPORT=Export
5+
ID_HELP=Help
6+
ID_ABOUT_TITLE=About...
27
ID_APP_NAME=Name
38
ID_APP_PATH=Path
49
ID_SEARCH=Search...
@@ -16,10 +21,5 @@ ID_RULES_SUCCESSFULLY_CREATED=Rules successfully created:
1621
ID_FAILED_CREATE_RULES=Failed to create rules
1722
ID_REMOVED_RULES_FOR_NONEXISTENT_APPS=Removed rules for nonexistent applications:
1823
ID_RULES_FOR_NONEXISTENT_APPS_NOT_FOUND=Rules for nonexistent applications not found
19-
20-
;About
21-
ID_ABOUT_TITLE=About...
2224
ID_LAST_UPDATE=Last update:
23-
24-
;Explorer popup menu
2525
ID_BLOCK_ACCESS=Block access to the Internet

Source/Languages/Russian.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[Main]
2+
ID_RULES=Правила
3+
ID_IMPORT=Импорт
4+
ID_EXPORT=Экспорт
5+
ID_HELP=Справка
6+
ID_ABOUT_TITLE=О программе...
27
ID_APP_NAME=Название
38
ID_APP_PATH=Расположение
49
ID_SEARCH=Поиск...
@@ -16,10 +21,5 @@ ID_RULES_SUCCESSFULLY_CREATED=
1621
ID_FAILED_CREATE_RULES=Не удалось создать правила
1722
ID_REMOVED_RULES_FOR_NONEXISTENT_APPS=Удалено правил для несуществующих приложений:
1823
ID_RULES_FOR_NONEXISTENT_APPS_NOT_FOUND=Правил для несуществующих приложений не найдено
19-
20-
;About
21-
ID_ABOUT_TITLE=О программе...
2224
ID_LAST_UPDATE=Последнее обновление:
23-
24-
;Explorer popup menu
2525
ID_BLOCK_ACCESS=Заблокировать доступ в интернет

Source/Unit1.dfm

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ object Main: TMain
44
BorderIcons = [biSystemMenu, biMinimize]
55
BorderStyle = bsSingle
66
Caption = 'App'
7-
ClientHeight = 320
7+
ClientHeight = 323
88
ClientWidth = 409
99
Color = clBtnFace
1010
Font.Charset = RUSSIAN_CHARSET
1111
Font.Color = clWindowText
1212
Font.Height = -11
1313
Font.Name = 'MS Sans Serif'
1414
Font.Style = []
15+
Menu = MainMenu1
1516
OldCreateOrder = False
1617
Position = poScreenCenter
1718
OnClose = FormClose
@@ -86,7 +87,6 @@ object Main: TMain
8687
ItemHeight = 13
8788
ParentFont = False
8889
ParentShowHint = False
89-
PopupMenu = PopupMenu
9090
ShowHint = True
9191
TabOrder = 0
9292
TabWidth = 100
@@ -133,29 +133,16 @@ object Main: TMain
133133
end
134134
object StatusBar: TStatusBar
135135
Left = 0
136-
Top = 301
136+
Top = 304
137137
Width = 409
138138
Height = 19
139139
Panels = <>
140140
SimplePanel = True
141-
OnClick = StatusBarClick
142141
end
143142
object OpenDialog: TOpenDialog
144143
Filter = '|*.exe'
145-
Left = 16
146-
Top = 32
147-
end
148-
object PopupMenu: TPopupMenu
149144
Left = 48
150145
Top = 32
151-
object ImportBtn: TMenuItem
152-
Caption = #1048#1084#1087#1086#1088#1090
153-
OnClick = ImportBtnClick
154-
end
155-
object ExportBtn: TMenuItem
156-
Caption = #1069#1082#1089#1087#1086#1088#1090
157-
OnClick = ExportBtnClick
158-
end
159146
end
160147
object ImportDialog: TOpenDialog
161148
Filter = 'Firewall Easy|*.fer'
@@ -168,4 +155,26 @@ object Main: TMain
168155
Left = 112
169156
Top = 32
170157
end
158+
object MainMenu1: TMainMenu
159+
Left = 16
160+
Top = 32
161+
object RulesItem: TMenuItem
162+
Caption = #1055#1088#1072#1074#1080#1083#1072
163+
object ImportBtn: TMenuItem
164+
Caption = #1048#1084#1087#1086#1088#1090
165+
OnClick = ImportBtnClick
166+
end
167+
object ExportBtn: TMenuItem
168+
Caption = #1069#1082#1089#1087#1086#1088#1090
169+
OnClick = ExportBtnClick
170+
end
171+
end
172+
object HelpItem: TMenuItem
173+
Caption = #1057#1087#1088#1072#1074#1082#1072
174+
object AboutBtn: TMenuItem
175+
Caption = #1054' '#1087#1088#1086#1075#1088#1072#1084#1084#1077'...'
176+
OnClick = AboutBtnClick
177+
end
178+
end
179+
end
171180
end

0 commit comments

Comments
 (0)