Skip to content

Commit

Permalink
Fix internet()
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Jan 28, 2012
1 parent 501bbd3 commit 93373cc
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
Binary file modified src/i-nex/.gambas/FINFOSYS
Binary file not shown.
Binary file modified src/i-nex/.gambas/SCREENSHOT
Binary file not shown.
14 changes: 9 additions & 5 deletions src/i-nex/.lang/.pot
Original file line number Diff line number Diff line change
Expand Up @@ -558,22 +558,26 @@ msgstr ""
msgid "Other"
msgstr ""

#: ScreenShot.form:27
#: ScreenShot.form:18
msgid "Screen Shot"
msgstr ""

#: ScreenShot.form:29
msgid "Save"
msgstr ""

#: ScreenShot.form:33
#: ScreenShot.form:35
msgid "Cancel"
msgstr ""

#: ScreenShot.form:40
#: ScreenShot.form:42
msgid "File name:"
msgstr ""

#: ScreenShot.form:46
#: ScreenShot.form:48
msgid "Save directory:"
msgstr ""

#: ScreenShot.form:73
#: ScreenShot.form:75
msgid "Picture quality:"
msgstr ""
14 changes: 9 additions & 5 deletions src/i-nex/.lang/ScreenShot.pot
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,27 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ScreenShot.form:27
#: ScreenShot.form:18
msgid "Screen Shot"
msgstr ""

#: ScreenShot.form:29
msgid "Save"
msgstr ""

#: ScreenShot.form:33
#: ScreenShot.form:35
msgid "Cancel"
msgstr ""

#: ScreenShot.form:40
#: ScreenShot.form:42
msgid "File name:"
msgstr ""

#: ScreenShot.form:46
#: ScreenShot.form:48
msgid "Save directory:"
msgstr ""

#: ScreenShot.form:73
#: ScreenShot.form:75
msgid "Picture quality:"
msgstr ""

6 changes: 3 additions & 3 deletions src/i-nex/.src/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,12 @@ Public Sub internet()
Shell "lspci | grep 'Network' | cut -d ':' -f 3 | cut -d '(' -f 1" Wait To network_controller
Shell "lspci | grep 'Ethernet' | cut -d ':' -f 3 | cut -d '(' -f 1" Wait To ethernet_controller
'SHELL "ss -a" WAIT TO ssa
default_web_browser = Replace(default_web_browser, "\n", " ")
network_controller = Replace(network_controller, "\n", " ")
ethernet_controller = Replace(ethernet_controller, "\n", " ")
TextArea46.Text = default_web_browser
TextArea46.Text = Replace(TextArea46.Text, "\n", " ")
TextArea22.Text = network_controller
TextArea22.Text = Replace(TextArea22.Text, "\n", " ")
TextArea23.Text = ethernet_controller
TextArea23.Text = Replace(TextArea23.Text, "\n", " ")
'TextArea48.Text = ssa
End

Expand Down

0 comments on commit 93373cc

Please sign in to comment.