mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 21:15:22 +02:00
docs: fix typos (#1665)
* docs: fix typos * typos: fix typos found by `codespell` across the codebase * docs: fix `macOS` spelling * docs: fix `authentification` terminology "Authentification" is not a thing. * docs: fix `localhost` typo in example link * typos: fix in-code typos These are potentially higher risk, but no other mentions of these typos show up in the codebase.
This commit is contained in:
parent
33dad80eff
commit
2e6b877ba9
46 changed files with 66 additions and 66 deletions
|
@ -14,7 +14,7 @@ const routes = {
|
|||
};
|
||||
|
||||
export class BackupAPI extends BaseAPI {
|
||||
/** Returns a list of avaiable .zip files for import into Mealie.
|
||||
/** Returns a list of available .zip files for import into Mealie.
|
||||
*/
|
||||
async getAll() {
|
||||
return await this.requests.get<AllBackups>(routes.backupsAvailable);
|
||||
|
|
|
@ -8,7 +8,7 @@ const routes = {
|
|||
};
|
||||
|
||||
export class RegisterAPI extends BaseAPI {
|
||||
/** Returns a list of avaiable .zip files for import into Mealie.
|
||||
/** Returns a list of available .zip files for import into Mealie.
|
||||
*/
|
||||
async register(payload: CreateUserRegistration) {
|
||||
return await this.requests.post<any>(routes.register, payload);
|
||||
|
|
|
@ -44,7 +44,7 @@ export default defineComponent({
|
|||
},
|
||||
image: {
|
||||
type: String,
|
||||
requried: false,
|
||||
required: false,
|
||||
default: "",
|
||||
},
|
||||
},
|
||||
|
|
|
@ -56,7 +56,7 @@ export const LOCALES = [
|
|||
progress: 4,
|
||||
},
|
||||
{
|
||||
name: "Português (Portugese)",
|
||||
name: "Português (Portuguese)",
|
||||
value: "pt-PT",
|
||||
progress: 10,
|
||||
},
|
||||
|
|
|
@ -3,7 +3,7 @@ import { useUserApi } from "~/composables/api";
|
|||
import { UserIn, UserOut } from "~/types/api-types/user";
|
||||
|
||||
/*
|
||||
TODO: Potentiall combine useAllUsers and useUser by delaying the get all users functinality
|
||||
TODO: Potentially combine useAllUsers and useUser by delaying the get all users functionality
|
||||
Unsure how this could work but still be clear and functional. Perhaps by passing arguments to the useUsers function
|
||||
to control whether the object is substantiated... but some of the others rely on it being substantiated...Will come back to this.
|
||||
*/
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
<section v-if="group">
|
||||
<BaseCardSectionTitle class="mt-10" title="Default Recipe Preferences">
|
||||
These are the default settings when a new recipe is created in your group. These can be changed for indivdual
|
||||
These are the default settings when a new recipe is created in your group. These can be changed for individual
|
||||
recipes in the recipe settings menu.
|
||||
</BaseCardSectionTitle>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div>
|
||||
<v-card-title class="headline"> Recipe Bulk Importer </v-card-title>
|
||||
<v-card-text>
|
||||
The Bulk recipe importer allows you to import multiple recipes at once by queing the sites on the backend and
|
||||
The Bulk recipe importer allows you to import multiple recipes at once by queueing the sites on the backend and
|
||||
running the task in the background. This can be useful when initially migrating to Mealie, or when you want to
|
||||
import a large number of recipes.
|
||||
</v-card-text>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue