Skip to content

Commit

Permalink
chore: rename languages to profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewingWeasel committed Aug 1, 2024
1 parent 7c1dbc3 commit ef459e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ onMounted(async () => {
<PopoverTrigger>
<div class="flex items-center px-2 rounded-md bg-accent">
<Settings2 :size="16" class="mr-1" />
{{ currentLanguage ?? "Select a language" }}
{{ currentLanguage ?? "Select a profile" }}
</div>
</PopoverTrigger>
<PopoverContent class="w-60">
<h4 class="pb-2 font-medium leading-none">Quick Settings</h4>
<Label for="current-language">Current language:</Label>
<Label for="current-language">Current profile:</Label>
<Select
id="current-language"
:modelValue="currentLanguage ?? ''"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/settings/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async function newLanguage(language: string) {
<SettingsMenu v-model="section" section="Stanza" :rightLanguage="true" />
<Collapsible class="px-4" v-model:open="allLanguageMenuOpen">
<div class="flex justify-between items-center">
<h4 class="font-semibold">Languages</h4>
<h4 class="font-semibold">Profiles</h4>
<CollapsibleTrigger as-child>
<Button variant="ghost" size="sm" class="p-0 w-9">
<ChevronDown class="w-4 h-4" />
Expand Down

0 comments on commit ef459e2

Please sign in to comment.