From 31955b2c3b61a9b4aed6dbe34f2e6ef084311884 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Sun, 23 Mar 2025 10:24:37 -0300 Subject: [PATCH] :globe_with_meridians: ags(i18n/pt_BR): fix incorrect tr key name --- ags/i18n/lang/pt_BR.ts | 4 +- ags/style/_wal.scss | 40 ++++++++++---------- ags/widget/control-center/tiles/Recording.ts | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/ags/i18n/lang/pt_BR.ts b/ags/i18n/lang/pt_BR.ts index ed0841a..13ca29a 100644 --- a/ags/i18n/lang/pt_BR.ts +++ b/ags/i18n/lang/pt_BR.ts @@ -24,8 +24,8 @@ export default { }, recording: { title: "Gravação de Tela", - disabled_description: "Iniciar gravação", - enabled_description: "Parar gravação", + disabled_desc: "Iniciar gravação", + enabled_desc: "Parar gravação", }, dnd: { title: "Não Perturbe" diff --git a/ags/style/_wal.scss b/ags/style/_wal.scss index 1d22737..13a0bff 100644 --- a/ags/style/_wal.scss +++ b/ags/style/_wal.scss @@ -1,26 +1,26 @@ // SCSS Variables // Generated by 'wal' -$wallpaper: "/home/joaov/wallpapers/Garden Kita.png"; +$wallpaper: "/home/joaov/wallpapers/Gumi VOCALOID.png"; // Special -$background: #101212; -$foreground: #c3c3c3; -$cursor: #c3c3c3; +$background: #201002; +$foreground: #c7c3bf; +$cursor: #c7c3bf; // Colors -$color0: #101212; -$color1: #778839; -$color2: #6C965F; -$color3: #B4B350; -$color4: #96A460; -$color5: #658388; -$color6: #B0B493; -$color7: #8e9898; -$color8: #596d6d; -$color9: #a3b757; -$color10: #85c373; -$color11: #c6c67a; -$color12: #b7c67a; -$color13: #6eb7c1; -$color14: #ced59e; -$color15: #c3c3c3; +$color0: #201002; +$color1: #DDA65D; +$color2: #F0BE55; +$color3: #789B8A; +$color4: #A5B397; +$color5: #CEAD95; +$color6: #E7D3A7; +$color7: #98938e; +$color8: #6e635a; +$color9: #d2b997; +$color10: #d4c39d; +$color11: #83c9a7; +$color12: #bad6a0; +$color13: #dbc0ad; +$color14: #e5dbc4; +$color15: #c7c3bf; diff --git a/ags/widget/control-center/tiles/Recording.ts b/ags/widget/control-center/tiles/Recording.ts index 1e88387..19a84e5 100644 --- a/ags/widget/control-center/tiles/Recording.ts +++ b/ags/widget/control-center/tiles/Recording.ts @@ -8,7 +8,7 @@ export const TileRecording = Tile({ description: bind(Recording.getDefault(), "recording").as( (isRecording: boolean) => isRecording ? "Recording {time}" - : tr("control_center.tiles.recording.disabled_description") || "Start recording" + : tr("control_center.tiles.recording.disabled_desc") || "Start recording" ), icon: "󰻂", onToggledOff: () => Recording.getDefault().stopRecording(),