0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Emanuele Stoppa 2024-06-10 10:15:55 +00:00 committed by astrobot-houston
parent 75a8fe7e72
commit ad41e1c800
2 changed files with 6 additions and 5 deletions

View file

@ -1200,13 +1200,14 @@ export const i18nNotEnabled = {
* @docs
* @description
* An i18n utility tried to use the locale from a URL path that does not contain one. You can prevent this error by using pathHasLocale to check URLs for a `locale` first before using i18n utilities.
*
*
*/
export const i18nNoLocaleFoundInPath = {
name: 'i18nNoLocaleFoundInPath',
title: 'The path doesn\'t contain any locale',
message: 'You tried to use an i18n utility on a path that doesn\'t contain any locale. You can use \`pathHasLocale\` first to determine if the path has a locale.',
} satisfies ErrorData;
title: "The path doesn't contain any locale",
message:
"You tried to use an i18n utility on a path that doesn't contain any locale. You can use `pathHasLocale` first to determine if the path has a locale.",
} satisfies ErrorData;
/**
* @docs

View file

@ -8,7 +8,7 @@ import type {
} from '../@types/astro.js';
import { shouldAppendForwardSlash } from '../core/build/util.js';
import { REROUTE_DIRECTIVE_HEADER } from '../core/constants.js';
import {i18nNoLocaleFoundInPath, MissingLocale} from '../core/errors/errors-data.js';
import { MissingLocale, i18nNoLocaleFoundInPath } from '../core/errors/errors-data.js';
import { AstroError } from '../core/errors/index.js';
import { createI18nMiddleware } from './middleware.js';
import type { RoutingStrategies } from './utils.js';