jj 21.03.2016 update translations
This commit is contained in:
@@ -310,7 +310,8 @@ Module ClassControlProperties
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
<CategoryAttribute("Kontextmenue")>
|
<LocalizedCategoryAttribute("category_other")>
|
||||||
|
<LocalizedDescriptionAttribute("desc_masterdataid")>
|
||||||
Public Property MasterDataId() As Integer
|
Public Property MasterDataId() As Integer
|
||||||
Get
|
Get
|
||||||
Return _master_data_id
|
Return _master_data_id
|
||||||
@@ -568,7 +569,7 @@ Module ClassControlProperties
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
<LocalizedCategoryAttribute("category_form")>
|
<LocalizedCategoryAttribute("category_form")>
|
||||||
<LocalizedDescriptionAttribute("Gibt die Form-ID der zu öffnenden Form an.")>
|
<LocalizedDescriptionAttribute("desc_formid")>
|
||||||
Public Property FormID() As Integer
|
Public Property FormID() As Integer
|
||||||
Get
|
Get
|
||||||
Return _form_id
|
Return _form_id
|
||||||
@@ -579,7 +580,7 @@ Module ClassControlProperties
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
<LocalizedCategoryAttribute("category_form")>
|
<LocalizedCategoryAttribute("category_form")>
|
||||||
<LocalizedDescriptionAttribute("Gibt die Screen-ID der zu öffnenden Form an.")>
|
<LocalizedDescriptionAttribute("desc_screenid")>
|
||||||
Public Property ScreenID() As Integer
|
Public Property ScreenID() As Integer
|
||||||
Get
|
Get
|
||||||
Return _screen_id
|
Return _screen_id
|
||||||
|
|||||||
@@ -262,6 +262,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Sucht eine lokalisierte Zeichenfolge, die Die Id des Formulars, das über das Kontextmenü geöffnet wird. ähnelt.
|
||||||
|
'''</summary>
|
||||||
|
Friend Shared ReadOnly Property desc_masterdataid() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("desc_masterdataid", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Gibt an, ob das Feld mehrzeilig sein soll. ähnelt.
|
''' Sucht eine lokalisierte Zeichenfolge, die Gibt an, ob das Feld mehrzeilig sein soll. ähnelt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
|
|||||||
@@ -183,6 +183,9 @@
|
|||||||
<data name="desc_location" xml:space="preserve">
|
<data name="desc_location" xml:space="preserve">
|
||||||
<value>The element's location</value>
|
<value>The element's location</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="desc_masterdataid" xml:space="preserve">
|
||||||
|
<value>The Form's Id that will be opened via the contextmenu.</value>
|
||||||
|
</data>
|
||||||
<data name="desc_multiline" xml:space="preserve">
|
<data name="desc_multiline" xml:space="preserve">
|
||||||
<value>Should the element be a multiline field?</value>
|
<value>Should the element be a multiline field?</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -208,7 +211,7 @@
|
|||||||
<value>The element's size</value>
|
<value>The element's size</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="desc_sqlcommand" xml:space="preserve">
|
<data name="desc_sqlcommand" xml:space="preserve">
|
||||||
<value>Gibt die Datenbank-Abfrage für dieses Element an. Es können @RECORD_ID und @FORM_ID als Platzhalter verwendet werden. The database query for this element. @RECORD_ID and @FORM_ID can be used as placeholders. Dynamic values from other controls can be inserted with the Syntax @controlid@.</value>
|
<value>The database query for this element. @RECORD_ID and @FORM_ID can be used as placeholders. Dynamic values from other controls can be inserted with the Syntax @controlid@.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="desc_staticlist" xml:space="preserve">
|
<data name="desc_staticlist" xml:space="preserve">
|
||||||
<value>A list of static values seperated by a semicolon (;)</value>
|
<value>A list of static values seperated by a semicolon (;)</value>
|
||||||
|
|||||||
@@ -183,6 +183,9 @@
|
|||||||
<data name="desc_location" xml:space="preserve">
|
<data name="desc_location" xml:space="preserve">
|
||||||
<value>Gibt die Position des Elements an.</value>
|
<value>Gibt die Position des Elements an.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="desc_masterdataid" xml:space="preserve">
|
||||||
|
<value>Die Id des Formulars, das über das Kontextmenü geöffnet wird.</value>
|
||||||
|
</data>
|
||||||
<data name="desc_multiline" xml:space="preserve">
|
<data name="desc_multiline" xml:space="preserve">
|
||||||
<value>Gibt an, ob das Feld mehrzeilig sein soll.</value>
|
<value>Gibt an, ob das Feld mehrzeilig sein soll.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -260,7 +260,7 @@
|
|||||||
' Aktuelle Control Eigenschaften anzeigen
|
' Aktuelle Control Eigenschaften anzeigen
|
||||||
Me.pgControlProperties.SelectedObject = props
|
Me.pgControlProperties.SelectedObject = props
|
||||||
' Fenster Titel aktualisieren
|
' Fenster Titel aktualisieren
|
||||||
Me.Text = String.Format("Eigenschaften von {0}({1})", type, props.ID.ToString())
|
Me.Text = String.Format("Properties of {0} ({1})", type, props.ID.ToString())
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Error in LoadControlProperties" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
MsgBox("Error in LoadControlProperties" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
||||||
@@ -599,7 +599,7 @@
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
If ClassControlCommands.DeleteControl() = True Then
|
If ClassControlCommands.DeleteControl() = True Then
|
||||||
MsgBox("Element gelöscht, Elemente werden neu geladen.", MsgBoxStyle.Information)
|
'MsgBox("Element gelöscht, Elemente werden neu geladen.", MsgBoxStyle.Information)
|
||||||
CtrlBuilder.ClearControls()
|
CtrlBuilder.ClearControls()
|
||||||
frmLevel_Designer.Instance.LoadControls()
|
frmLevel_Designer.Instance.LoadControls()
|
||||||
End If
|
End If
|
||||||
|
|||||||
Reference in New Issue
Block a user