1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00

i18n: term overhaul

- Delete ~160-ish useless terms
- Add context to more terms
- Add a mechanism to duplicate the same terms with different contexts
- sync
This commit is contained in:
bbedward
2026-07-16 12:15:20 -04:00
parent 6c45413d7a
commit 3c0f2cbc48
83 changed files with 19570 additions and 20947 deletions
@@ -46,7 +46,8 @@ StyledRect {
}
function updateSingle(plugin) {
if (isUpdating) return;
if (isUpdating)
return;
isUpdating = true;
currentUpdatingPlugin = plugin.name;
@@ -68,7 +69,8 @@ StyledRect {
}
function updateAll() {
if (isUpdating) return;
if (isUpdating)
return;
isUpdating = true;
var list = updatesList.slice();
@@ -149,7 +151,9 @@ StyledRect {
clip: true
Behavior on height {
NumberAnimation { duration: Theme.shortDuration }
NumberAnimation {
duration: Theme.shortDuration
}
}
Row {
@@ -220,7 +224,7 @@ StyledRect {
}
StyledText {
text: modelData.author ? I18n.tr("By %1").arg(modelData.author) : ""
text: modelData.author ? I18n.tr("by %1", "author attribution").arg(modelData.author) : ""
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
elide: Text.ElideRight