LookupGrid: Translate last string in LookupGrid

This commit is contained in:
Jonathan Jenne
2021-03-02 09:30:47 +01:00
parent d79ffe4aa8
commit deb10b8958
5 changed files with 59 additions and 18 deletions

View File

@@ -64,21 +64,48 @@ Namespace My.Resources
End Set
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Keine Datensätze ausgewählt ähnelt.
'''</summary>
Friend Shared ReadOnly Property LookupControl_NoRecords() As String
Get
Return ResourceManager.GetString("LookupControl_NoRecords", resourceCulture)
End Get
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die {0} Datensätze ausgewählt ähnelt.
'''</summary>
Friend Shared ReadOnly Property LookupControl_NRecords() As String
Get
Return ResourceManager.GetString("LookupControl_NRecords", resourceCulture)
End Get
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Ein Datensatz ausgewählt ähnelt.
'''</summary>
Friend Shared ReadOnly Property LookupControl_OneRecord() As String
Get
Return ResourceManager.GetString("LookupControl_OneRecord", resourceCulture)
End Get
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Bitte wählen Sie einen Wert aus: ähnelt.
'''</summary>
Friend Shared ReadOnly Property FormText() As String
Friend Shared ReadOnly Property PopupForm_Text() As String
Get
Return ResourceManager.GetString("FormText", resourceCulture)
Return ResourceManager.GetString("PopupForm_Text", resourceCulture)
End Get
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Bitte wählen Sie einen oder mehrere Werte aus: ähnelt.
'''</summary>
Friend Shared ReadOnly Property FormTextMultiLine() As String
Friend Shared ReadOnly Property PopupForm_TextMultiLine() As String
Get
Return ResourceManager.GetString("FormTextMultiLine", resourceCulture)
Return ResourceManager.GetString("PopupForm_TextMultiLine", resourceCulture)
End Get
End Property
End Class