export const SITE = { title: 'Documentation', description: 'Your website description.', defaultLanguage: 'en-us', } as const; export const OPEN_GRAPH = { image: { src: 'https://github.com/withastro/astro/blob/main/assets/social/banner-minimal.png?raw=true', alt: 'astro logo on a starry expanse of space,' + ' with a purple saturn-like planet floating in the right foreground', }, twitter: 'astrodotbuild', }; export const KNOWN_LANGUAGES = { English: 'en', } as const; export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES); export const GITHUB_EDIT_URL = `https://github.com/withastro/astro/tree/main/examples/docs`; export const COMMUNITY_INVITE_URL = `https://astro.build/chat`; // See "Algolia" section of the README for more information. export const ALGOLIA = { indexName: 'XXXXXXXXXX', appId: 'XXXXXXXXXX', apiKey: 'XXXXXXXXXX', }; export type Sidebar = Record< (typeof KNOWN_LANGUAGE_CODES)[number], Record >; export const SIDEBAR: Sidebar = { en: { 'Section Header': [ { text: 'Introduction', link: 'en/introduction' }, { text: 'Page 2', link: 'en/page-2' }, { text: 'Page 3', link: 'en/page-3' }, ], 'Another Section': [{ text: 'Page 4', link: 'en/page-4' }], }, }; ion value='main' selected='selected'>main Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-diff/json-diff.e2e.spec.ts (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-05-10feat(i18n): added German translation (#1038)Gravatar steffenrapp 2-0/+456
* feat(i18n): German translation * more * more * more * rest
2024-05-05fix(language): English language cleanup (#1036)Gravatar Christopher Conley 1-45/+45
Fix possessive vs. contraction form of "it," clarification, and some general cleanup
2024-04-29fix(url-encoder, validation): typo in validation of url-encoder.vue #1024Gravatar Pavel Gordon 1-1/+1
2024-04-22fix(integer base converter): support bigint (#872)Gravatar sharevb 2-5/+8
2024-04-15fix(bcrypt tool): allow salt rounds up to 100 (#987)Gravatar sharevb 4-5/+5
* fix(bcrypt tool): allow salt rounds up to 100 Previously max salt rounds was 10 * chore(github workflows): ci and e2e tests: try updating to node 20
2024-03-11feat(new tool): Outlook Safelink Decoder (#911)Gravatar sharevb 5-1/+74
* feat(new tool): Outlook Safelink Decoder Fix #897 * Use native URL parsing Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com> * Update src/tools/safelink-decoder/index.ts --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
2024-03-03feat(new tool): ascii art generator (#886)Gravatar sharevb 6-28/+139
* feat(new tool): ascii art generator Fix #829 ; Text ASCII Art Generator (using figlet) * fix: make fonts list searchable * refactor(ascii-generator): updated tool definition * refactor(ascii-generator): equilibrate ui --------- Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2024-02-12refactor(home): lightened tool cards (#882)Gravatar Corentin THOMASSET 1-53/+16
2024-02-12refactor(home): removed n-grid to prevent layout shift (#881)Gravatar Corentin THOMASSET 1-55/+39
2024-02-11feat(i18n): get locales on build (#880)Gravatar Corentin THOMASSET 478-1143/+1027
2024-02-05feat(i18n): added vi tools translations (#876)Gravatar David Nguyen 79-3/+326
* Update Vietnamese translations in vi.yml file * Add Vietnamese translations for various tools
2024-02-05feat(i18n): added zh tools translations (#874)Gravatar QingFeng 78-0/+323
2024-02-01feat(i18n): added missing locale files in tools (#863)Gravatar Corentin THOMASSET 312-0/+61
2024-02-01feat(i18n): added vietnamese language (#859)Gravatar hieudt-2054 3-2/+74
2024-02-01refactor(i18n): added locales per tool (#861)Gravatar Corentin THOMASSET 154-168/+539
2024-01-31feat(i18n): added spanish language (#854)Gravatar Raúl Mora 2-0/+86
* spanish translation * Create es.yaml