Update translated strings and contexts

This commit is contained in:
Arjen Hiemstra 2015-09-12 19:58:22 +02:00
parent 0148186c7a
commit 67086b4d9f
9 changed files with 70 additions and 78 deletions

View file

@ -113,23 +113,26 @@ Item
ListModel {
id: infillModel
ListElement {
name: "Sparse"
percentage: 20
text: "Sparse (20%) infill will give your model an average strength"
icon: "sparse"
}
ListElement {
name: "Dense"
percentage: 50
text: "Dense (50%) infill will give your model an above average strength"
icon: "dense"
}
ListElement {
name: "Solid"
percentage: 100;
text: "Solid (100%) infill will make your model completely solid"
icon: "solid"
Component.onCompleted:
{
infillModel.append({
name: catalog.i18nc("@label", "Sparse"),
percentage: 20,
text: catalog.i18nc("@label", "Sparse (20%) infill will give your model an average strength"),
icon: "sparse"
})
infillModel.append({
name: catalog.i18nc("@label", "Dense"),
percentage: 50,
text: catalog.i18nc("@label", "Dense (50%) infill will give your model an above average strength"),
icon: "dense"
})
infillModel.append({
name: catalog.i18nc("@label", "Solid"),
percentage: 100,
text: catalog.i18nc("@label", "Solid (100%) infill will make your model completely solid"),
icon: "solid"
})
}
}
}