🌐 ags(i18n): add new key control_center.tiles.night_light for the night light tile

This commit is contained in:
retrozinndev
2025-04-14 18:24:51 -03:00
parent 1a6565834f
commit 238289eec5
3 changed files with 12 additions and 0 deletions
+4
View File
@@ -29,6 +29,10 @@ export default {
}, },
dnd: { dnd: {
title: "Do Not Disturb" title: "Do Not Disturb"
},
night_light: {
title: "Night Light",
default_desc: "Fidelity"
} }
} }
}, },
+4
View File
@@ -29,6 +29,10 @@ export default {
}, },
dnd: { dnd: {
title: "Não Perturbe" title: "Não Perturbe"
},
night_light: {
title: "Luz Noturna",
default_desc: "Fidelidade"
} }
} }
}, },
+4
View File
@@ -27,6 +27,10 @@ export type i18nStruct = {
}, },
dnd: { dnd: {
title: string title: string
},
night_light: {
title: string,
default_desc: string
} }
} }
}, },