jj 21.03.2016 update translations

This commit is contained in:
JenneJ
2016-03-21 11:02:15 +01:00
parent 9cda976105
commit b141334661
5 changed files with 22 additions and 6 deletions

View File

@@ -310,7 +310,8 @@ Module ClassControlProperties
End Set
End Property
<CategoryAttribute("Kontextmenue")>
<LocalizedCategoryAttribute("category_other")>
<LocalizedDescriptionAttribute("desc_masterdataid")>
Public Property MasterDataId() As Integer
Get
Return _master_data_id
@@ -568,7 +569,7 @@ Module ClassControlProperties
End Property
<LocalizedCategoryAttribute("category_form")>
<LocalizedDescriptionAttribute("Gibt die Form-ID der zu öffnenden Form an.")>
<LocalizedDescriptionAttribute("desc_formid")>
Public Property FormID() As Integer
Get
Return _form_id
@@ -579,7 +580,7 @@ Module ClassControlProperties
End Property
<LocalizedCategoryAttribute("category_form")>
<LocalizedDescriptionAttribute("Gibt die Screen-ID der zu öffnenden Form an.")>
<LocalizedDescriptionAttribute("desc_screenid")>
Public Property ScreenID() As Integer
Get
Return _screen_id

View File

@@ -262,6 +262,15 @@ Namespace My.Resources
End Get
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>
''' Sucht eine lokalisierte Zeichenfolge, die Gibt an, ob das Feld mehrzeilig sein soll. ähnelt.
'''</summary>

View File

@@ -183,6 +183,9 @@
<data name="desc_location" xml:space="preserve">
<value>The element's location</value>
</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">
<value>Should the element be a multiline field?</value>
</data>
@@ -208,7 +211,7 @@
<value>The element's size</value>
</data>
<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 name="desc_staticlist" xml:space="preserve">
<value>A list of static values seperated by a semicolon (;)</value>

View File

@@ -183,6 +183,9 @@
<data name="desc_location" xml:space="preserve">
<value>Gibt die Position des Elements an.</value>
</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">
<value>Gibt an, ob das Feld mehrzeilig sein soll.</value>
</data>

View File

@@ -260,7 +260,7 @@
' Aktuelle Control Eigenschaften anzeigen
Me.pgControlProperties.SelectedObject = props
' 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
MsgBox("Error in LoadControlProperties" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
@@ -599,7 +599,7 @@
End If
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()
frmLevel_Designer.Instance.LoadControls()
End If