aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb
diff options
context:
space:
mode:
authorEverything Windows <[email protected]>2024-01-18 15:06:39 +0700
committerEverything Windows <[email protected]>2024-01-18 15:06:39 +0700
commit89343f67577f239042df8c1069ed74a9913fa102 (patch)
tree73d68566a6e47a8b72ce0604531a224579effed6 /ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb
parent540a9218830989293f0e5550235742fe3a6cc05e (diff)
downloadshiftos-therevival-old-freeroam-master.tar.gz
shiftos-therevival-old-freeroam-master.tar.bz2
shiftos-therevival-old-freeroam-master.zip
GUI lock, Multilanguage support, BackgroundWork early implementationfreeroam-master
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb7
1 files changed, 6 insertions, 1 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb
index 8b2de41..dbbd541 100644
--- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Ver.vb
@@ -1,5 +1,10 @@
Module Com_Ver
Public Sub Terminal_Version()
- NewLine("ShiftOS TheRevival version " & My.Resources.CurrentVersion)
+ Select Case Strings.OnceInfo(9)
+ Case 1
+ NewLine(My.Resources.lang_en.Console_Ver_FullString & My.Resources.CurrentVersion)
+ Case 2
+ NewLine(My.Resources.lang_id.Console_Ver_FullString & My.Resources.CurrentVersion)
+ End Select
End Sub
End Module