adding more welsh translations

This commit is contained in:
Khalim Conn-Kowlessar 2023-09-08 10:46:52 +03:00
parent 4421f85e52
commit 74a7ae8e96
4 changed files with 11 additions and 2 deletions

View file

@ -74,7 +74,8 @@ class MainheatControlAttributes(Definitions):
}
WELSH_TEXT = {
"rhaglennydd, dim thermostat ystafell": "programmer, no room thermostat"
"rhaglennydd, dim thermostat ystafell": "programmer, no room thermostat",
"rhaglennydd a thermostat ystafell": "programmer and room thermostat"
}
def __init__(self, description: str):

View file

@ -10,6 +10,7 @@ class RoofAttributes(Definitions):
WELSH_TEXT = {
"ar oleddf, dim inswleiddio": "pitched, no insulation",
"ar oleddf, dim inswleiddio (rhagdybiaeth)": "pitched, no insulation (assumed)",
"(annedd arall uwchben)": "(another dwelling above)"
}

View file

@ -136,5 +136,8 @@ mainheat_control_cases = [
'thermostatic_control': 'room thermostat', 'charging_system': None,
'switch_system': "programmer", 'no_control': None,
'dhw_control': None, 'community_heating': None, 'multiple_room_thermostats': False, 'auxiliary_systems': None,
'trvs': None}
'trvs': None},
{'original_description': 'Rhaglennydd a thermostat ystafell', 'thermostatic_control': 'room thermostat',
'charging_system': None, 'switch_system': 'programmer', 'no_control': None, 'dhw_control': None,
'community_heating': None, 'multiple_room_thermostats': False, 'auxiliary_systems': None, 'trvs': None}
]

View file

@ -349,5 +349,9 @@ clean_roof_test_cases = [
'thermal_transmittance_unit': None,
'is_pitched': True, 'is_roof_room': False, 'is_loft': False, 'is_flat': False, 'is_thatched': False,
'is_at_rafters': False, 'is_assumed': False, 'has_dwelling_above': False, 'is_valid': True,
'insulation_thickness': 'none'},
{'original_description': 'Ar oleddf, dim inswleiddio (rhagdybiaeth)', 'thermal_transmittance': None,
'thermal_transmittance_unit': None, 'is_pitched': True, 'is_roof_room': False, 'is_loft': False, 'is_flat': False,
'is_thatched': False, 'is_at_rafters': False, 'is_assumed': True, 'has_dwelling_above': False, 'is_valid': True,
'insulation_thickness': 'none'}
]