diff --git a/ags/i18n/lang/en_US.ts b/ags/i18n/lang/en_US.ts index 1f948e5..26d2db8 100644 --- a/ags/i18n/lang/en_US.ts +++ b/ags/i18n/lang/en_US.ts @@ -12,12 +12,8 @@ export default { disconnected: "Disconnected", unknown: "Unknown", connecting: "Connecting", + apps: "Applications", - bar: { - apps: { - tooltip: "Applications" - } - }, control_center: { tiles: { enabled: "Enabled", @@ -44,9 +40,13 @@ export default { }, pages: { more_settings: "More settings", - mixer: { - title: "Mixer", - description: "Control per-application volume" + sound: { + title: "Sound", + description: "Configure the audio output" + }, + microphone: { + title: "Microphone", + description: "Configure the audio input" }, night_light: { title: "Night Light", diff --git a/ags/i18n/lang/pt_BR.ts b/ags/i18n/lang/pt_BR.ts index 423359c..16d41d8 100644 --- a/ags/i18n/lang/pt_BR.ts +++ b/ags/i18n/lang/pt_BR.ts @@ -13,11 +13,8 @@ export default { unknown: "Desconhecido", connecting: "Conectando", - bar: { - apps: { - tooltip: "Aplicativos" - } - }, + apps: "Aplicativos", + control_center: { tiles: { enabled: "Ligado", @@ -44,9 +41,13 @@ export default { }, pages: { more_settings: "Mais configurações", - mixer: { - title: "Mixer de Volume", - description: "Controle o volume dos aplicativos" + sound: { + title: "Som", + description: "Controle a saída de áudio" + }, + microphone: { + title: "Microfone", + description: "Configure a entrada de áudio" }, night_light: { title: "Luz Noturna", diff --git a/ags/i18n/struct.ts b/ags/i18n/struct.ts index 4668723..b1fc218 100644 --- a/ags/i18n/struct.ts +++ b/ags/i18n/struct.ts @@ -12,11 +12,8 @@ export type i18nStruct = { devices: string, others: string, - bar: { - apps: { - tooltip: string - } - }, + apps: string; + control_center: { tiles: { enabled: string, @@ -44,7 +41,11 @@ export type i18nStruct = { pages: { more_settings: string, - mixer: { + sound: { + title: string, + description: string + }, + microphone: { title: string, description: string },