Skip to content

Commit ca0766b

Browse files
authored
Localization (#1)
Added localization
1 parent 50de066 commit ca0766b

File tree

7 files changed

+441
-8
lines changed

7 files changed

+441
-8
lines changed

access-add-in/ACLibImportWizard.accda

60 KB
Binary file not shown.

access-add-in/Install.vbs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
const AddInName = "ACLib-Import-Wizard"
1+
const AddInName = "ACLib Import Wizard"
22
const AddInFileName = "ACLibImportWizard.accda"
33
const MsgBoxTitle = "Install/Update ACLib-Import-Wizard"
44

5-
MsgBox "Vor dem Aktualisieren der Add-In-Datei darf das Add-In nicht geladen sein!" & chr(13) & _
6-
"Zur Sicherheit alle Access-Instanzen schließen.", , MsgBoxTitle & ": Hinweis"
5+
MsgBox "Before updating the add-in file, the add-in must not be loaded!" & chr(13) & _
6+
"Close all access instances for safety.", , MsgBoxTitle & ": Information"
77

8-
Select Case MsgBox("Soll das Add-In als ACCDE verwendet werden?" + chr(13) & _
9-
"(Add-In wird kompiliert ins Add-In-Verzeichnis kopiert.)", 3, MsgBoxTitle)
8+
Select Case MsgBox("Should the add-in be used as ACCDE?" + chr(13) & _
9+
"(The compiled Add-In is copied into the Add-In directory.)", 3, MsgBoxTitle)
1010
case 6 ' vbYes
1111
CreateMde GetSourceFileFullName, GetDestFileFullName
12+
MsgBox "Compiled add-in created"
1213
case 7 ' vbNo
1314
FileCopy GetSourceFileFullName, GetDestFileFullName
15+
MsgBox "Add-In file was copied"
1416
case else
1517

1618
End Select
@@ -59,5 +61,5 @@ Function CreateMde(SourceFilePath, DestFilePath)
5961

6062
Set AccessApp = CreateObject("Access.Application")
6163
AccessApp.SysCmd 603, (SourceFilePath), (DestFilePath)
62-
64+
6365
End Function

source/ACLibImportWizardForm.frm

19.1 KB
Binary file not shown.

source/codelib/_codelib/addins/shared/CodeModuleReader.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Private m_RequiredModules As Collection
6363
Private m_RequiredModulesChecked As Boolean
6464

6565
Private Const ERRNUMBER_CHECKDEPENDENCY_NOTRUN As Long = vbObjectError + 5001
66-
Private Const ERRDESCRIPTION_CHECKDEPENDENCY_NOTRUN As String = "CheckDependency wurde noch nicht ausgeführt"
66+
Private Const ERRDESCRIPTION_CHECKDEPENDENCY_NOTRUN As String = "CheckDependency has not been executed yet"
6767

6868

6969
'---------------------------------------------------------------------------------------

source/codelib/data/dao/TempDbHandler.cls

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Attribute VB_Exposed = False
1111
' Class: data.dao.TempDbHandler
1212
'---------------------------------------------------------------------------------------
1313
'
14-
' Creates and manages an mdb/accdb for temporary tables
14+
' Creates and manages a database file (mdb/accb) for temporary tables
1515
'
1616
' Author:
1717
' Josef Poetzl
@@ -24,6 +24,7 @@ Attribute VB_Exposed = False
2424
' <license>_codelib/license.bas</license>
2525
' <use>data/dao/DaoHandler.cls</use>
2626
' <test>_test/data/dao/TempDbHandlerTests.cls</test>
27+
' <description>Creates and manages an database file for temporary tables</description>
2728
'</codelib>
2829
'---------------------------------------------------------------------------------------
2930
'

0 commit comments

Comments
 (0)