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

View File

@@ -117,10 +117,19 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="FormText" xml:space="preserve">
<data name="LookupControl_NoRecords" xml:space="preserve">
<value>No records selected</value>
</data>
<data name="LookupControl_NRecords" xml:space="preserve">
<value>{0} records selected</value>
</data>
<data name="LookupControl_OneRecord" xml:space="preserve">
<value>One record selected</value>
</data>
<data name="PopupForm_Text" xml:space="preserve">
<value>Please choose a value:</value>
</data>
<data name="FormTextMultiLine" xml:space="preserve">
<data name="PopupForm_TextMultiLine" xml:space="preserve">
<value>Please choose one or more values:</value>
</data>
</root>

View File

@@ -117,10 +117,19 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="FormText" xml:space="preserve">
<data name="LookupControl_NoRecords" xml:space="preserve">
<value>Keine Datensätze ausgewählt</value>
</data>
<data name="LookupControl_NRecords" xml:space="preserve">
<value>{0} Datensätze ausgewählt</value>
</data>
<data name="LookupControl_OneRecord" xml:space="preserve">
<value>Ein Datensatz ausgewählt</value>
</data>
<data name="PopupForm_Text" xml:space="preserve">
<value>Bitte wählen Sie einen Wert aus:</value>
</data>
<data name="FormTextMultiLine" xml:space="preserve">
<data name="PopupForm_TextMultiLine" xml:space="preserve">
<value>Bitte wählen Sie einen oder mehrere Werte aus:</value>
</data>
</root>