├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── README.md ├── index.html ├── lang ├── ar │ ├── ar.ts │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── az │ ├── az.ts │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── de │ ├── contributors.json │ ├── de.ts │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── en │ ├── contributors.json │ ├── docs.json │ ├── en.ts │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── es │ ├── contributors.json │ ├── docs.json │ ├── es.ts │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── fa │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── fa.ts │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── fr │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── fr.ts │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── he │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── he.ts │ ├── home.json │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── id │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── id.ts │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── it │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── it.ts │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── ja │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── ja.ts │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── ko-kr │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── ko-kr.ts │ ├── media.json │ ├── resources.json │ └── tutorial.json ├── pl │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── pl.ts │ ├── resources.json │ └── tutorial.json ├── pt │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── pt.ts │ ├── resources.json │ └── tutorial.json ├── ru │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── ru.ts │ └── tutorial.json ├── tl │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── tl.ts │ └── tutorial.json ├── tr │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── tr.ts │ └── tutorial.json ├── uk │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── tutorial.json │ └── uk.ts ├── zh-cn │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── tutorial.json │ └── zh-cn.ts └── zh-tw │ ├── contributors.json │ ├── docs.json │ ├── examples.json │ ├── global.json │ ├── home.json │ ├── media.json │ ├── resources.json │ ├── tutorial.json │ └── zh-tw.ts ├── package.json ├── patches └── monaco-editor@0.47.0.patch ├── pnpm-lock.yaml ├── postcss.config.cjs ├── postoptimize.mjs ├── public ├── examples │ ├── asyncresource.json │ ├── clock.json │ ├── context.json │ ├── counter.json │ ├── counterstore.json │ ├── cssanimations.json │ ├── ethasketch.json │ ├── forms.json │ ├── routing.json │ ├── scoreboard.json │ ├── simpletodos.json │ ├── simpletodoshyperscript.json │ ├── styledjsx.json │ ├── suspensetabs.json │ └── todos.json ├── img │ ├── award-badge.svg │ ├── bios │ │ ├── alexandre-mouton-brady.jpeg │ │ ├── alexis-munsayac.jpeg │ │ ├── dan-jutan.jpeg │ │ ├── david-dibiase.jpeg │ │ ├── dev-agrawal.jpeg │ │ ├── milo-m.svg │ │ ├── nikhil-saraf.jpeg │ │ ├── ryan-carniato.jpeg │ │ └── ryan-turnquist.jpeg │ ├── blog │ │ ├── chrome-supports-solidjs │ │ │ ├── devto-article-image.png │ │ │ └── header.png │ │ ├── introducing-solidstart │ │ │ ├── header.png │ │ │ └── routes.jpeg │ │ ├── solid-fellowships-announcement │ │ │ └── header.png │ │ ├── solid-start-the-shape-frameworks-to-come │ │ │ ├── header.jpeg │ │ │ ├── routes-tree.png │ │ │ └── single-flight.png │ │ ├── solidhack-2024-announcement │ │ │ ├── header.jpeg │ │ │ ├── netlify.svg │ │ │ └── sentry.svg │ │ ├── state-of-solid-december-2021 │ │ │ ├── header.png │ │ │ └── solidhack.png │ │ ├── state-of-solid-july-2022 │ │ │ ├── community-stats.png │ │ │ ├── community-teams.png │ │ │ ├── github-star-chart.png │ │ │ ├── header.png │ │ │ ├── june-july-meetup.png │ │ │ ├── npm-downloads.png │ │ │ ├── osawards-breakthrough.jpeg │ │ │ ├── ryan-netlify.jpeg │ │ │ ├── solid-jetbrains-sponsor.jpg │ │ │ └── team-nikhil.png │ │ ├── state-of-solid-march-2022 │ │ │ ├── backlight.png │ │ │ ├── header.png │ │ │ ├── star-history.png │ │ │ ├── state-of-js.png │ │ │ └── vercel.png │ │ ├── state-of-solid-september-2021 │ │ │ └── header.png │ │ └── welcome-to-the-solid-blog │ │ │ └── header.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ └── mstile-150x150.png │ ├── hack.svg │ ├── icons │ │ ├── translate.svg │ │ └── translate2.svg │ └── logo │ │ ├── dark-with-wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ ├── logo.png │ │ └── logo.svg │ │ ├── dark-without-wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ └── logo.svg │ │ ├── dark-wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ ├── logo.png │ │ └── logo.svg │ │ ├── with-wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ ├── logo.png │ │ └── logo.svg │ │ ├── without-wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ ├── logo.png │ │ └── logo.svg │ │ └── wordmark │ │ ├── logo.bmp │ │ ├── logo.eps │ │ ├── logo.jpg │ │ ├── logo.pdf │ │ ├── logo.png │ │ └── logo.svg ├── og.jpg ├── robots.txt ├── sitemap.xml └── sw.js ├── scripts └── generateSitemap.js ├── src ├── App.tsx ├── AppContext.tsx ├── assets │ ├── discord.svg │ ├── download-arrow.svg │ ├── fonts │ │ └── Gordita │ │ │ ├── Gordita-Black-Italic.otf │ │ │ ├── Gordita-Black-Italic.woff │ │ │ ├── Gordita-Black-Italic.woff2 │ │ │ ├── Gordita-Black.otf │ │ │ ├── Gordita-Black.woff │ │ │ ├── Gordita-Black.woff2 │ │ │ ├── Gordita-Bold-Italic.woff │ │ │ ├── Gordita-Bold-italic.otf │ │ │ ├── Gordita-Bold-italic.woff2 │ │ │ ├── Gordita-Bold.eot │ │ │ ├── Gordita-Bold.otf │ │ │ ├── Gordita-Bold.ttf │ │ │ ├── Gordita-Bold.woff │ │ │ ├── Gordita-Bold.woff2 │ │ │ ├── Gordita-Light-Italic.otf │ │ │ ├── Gordita-Light-Italic.woff │ │ │ ├── Gordita-Light-Italic.woff2 │ │ │ ├── Gordita-Light.otf │ │ │ ├── Gordita-Light.woff │ │ │ ├── Gordita-Light.woff2 │ │ │ ├── Gordita-Medium-Italic.otf │ │ │ ├── Gordita-Medium-Italic.woff │ │ │ ├── Gordita-Medium-Italic.woff2 │ │ │ ├── Gordita-Medium.eot │ │ │ ├── Gordita-Medium.otf │ │ │ ├── Gordita-Medium.ttf │ │ │ ├── Gordita-Medium.woff │ │ │ ├── Gordita-Medium.woff2 │ │ │ ├── Gordita-Regular-Italic.otf │ │ │ ├── Gordita-Regular-Italic.woff │ │ │ ├── Gordita-Regular-Italic.woff2 │ │ │ ├── Gordita-Regular.eot │ │ │ ├── Gordita-Regular.otf │ │ │ ├── Gordita-Regular.ttf │ │ │ ├── Gordita-Regular.woff │ │ │ ├── Gordita-Regular.woff2 │ │ │ ├── Gordita-Thin-Italic.otf │ │ │ ├── Gordita-Thin-Italic.woff │ │ │ ├── Gordita-Thin-Italic.woff2 │ │ │ ├── Gordita-Thin.eot │ │ │ ├── Gordita-Thin.otf │ │ │ ├── Gordita-Thin.ttf │ │ │ ├── Gordita-Thin.woff │ │ │ ├── Gordita-Thin.woff2 │ │ │ ├── Gordita-Ultra-Italic.otf │ │ │ ├── Gordita-Ultra-Italic.woff │ │ │ ├── Gordita-Ultra-Italic.woff2 │ │ │ ├── Gordita-Ultra.otf │ │ │ ├── Gordita-Ultra.woff │ │ │ └── Gordita-Ultra.woff2 │ ├── for-ukraine.png │ ├── github.svg │ ├── hljs.css │ ├── icons │ │ ├── blocks1.svg │ │ ├── blocks2.svg │ │ ├── dark-light.svg │ │ ├── flag.svg │ │ ├── performant.svg │ │ ├── powerful.svg │ │ ├── pragmatic.svg │ │ ├── productive.svg │ │ └── sandbox.svg │ ├── jetbrains.webp │ ├── logo.png │ ├── logo.svg │ ├── main.css │ ├── manifest.json │ ├── reddit.svg │ ├── shapes │ │ ├── blocks1-dark.svg │ │ ├── blocks1.svg │ │ ├── blocks2.svg │ │ ├── blocks3.svg │ │ ├── header.svg │ │ └── solid-bg.png │ ├── supporters │ │ ├── 402.png │ │ ├── builder-colour.png │ │ ├── builder-original.png │ │ ├── builder.webp │ │ ├── cloudflare-original.png │ │ ├── cloudflare.webp │ │ ├── divriots-original.png │ │ ├── divriots.webp │ │ ├── jetbrains.png │ │ ├── jetbrains.webp │ │ ├── netlify-original.png │ │ ├── netlify.webp │ │ ├── saucelabs-original.png │ │ ├── saucelabs.webp │ │ ├── stytch.png │ │ ├── stytch.webp │ │ ├── vercel-original.png │ │ └── vercel.webp │ ├── wordmark-dark.svg │ └── wordmark.svg ├── components │ ├── Benchmarks.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── LoadingBar │ │ └── PageLoadingBar.tsx │ ├── Nav │ │ ├── LanguageSelector.tsx │ │ ├── MenuLink.tsx │ │ ├── ModeToggle.tsx │ │ └── index.tsx │ ├── Newsletter.tsx │ ├── ReplTab.tsx │ ├── ScrollShadow │ │ └── ScrollShadow.tsx │ ├── Social.tsx │ ├── layout │ │ └── SideContent.tsx │ └── setupRepl.ts ├── main.tsx ├── pages │ ├── 404.tsx │ ├── Articles │ │ ├── chrome-supports-solidjs.mdx │ │ ├── introducing-solidstart.mdx │ │ ├── solid-fellowships-announcement.mdx │ │ ├── solid-start-the-shape-frameworks-to-come.mdx │ │ ├── solidhack-2024-announcement.mdx │ │ ├── state-of-solid-december-2021.mdx │ │ ├── state-of-solid-july-2022.mdx │ │ ├── state-of-solid-march-2022.mdx │ │ ├── state-of-solid-september-2021.mdx │ │ └── welcome-to-the-solid-blog.mdx │ ├── Benchmarks.data.ts │ ├── Blog.data.ts │ ├── Blog.tsx │ ├── BlogArticle.data.ts │ ├── BlogArticle.tsx │ ├── Contributors.data.ts │ ├── Contributors.tsx │ ├── Docs.data.ts │ ├── Docs.tsx │ ├── Examples.data.ts │ ├── Examples.tsx │ ├── Guide.data.ts │ ├── Home.tsx │ ├── Media.tsx │ ├── Packages.data.ts │ ├── Packages.tsx │ ├── Resources.data.ts │ ├── Resources.tsx │ ├── Resources │ │ ├── Articles.data.ts │ │ ├── Ecosystem.ts │ │ ├── Podcasts.data.ts │ │ ├── Utilities.data.ts │ │ └── Videos.data.ts │ ├── Store.data.ts │ ├── Store.tsx │ ├── Tutorial.data.ts │ └── Tutorial.tsx ├── routes.ts ├── types.d.ts ├── utils │ ├── index.ts │ ├── navLogoTransitions.ts │ ├── parseKeyword.ts │ ├── preventSmoothScrollOnTabbing.ts │ ├── reflow.ts │ ├── rememberSearch.ts │ ├── routeReadyState.tsx │ └── shopify.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── vite.config.ts ├── workers-site ├── .gitignore ├── index.js ├── package-lock.json ├── package.json └── yarn.lock └── wrangler.toml /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset = utf-8 3 | end_of_line = lf 4 | indent_style = space 5 | indent_size = 2 6 | insert_final_newline = true 7 | trim_trailing_whitespace = true 8 | max_line_length = 80 9 | 10 | [*.{md,mdx}] 11 | max_line_length=off 12 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # This will be used in the scripts/fetchReleases.ts 2 | # to fetch the documentation and transform it to json files 3 | GITHUB_TOKEN= -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.cjs 2 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: '@typescript-eslint/parser', 4 | parserOptions: { 5 | tsconfigRootDir: __dirname, 6 | project: ['./tsconfig.json'], 7 | }, 8 | plugins: ['@typescript-eslint'], 9 | extends: [ 10 | 'eslint:recommended', 11 | 'plugin:@typescript-eslint/recommended', 12 | 'plugin:@typescript-eslint/recommended-requiring-type-checking', 13 | ], 14 | rules: { 15 | '@typescript-eslint/no-non-null-assertion': 'off', 16 | '@typescript-eslint/no-unsafe-assignment': 'off', 17 | }, 18 | }; 19 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "printWidth": 100, 4 | "trailingComma": "all" 5 | } 6 | -------------------------------------------------------------------------------- /lang/ar/ar.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/ar/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "الفريق و المساهمات", 3 | "core_team": "الفريق الأساسي", 4 | "acknowledgments": "شكر وتقدير", 5 | "ecosystem_team": "فريق النظام البيئي", 6 | "copy": "لن تكون Solid ممكنًا بدون مساعدة الأفراد الموهوبين الآخرين. مع تقدمنا في النمو ، نأمل أن يجد الآخرون طرقًا لإعطاء وقتهم إما في شكل الإبلاغ عن الأخطاء وطلبات السحب واقتراحات التصميم والكتابة والعديد من الطرق الأخرى.", 7 | "translators_copy": "لقد بذل الأفراد التالية أسماؤهم وقتهم وجهدهم من أجل ضمان أن تصبح Solid عالمية:", 8 | "contributors": "المساهمون", 9 | "open_collective": "الجماعية المفتوحة", 10 | "support_copy": "ادعمنا بالتبرع وساعدنا على مواصلة أنشطتنا:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/ar/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "التوثيق" 3 | } 4 | -------------------------------------------------------------------------------- /lang/ar/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "مثال مكتبة", 3 | "basic": "أساسي", 4 | "complex": "معقد" 5 | } 6 | -------------------------------------------------------------------------------- /lang/ar/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "أصول الوسائط", 3 | "copy": "فيما يلي الأصول التي تمثل علامة Solid التجارية. تعتبر جميع الأصول مساهمات مفتوحة المصدر ويجب استخدامها وفقًا للمعايير المفتوحة وقواعد الترخيص. للحصول على أصول أو أسئلة إضافية تتعلق بمحاذاة العلامة التجارية ، لا تتردد في الانضمام إلى سيرفر Discord للحصول على الدعم والتوجيه.", 4 | "brand_font": "خط العلامة التجارية", 5 | "primary": "اللون الأصلي", 6 | "secondary": "اللون الثانوي", 7 | "light": "اللون الفاتح", 8 | "accent": "اللون التمييز", 9 | "copy_hex": "انقر فوق اللون لنسخه كقيمة ستة عشرية.", 10 | "resources": { 11 | "with_wordmark": "مع العلامة نصية", 12 | "without_wordmark": "بدون العلامة نصية", 13 | "only_wordmark": "فقط العلامة نصية", 14 | "dark_with_wordmark": "مع علامة نصية داكنة", 15 | "dark_without_wordmark": "بدون علامة نصية داكنة", 16 | "dark_only_wordmark": "فقط علامة نصية داكنة" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/ar/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "النظام البيئي", 3 | "cta": "لإدراج مشروعك المتعلق بـ SolidJS هنا ، تواصل معنا على Discord .", 4 | "search": "موارد البحث", 5 | "types": "الأنواع", 6 | "types_list": { 7 | "article": "مقالة", 8 | "video": "فيديو", 9 | "library": "مكتبة", 10 | "package": "باقة" 11 | }, 12 | "published": "نشرت في", 13 | "days_ago": "{{amount}} أيام مضت", 14 | "hours_ago": "{{amount}} ساعات مضت", 15 | "categories": "التصنيفات", 16 | "translations": "الترجمات", 17 | "categories_list": { 18 | "primitive": "الأساسيات (Primitives)", 19 | "router": "الراوتات (Routers)", 20 | "data": "البيانات (Data)", 21 | "ui": "الواجهات (UI)", 22 | "plugin": "الإضافات (Plugins)", 23 | "starters": "البدائيات (Starters)", 24 | "build_utility": "خدمات البناء (Build Utilities)", 25 | "add_on": "الإضافات (Add On)", 26 | "testing": "الاختبارات (Testing)", 27 | "educational": "التعليميات (Educational)" 28 | }, 29 | "official": "رسمية", 30 | "by": "بواسطة {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/ar/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "حل", 3 | "reset": "إعادة ضبط", 4 | "playground": { 5 | "result": "النتيجة", 6 | "output": "الناتج", 7 | "clear": "تفريغ", 8 | "add_tab": "إضافة تبويبة جديدة", 9 | "refresh": "تحديث الصفحة", 10 | "format": "تنسيق التعليمات البرمجية", 11 | "copy": "نسخ كود المصدر", 12 | "mode": "وضع الترجمة", 13 | "client_render": "التصيير من جانب العميل", 14 | "server_render": "التصيير من جانب الخادم", 15 | "client_hydration_render": "التصيير من جانب العميل مع الترطيب", 16 | "dark_mode": "تبديل الوضع الداكن", 17 | "import_json": "استيراد JSON", 18 | "export_json": "تصدير JSON", 19 | "export_codesandbox": "تصدير إلى CodeSandBox", 20 | "share": "شارك برابط مصغر", 21 | "scale": "محرر مقياس لجعل النص أكبر أو أصغر" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/az/az.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/az/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Komanda və Töhfələr", 3 | "core_team": "Əsas Komanda", 4 | "acknowledgments": "Təşşəkürlər", 5 | "ecosystem_team": "Ekosistem Qrupu", 6 | "internationalization": "Tərcümələr", 7 | "copy": "Solid digər istedadlı şəxslərin köməyi olmadan mümkün olmazdı. Biz böyüdükcə ümid edirik ki, yeni şəxslər dizayn təklifləri, səhvlərin həlli, çəkmək təklifləri, yazılar və bir çox başqa yollarla vaxtlarını ayırmağın yollarını tapacaqlar.", 8 | "translators_copy": "Aşağıdakı şəxslər Solid-in beynəlxalq səviyyəyə çıxmasını təmin etmək üçün öz vaxtlarını və səylərini nəzakətlə sərf etdilər:", 9 | "contributors": "Töhfəçilər", 10 | "open_collective": "Açıq Kollektiv", 11 | "support_copy": "Bizi ianə ilə dəstəkləyin və fəaliyyətimizi davam etdirməyimizə kömək edin:" 12 | } -------------------------------------------------------------------------------- /lang/az/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dokumentasiya" 3 | } -------------------------------------------------------------------------------- /lang/az/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Nümunələr Kitabxanası", 3 | "basic": "Əsas", 4 | "complex": "Mürəkkəb" 5 | } -------------------------------------------------------------------------------- /lang/az/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Brend", 3 | "copy": "Aşağıdakılar Solid brendini təmsil edən atributlardır. Bütün atributlar açıq mənbəli töhfələr hesab olunur və açıq standartlara və lisenziyalaşdırma qaydalarına uyğun olaraq istifadə edilməlidir. Brend uyğunlaşması ilə bağlı əlavə aktivlər və ya sual, dəstək və rəhbərlik üçün Discordumuza qoşula bilərsiz.", 4 | "brand_font": "Brend Şrifti", 5 | "primary": "Əsas Rəng", 6 | "secondary": "İkinci Rəng", 7 | "light": "Açıq Rəng", 8 | "accent": "Vurğu Rəngi", 9 | "copy_hex": "Hex üçün rəngə klikləyin", 10 | "resources": { 11 | "with_wordmark": "Yazı ilə", 12 | "dark_with_wordmark": "Yazı ilə (tünd)", 13 | "without_wordmark": "Yazısız", 14 | "dark_without_wordmark": "Yazısız (tünd)", 15 | "only_wordmark": "Sadəcə yazı", 16 | "dark_only_wordmark": "Sadəcə yazı (tünd)" 17 | } 18 | } -------------------------------------------------------------------------------- /lang/az/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ekosistem", 3 | "cta": "SolidJS ilə əlaqəli layihənizin burada sadalanması üçün Discord-da bizimlə əlaqə saxlayın.", 4 | "search": "Axtarış", 5 | "types": "Növlər", 6 | "types_list": { 7 | "article": "Məqalə", 8 | "video": "Video", 9 | "library": "Kitabxana", 10 | "package": "Paket" 11 | }, 12 | "published": "Published", 13 | "days_ago": "{{amount}} gün əvvəl", 14 | "hours_ago": "{{amount}} saat əvvəl", 15 | "categories": "Kategoriyalar", 16 | "translations": "Tərcümələr", 17 | "categories_list": { 18 | "primitive": "Primitivlər", 19 | "router": "Marşrutlaşdırıcılar", 20 | "data": "Məlumat", 21 | "ui": "İnterfeys", 22 | "plugin": "Plaginlər", 23 | "starters": "Starterlər", 24 | "build_utility": "Quraşdırma", 25 | "add_on": "Əlavələr", 26 | "testing": "Testləşdirmə", 27 | "educational": "Təhsil" 28 | }, 29 | "official": "Rəsmi", 30 | "by": "By {{author}}" 31 | } -------------------------------------------------------------------------------- /lang/az/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Həll et", 3 | "reset": "Sifirla", 4 | "playground": { 5 | "result": "Nəticə", 6 | "output": "Çıxış", 7 | "clear": "Təmizlə", 8 | "add_tab": "Yeni təb əlavə et", 9 | "refresh": "Səhifəni yenilə", 10 | "format": "Kodu format et", 11 | "copy": "Kodu kopyala", 12 | "mode": "Kompilyasiya rejimi", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering with hydration", 16 | "dark_mode": "Rejimi dəyişdir", 17 | "import_json": "JSON idxalı", 18 | "export_json": "JSON ixracı", 19 | "export_codesandbox": "CodeSandBox ixracı", 20 | "share": "Link ilə paylaş", 21 | "scale": "Hərifləri böyük və ya kiçik et" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/de/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Team & Mitwirkung", 3 | "core_team": "Kern-Team", 4 | "acknowledgments": "Danksagungen", 5 | "ecosystem_team": "Ökosystem-Team", 6 | "copy": "Solid wäre nicht möglich ohne die Hilfe anderer talentierter Individuen. Während wir wachsen, hoffen wir, dass andere ihre Zeit beisteuern in der Form von Bug-Meldungen, Pull Requests, Designvorschlägen, Dokumentation und vielen anderen.", 7 | "translators_copy": "Die folgenden Individuen haben großzügig Zeit und Aufwand beigesteuert, um sicherzustellen, dass Solid international wird:", 8 | "contributors": "Mitwirkende", 9 | "open_collective": "Offenes Kollektiv", 10 | "support_copy": "Unterstütze uns mit einer Spende und helfe uns, unsere Aktivitäten fortzusetzen:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/de/de.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/de/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dokumentation" 3 | } 4 | -------------------------------------------------------------------------------- /lang/de/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Beispiele", 3 | "basic": "Einfach", 4 | "complex": "Komplex" 5 | } 6 | -------------------------------------------------------------------------------- /lang/de/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Deutsch", 3 | "locale": "de-DE", 4 | "nav": [ 5 | { 6 | "title": "Loslegen", 7 | "path": "/guides" 8 | }, 9 | { 10 | "title": "Anleitung", 11 | "path": "/tutorial" 12 | }, 13 | { 14 | "title": "API", 15 | "path": "/docs/latest/api" 16 | }, 17 | { 18 | "title": "SolidStart", 19 | "path": "https://start.solidjs.com", 20 | "external": true 21 | }, 22 | { 23 | "title": "Ökosystem", 24 | "path": "/ecosystem" 25 | }, 26 | { 27 | "title": "Beispiele", 28 | "path": "/examples" 29 | }, 30 | { 31 | "title": "Spielwiese", 32 | "path": "https://playground.solidjs.com", 33 | "external": true 34 | }, 35 | { 36 | "title": "Blog", 37 | "path": "/blog" 38 | }, 39 | { 40 | "title": "Medien", 41 | "path": "/media" 42 | } 43 | ], 44 | "404": { 45 | "header": "Na sowas. Vier Null Vier.", 46 | "body": "glaubt, diese Seite existiert bestimmt nicht." 47 | }, 48 | "footer": { 49 | "declaration": "Solid ist ein Open-Source-Project, das von einem Team von öffentlichen Mitwirkenden unterstützt wird. Es wird unter einer MIT-Lizenz veröffentlicht. Diese Library und Gemeinschaft sind möglich dank unserem Kern-Team und treuen Mitwirkenden.", 50 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 51 | "contributors": "/contributors", 52 | "sponsored_by": "Gesponsert von", 53 | "updated": "Letztes Update am {{date}} auf Solid v{{version}}" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /lang/de/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Medien", 3 | "copy": "Die folgenden Medien repräsentieren die Marke Solid. Alle Dateien sind Open-Source und sollten gemäß offener Standards und Lizenzbestimmungen eingesetzt werden. Für zusätzliche Medien oder Fragen zu der Markenorientierung wende man sich an unseren Discord für Unterstützung und Hilfe.", 4 | "brand_font": "Markenschrift", 5 | "primary": "Primärfarbe", 6 | "secondary": "Sekundärfarbe", 7 | "light": "Helle Farbe", 8 | "accent": "Akzentfarbe", 9 | "resources": { 10 | "with_wordmark": "Mit Schrift", 11 | "without_wordmark": "Ohne Schrift", 12 | "only_wordmark": "Nur Schrift", 13 | "dark_with_wordmark": "Dunkel mit Schrift", 14 | "dark_without_wordmark": "Dunkel ohne Schrift", 15 | "dark_only_wordmark": "Dunkel nur Schrift" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lang/de/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ökosystem", 3 | "cta": "Um dein Projekt mit Bezug zu SolidJS hier aufzunehmen, kontaktiere uns auf Discord.", 4 | "search": "Ressourcen suchen", 5 | "types": "Typen", 6 | "types_list": { 7 | "article": "Artikel", 8 | "video": "Video", 9 | "library": "Library", 10 | "package": "Paket" 11 | }, 12 | "published": "Veröffentlicht am", 13 | "days_ago": "vor {{amount}} Tagen", 14 | "hours_ago": "vor {{amount}} Stunden", 15 | "categories": "Kategorien", 16 | "translations": "Übersetzungen", 17 | "categories_list": { 18 | "primitive": "Primitiven", 19 | "router": "Router", 20 | "data": "Daten", 21 | "ui": "UI", 22 | "plugin": "Plugins", 23 | "starters": "Starter", 24 | "build_utility": "Build-Werkzeuge", 25 | "add_on": "Add On", 26 | "testing": "Testen", 27 | "educational": "Lehrreiches" 28 | }, 29 | "official": "Offiziell", 30 | "by": "Von {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/de/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Lösen", 3 | "reset": "Zurücksetzen", 4 | "playground": { 5 | "result": "Ergebnis", 6 | "output": "Ausgabe", 7 | "clear": "Löschen", 8 | "add_tab": "Neuen Tab hinzufügen", 9 | "refresh": "Seite aktualisieren", 10 | "format": "Autoformatierung", 11 | "copy": "Quelltext kopieren", 12 | "mode": "Kompilierungsmodus", 13 | "client_render": "Client-seitiges Rendering", 14 | "server_render": "Server-seitiges Rendering", 15 | "client_hydration_render": "Client-seitiges Rendering mit Hydration", 16 | "dark_mode": "Dunkelmodus umschalten", 17 | "import_json": "Importiere JSON", 18 | "export_json": "Exportiere JSON", 19 | "export_codesandbox": "Exportiere nach CodeSandBox", 20 | "share": "Mit einem kurzen Link teilen", 21 | "scale": "Editor skalieren, um den Text größer oder kleiner zu machen" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/en/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Team & Contributions", 3 | "core_team": "Core Team", 4 | "acknowledgments": "Acknowledgments", 5 | "ecosystem_team": "Ecosystem Team", 6 | "internationalization": "Internationalization", 7 | "copy": "Solid wouldn't be possible without the help of other talented individuals. As we grow we hope others will find ways to give their time either in the form of bug reporting, pull requests, design suggestions, writing and many other ways.", 8 | "translators_copy": "The following individuals have graciously given their time and effort to ensure Solid goes international:", 9 | "contributors": "Contributors", 10 | "open_collective": "Open Collective", 11 | "support_copy": "Support us with a donation and help us continue our activities:" 12 | } 13 | -------------------------------------------------------------------------------- /lang/en/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Documentation" 3 | } -------------------------------------------------------------------------------- /lang/en/en.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/en/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Example Library", 3 | "basic": "Basic", 4 | "complex": "Complex" 5 | } -------------------------------------------------------------------------------- /lang/en/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Media Assets", 3 | "copy": "The following are assets that represent the Solid brand. All assets are considered open-source contributions and should be used according to open standards and licensing rules. For additional assets or questions pertaining to brand alignment, feel free to join our Discord for support and guidance.", 4 | "brand_font": "Brand Font", 5 | "primary": "Primary Color", 6 | "secondary": "Secondary Color", 7 | "light": "Light Color", 8 | "accent": "Accent Color", 9 | "second_accent": "Second Accent Color", 10 | "copy_hex": "Click the color to copy the hex.", 11 | "resources": { 12 | "with_wordmark": "With Wordmark", 13 | "without_wordmark": "Without Wordmark", 14 | "only_wordmark": "Only Wordmark", 15 | "dark_with_wordmark": "Dark With Wordmark", 16 | "dark_without_wordmark": "Dark Without Wordmark", 17 | "dark_only_wordmark": "Only Dark Wordmark" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lang/en/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ecosystem", 3 | "cta": "To have your SolidJS related project listed here reach out to us on Discord.", 4 | "search": "Search resources", 5 | "types": "Types", 6 | "types_list": { 7 | "article": "Article", 8 | "video": "Video", 9 | "library": "Library", 10 | "package": "Package", 11 | "podcast": "Podcast" 12 | }, 13 | "published": "Published", 14 | "days_ago": "{{amount}} days ago", 15 | "hours_ago": "{{amount}} hours ago", 16 | "categories": "Categories", 17 | "translations": "Translations", 18 | "categories_list": { 19 | "primitive": "Primitives", 20 | "router": "Routers", 21 | "data": "Data", 22 | "data_visualization": "Data Visualization", 23 | "ui": "UI", 24 | "plugin": "Plugins", 25 | "starters": "Starters", 26 | "build_utility": "Build Utilities", 27 | "add_on": "Add On", 28 | "testing": "Testing", 29 | "educational": "Educational" 30 | }, 31 | "official": "Official", 32 | "by": "By {{author}}" 33 | } 34 | -------------------------------------------------------------------------------- /lang/en/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Solve", 3 | "reset": "Reset", 4 | "playground": { 5 | "result": "Result", 6 | "output": "Output", 7 | "clear": "Clear", 8 | "add_tab": "Add new tab", 9 | "refresh": "Refresh the page", 10 | "format": "Format source code", 11 | "copy": "Copy source code", 12 | "mode": "Compile mode", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering with hydration", 16 | "dark_mode": "Toggle dark mode", 17 | "import_json": "Import JSON", 18 | "export_json": "Export JSON", 19 | "export_codesandbox": "Export to CodeSandBox", 20 | "share": "Share with a minified link", 21 | "scale": "Scale editor to make text larger or smaller" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/es/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Equipo y Contribuyentes", 3 | "core_team": "Núcleo del equipo", 4 | "acknowledgments": "Reconocimientos", 5 | "ecosystem_team": "Equipo de Ecosistema", 6 | "copy": "Solid no sería posible sin la ayuda de otros talentosos individuos. Mientras crecemos, esperamos que otros encuentren maneras de apoyarnos con su tiempo ya sea reportando errores, pull requests, sugerencias de diseño, escribiendo o de muchas otras formas.", 7 | "translators_copy": "Los siguientes individuos han brindado su tiempo y esfuerzo en asegurarse de que Solid se vuelva internacional", 8 | "contributors": "Contribuyentes", 9 | "open_collective": "OpenCollective", 10 | "support_copy": "Apóyanos con una donación y ayúdanos a continuar nuestras actividades:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/es/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Documentación" 3 | } 4 | -------------------------------------------------------------------------------- /lang/es/es.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/es/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Librería de Ejemplos", 3 | "basic": "Básicos", 4 | "complex": "Complejos" 5 | } 6 | -------------------------------------------------------------------------------- /lang/es/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Recursos Multimedia", 3 | "copy": "Los siguientes son recursos que representan la marca Solid. Todos los recursos son considerados contribuciones open-source y deberían ser usados de acuerdo a los estándares y reglas de la licencia. Para recursos adicionales o preguntas relacionadas con lineamientos de la marca, siéntete libre de unirte a nuestro Discord para guía y soporte.", 4 | "brand_font": "Fuente de la Marca", 5 | "primary": "Color Primario", 6 | "secondary": "Color Secundario", 7 | "light": "Color claro", 8 | "accent": "Color énfasis", 9 | "copy_hex": "Para copiar el Hex, da click en el mismo.", 10 | "resources": { 11 | "with_wordmark": "Imagotipo", 12 | "without_wordmark": "Isotipo", 13 | "only_wordmark": "Logotipo", 14 | "dark_with_wordmark": "Imagotipo Obscuro", 15 | "dark_without_wordmark": "Isotipo Obscuro", 16 | "dark_only_wordmark": "Logotipo Obscuro" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/es/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ecosistema", 3 | "cta": "Para listar tu proyecto relacionado con SolidJS, contáctanos en Discord.", 4 | "search": "Buscar recursos", 5 | "types": "Tipos", 6 | "types_list": { 7 | "article": "Artículos", 8 | "video": "Video", 9 | "library": "Librería", 10 | "package": "Paquetes" 11 | }, 12 | "published": "Publicado", 13 | "days_ago": "hace {{amount}} días", 14 | "hours_ago": "hace {{amount}} horas", 15 | "categories": "Categorías", 16 | "translations": "Traducciones", 17 | "categories_list": { 18 | "primitive": "Primitivos", 19 | "router": "Routers", 20 | "data": "Data", 21 | "data_visualization": "Visualización de Datos", 22 | "ui": "UI", 23 | "plugin": "Plugins", 24 | "starters": "Kits de inicio", 25 | "build_utility": "Utilidades Build", 26 | "add_on": "Add On", 27 | "testing": "Pruebas", 28 | "educational": "Educational" 29 | }, 30 | "official": "Oficial", 31 | "by": "De {{author}}" 32 | } 33 | -------------------------------------------------------------------------------- /lang/es/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Resolver", 3 | "reset": "Reiniciar", 4 | "playground": { 5 | "result": "Resultado", 6 | "output": "Salida", 7 | "clear": "Limpiar", 8 | "add_tab": "Agregar nueva pestaña", 9 | "refresh": "Refrescar página", 10 | "format": "Formatear código", 11 | "copy": "Copiar código", 12 | "mode": "Modo compilación", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering con hydration", 16 | "dark_mode": "Alternar modo obscuro", 17 | "import_json": "Importar JSON", 18 | "export_json": "Exportar JSON", 19 | "export_codesandbox": "Exportar a CodeSandBox", 20 | "share": "Compartir con un enlace minificado", 21 | "scale": "Escala del editor para hacer la pantalla mas chica o grande" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/fa/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "تیم و مشارکت کنندگان", 3 | "core_team": "تیم اصلی", 4 | "acknowledgments": "تقدیر و تشکر", 5 | "ecosystem_team": "تیم اکوسیستم", 6 | "copy": "ساخت کتابخانه Solid بدون کمک افراد با استعداد دیگری که در توسعه آن همکاری داشتند، امکان پذیر نبود. امیدواریم سایرین نیز با روش های مختلفی مانند گزارش باگ ها، درخواست ادغام (pull request)، پیشنهادهای طراحی، نوشتن مقالات و روش های دیگر در رشد و ترقی این کتابخانه ما را یاری کنند.", 7 | "translators_copy": "افراد زیر به صورت داوطلبانه زمان و زحمت فراوانی برای بین المللی کردن Solid صرف کرده اند:", 8 | "contributors": "مشارکت کنندگان", 9 | "open_collective": "Open Collective", 10 | "support_copy": "با حمایت های مالی خود ما را در ادامه مسیر یاری کنید:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/fa/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "مستندات" 3 | } 4 | -------------------------------------------------------------------------------- /lang/fa/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "کتابخانه مثال ها", 3 | "basic": "آسان", 4 | "complex": "پیچیده" 5 | } 6 | -------------------------------------------------------------------------------- /lang/fa/fa.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/fa/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "rtl", 3 | "name": "فارسی", 4 | "title": "SolidJS · کتابخانه واکنش گرای جاوااسکریپت", 5 | "locale": "fa-IR", 6 | "nav": [ 7 | { 8 | "title": "شروع", 9 | "path": "/guides" 10 | }, 11 | { 12 | "title": "مستندات", 13 | "path": "/docs/latest/api" 14 | }, 15 | { 16 | "title": "SolidStart", 17 | "path": "https://start.solidjs.com", 18 | "external": true 19 | }, 20 | { 21 | "title": "منابع", 22 | "path": "/resources" 23 | }, 24 | { 25 | "title": "آموزش ها", 26 | "path": "/tutorial" 27 | }, 28 | { 29 | "title": "مثال ها", 30 | "path": "/examples" 31 | }, 32 | { 33 | "title": "Playground", 34 | "path": "https://playground.solidjs.com", 35 | "external": true 36 | }, 37 | { 38 | "title": "Blog", 39 | "path": "/blog" 40 | }, 41 | { 42 | "title": "نشان تجاری", 43 | "path": "/media" 44 | } 45 | ], 46 | "404": { 47 | "header": "خطای چهارصد و چهار", 48 | "body": "نشان می دهد که چنین صفحه ای وجود ندارد." 49 | }, 50 | "footer": { 51 | "declaration": "Solid یک پروژه اپن سورس بوده و با حمایت تیمی از افراد غیر سازمانی ساخته شده است و تحت مجوز MIT license منتشر شده است. این کتابخانه و اکو سیستم آن توسط تیم اصلی و مشارکت کنندگان وفادار ساخته شده است.", 52 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 53 | "contributors": "/contributors", 54 | "sponsored_by": "اسپانسر ها", 55 | "updated": "آخرین آپدیت {{date}} با Solid ورژن {{version}}" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /lang/fa/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "نشان تجاری", 3 | "copy": "آنچه در ادامه مشاهده می کنید دارایی های برند Solid است. تمامی این دارایی ها مشارکت های اپن سورس بوده و باید متناسب با قوانین و استاندارد های مجوز اپن سورس مورد استفاده قرار گیرد. برای درخواست سایر دارایی ها و بیان سوالات مربوط به برند، عضو دیسکورد ما شوید.", 4 | "brand_font": "فونت برند", 5 | "primary": "رنگ اصلی", 6 | "secondary": "رنگ ثانویه", 7 | "light": "رنگ روشن", 8 | "accent": "رنگ مکمل", 9 | "resources": { 10 | "with_wordmark": "با اسم برند", 11 | "without_wordmark": "بدون نام برند", 12 | "only_wordmark": "فقط نام برند", 13 | "dark_with_wordmark": "تیره با نام برند", 14 | "dark_without_wordmark": "تیره و بدون نام برند", 15 | "dark_only_wordmark": "فقط نام برند تیره" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lang/fa/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "منابع", 3 | "cta": "برای افزودن پروژه های مربوط به SolidJS خود به این لیست، درخواست خود را در کانال دیسکورد ما اعلام کنید.", 4 | "search": "جستجو در منابع", 5 | "types": "نوع منابع", 6 | "types_list": { 7 | "article": "مقالات", 8 | "video": "ویدیو ها", 9 | "library": "کتابخانه ها", 10 | "package": "پکیج ها" 11 | }, 12 | "published": "منتشر شده در تاریخ", 13 | "days_ago": "{{amount}} days ago", 14 | "hours_ago": "{{amount}} hours ago", 15 | "categories": "دسته بندی ها", 16 | "translations": "ترجمه ها", 17 | "categories_list": { 18 | "primitive": "Primitives", 19 | "router": "Routers", 20 | "data": "Data", 21 | "data_visualization": "Data Visualization", 22 | "ui": "UI", 23 | "plugin": "پلاگین ها", 24 | "starters": "Starters", 25 | "build_utility": "ابزار های توسعه", 26 | "add_on": "Add On", 27 | "testing": "تست", 28 | "educational": "آموزشی" 29 | }, 30 | "official": "رسمی", 31 | "by": "توسط {{author}}" 32 | } 33 | -------------------------------------------------------------------------------- /lang/fa/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "اعمال تغییرات", 3 | "reset": "ریست", 4 | "playground": { 5 | "result": "نتیجه", 6 | "output": "خروجی", 7 | "clear": "پاک کردن", 8 | "add_tab": "باز کردن تب جدید", 9 | "refresh": "رفرش صفحه", 10 | "format": "فرمت کردن کد", 11 | "copy": "کپی کردن کد", 12 | "mode": "حالت کامپایل", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering with hydration", 16 | "dark_mode": "دارک مود", 17 | "import_json": "ورودی JSON", 18 | "export_json": "خروجی JSON", 19 | "export_codesandbox": "خروجی CodeSandBox", 20 | "share": "اشتراک گذاری لینک کوتاه شده", 21 | "scale": "بزرگ و کوچک کردن نوشته ها" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/fr/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Équipe et contributions", 3 | "core_team": "Équipe de base", 4 | "acknowledgments": "Remerciements", 5 | "ecosystem_team": "Équipe de l'écosystème", 6 | "copy": "Solid ne serait pas possible sans l'aide d'autres personnes talentueuses. Au fur et à mesure que nous grandissons, nous espérons que d'autres trouveront des moyens de donner de leur temps sous la forme de rapports de bugs, de demandes d'extraction, de suggestions de conception, d'écriture et de bien d'autres façons.", 7 | "translators_copy": "Les personnes suivantes ont gracieusement donné de leur temps et de leurs efforts pour s'assurer que Solid supporte plusieurs langues.", 8 | "contributors": "Contributeurs", 9 | "open_collective": "Open Collective", 10 | "support_copy": "Soutenez-nous par un don et aidez-nous à poursuivre nos activités :" 11 | } -------------------------------------------------------------------------------- /lang/fr/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Documentation" 3 | } -------------------------------------------------------------------------------- /lang/fr/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Bibliothèque des exemples", 3 | "basic": "Basique", 4 | "complex": "Complexe" 5 | } -------------------------------------------------------------------------------- /lang/fr/fr.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/fr/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Français", 3 | "title": "SolidJS · Bibliothèque Javascript réactive", 4 | "locale": "fr-FR", 5 | "nav": [ 6 | { 7 | "title": "Commencer", 8 | "path": "/guides" 9 | }, 10 | { 11 | "title": "Tutoriel", 12 | "path": "/tutorial" 13 | }, 14 | { 15 | "title": "SolidStart", 16 | "path": "https://start.solidjs.com", 17 | "external": true 18 | }, 19 | { 20 | "title": "API", 21 | "path": "/docs/latest/api" 22 | }, 23 | { 24 | "title": "Écosystème", 25 | "path": "/ecosystem" 26 | }, 27 | { 28 | "title": "Exemples", 29 | "path": "/examples" 30 | }, 31 | { 32 | "title": "Playground", 33 | "path": "https://playground.solidjs.com", 34 | "external": true 35 | }, 36 | { 37 | "title": "Blog", 38 | "path": "/blog" 39 | }, 40 | { 41 | "title": "Média", 42 | "path": "/media" 43 | } 44 | ], 45 | "404": { 46 | "header": "Oups. Quatre Zéro Quatre.", 47 | "body": "a constaté que cette page n'existe pas !" 48 | }, 49 | "footer": { 50 | "declaration": "Solid est un projet open-source soutenu par un groupe de contributeurs, distribué sous licence MIT. Cette bibliothèque et cette communauté sont rendues possibles par une équipe de base et grâce à des contributeurs dévoués.", 51 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 52 | "contributors": "/contributors", 53 | "sponsored_by": "Sponsorisé par", 54 | "updated": "Mis à jour le {{date}} sur Solid v{{version}}" 55 | } 56 | } -------------------------------------------------------------------------------- /lang/fr/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Système de conception", 3 | "copy": "Les éléments suivants sont des fichiers de conception de SolidJS. Il s'agit de contributions open source et doivent être utilisés conformément aux normes ouvertes et aux règles de licence. Pour des ressources supplémentaires ou des questions relatives à la marque, n'hésitez pas à rejoindre notre Discord pour obtenir de l'aide et des conseils.", 4 | "brand_font": "SolidJS Police d'écriture", 5 | "primary": "Couleur primaire", 6 | "secondary": "Couleur secondaire", 7 | "light": "Couleur claire", 8 | "accent": "Couleur accentuée", 9 | "resources": { 10 | "with_wordmark": "Avec mot-symbole", 11 | "without_wordmark": "Sans mot-symbole", 12 | "only_wordmark": "Mot-symbole uniquement", 13 | "dark_with_wordmark": "Noir avec mot-symbole", 14 | "dark_without_wordmark": "Noir sans mot-symbole", 15 | "dark_only_wordmark": "Mot-symbole noir uniquement" 16 | } 17 | } -------------------------------------------------------------------------------- /lang/fr/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Écosystème", 3 | "cta": "Pour que vos projets SolidJS soient répertoriés ici, contactez-nous sur Discord.", 4 | "search": "Rechercher des ressources", 5 | "types": "Types", 6 | "types_list": { 7 | "article": "Article", 8 | "video": "Vidéo", 9 | "library": "Bibliothèque", 10 | "package": "Package" 11 | }, 12 | "published": "Publié", 13 | "days_ago": "il y a {{amount}} jours", 14 | "hours_ago": "il y a {{amount}} heures", 15 | "categories": "Catégories", 16 | "translations": "Traductions", 17 | "categories_list": { 18 | "primitive": "Primitives", 19 | "router": "Routeurs", 20 | "data": "Données", 21 | "ui": "UI", 22 | "plugin": "Plugins", 23 | "starters": "Starters", 24 | "build_utility": "Construire des utilitaires", 25 | "add_on": "Add On", 26 | "testing": "Essai", 27 | "educational": "Educatif" 28 | }, 29 | "official": "Officiel", 30 | "by": "Par {{author}}" 31 | } -------------------------------------------------------------------------------- /lang/fr/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Résoudre", 3 | "reset": "Réinitialiser", 4 | "playground": { 5 | "result": "Résultat", 6 | "output": "Output", 7 | "clear": "Effacer", 8 | "add_tab": "Ajouter une fenêtre", 9 | "refresh": "Rafraîchir la page", 10 | "format": "Formater le code source", 11 | "copy": "Copier le code source", 12 | "mode": "Mode Compilation", 13 | "client_render": "Rendu côté client", 14 | "server_render": "Rendu côté serveur", 15 | "client_hydration_render": "Rendu côté client avec hydratation", 16 | "dark_mode": "Basculer en mode sombre", 17 | "import_json": "Importer JSON", 18 | "export_json": "Exporter JSON", 19 | "export_codesandbox": "Exporter CodeSandBox", 20 | "share": "Partager avec un lien minifié", 21 | "scale": "Éditeur d'échelle pour agrandir ou réduire le texte" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/he/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "קבוצה ותורמים", 3 | "core_team": "קבוצת הליבה", 4 | "acknowledgments": "תודות", 5 | "ecosystem_team": "קבוצת האקוסיסטם", 6 | "translators_copy": "האינדיבידואלים הבאים נתנו מזמנם והתאמצו כדי להפוך את Solid לבינלאומית.", 7 | "contributors": "תורמים", 8 | "open_collective": "הקולקטיב הפתוח" 9 | } 10 | -------------------------------------------------------------------------------- /lang/he/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "תיעוד" 3 | } 4 | -------------------------------------------------------------------------------- /lang/he/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "ספריית דוגמה", 3 | "basic": "דוגמה בסיסית", 4 | "complex": "דוגמה מורכבת" 5 | } 6 | -------------------------------------------------------------------------------- /lang/he/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "rtl", 3 | "name": "עברית", 4 | "title": "SolidJS - ספריית JavaScript ריאקטיבית", 5 | "locale": "he-IL", 6 | "nav": [ 7 | { 8 | "title": "התחילו לעבוד", 9 | "path": "/guides" 10 | }, 11 | { 12 | "title": "תיעוד", 13 | "path": "/docs/latest/api" 14 | }, 15 | { 16 | "title": "SolidStart", 17 | "path": "https://start.solidjs.com", 18 | "external": true 19 | }, 20 | { 21 | "title": "משאבים", 22 | "path": "/resources" 23 | }, 24 | { 25 | "title": "מדריך", 26 | "path": "/tutorial" 27 | }, 28 | { 29 | "title": "דוגמאות", 30 | "path": "/examples" 31 | }, 32 | { 33 | "title": "מגרש משחקים", 34 | "path": "https://playground.solidjs.com", 35 | "external": true 36 | }, 37 | { 38 | "title": "Blog", 39 | "path": "/blog" 40 | }, 41 | { 42 | "title": "מדיה", 43 | "path": "/media" 44 | } 45 | ], 46 | "footer": { 47 | "declaration": "Solid הוא פרויקט קוד חופשי הנתמך על ידי קבוצה של תורמים ציבוריים. הוא משוחרר תחת רישיון MIT. הספרייה והקהילה האלו לא היו קיימות בלי קבוצת הליבה והתורמים המסורים.", 48 | "updated": "עודכן לאחרונה ב-{{date}} עם Solid גרסה {{version}}", 49 | "sponsored_by": "בחסות", 50 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 51 | "contributors": "/contributors" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /lang/he/he.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/he/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "נכסי מדיה", 3 | "copy": "בעמוד הזה תמצאו נכסים המייצגים את המותג של Solid. כל הנכסים הם תרומות קוד-חופשי ויש להשתמש בהם בהתאם לסטנדרטים פתוחים וחוקי רישוי. לעוד נכסים או שאלות הקשורות ל-brand alignment, תוכלו להצטרף לשרת הדיסקורד שלנו בו תוכלו לקבל תמיכה והדרכה.", 4 | "brand_font": "גופן המותג", 5 | "primary": "צבע ראשי", 6 | "secondary": "צבע משני", 7 | "light": "צבע בהיר", 8 | "accent": "צבע מבטא", 9 | "resources": { 10 | "with_wordmark": "עם כיתוב", 11 | "without_wordmark": "בלי כיתוב", 12 | "only_wordmark": "כיתוב בלבד", 13 | "dark_with_wordmark": "כהה עם כיתוב", 14 | "dark_without_wordmark": "כהה בלי כיתוב", 15 | "dark_only_wordmark": "כיתוב כהה בלבד" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lang/he/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "משאבים", 3 | "cta": "רוצים שהפרויקט שלכם יופיע פה? צרו איתנו קשר בדיסקורד.", 4 | "search": "חיפוש משאבים", 5 | "types": "סוגי משאבים", 6 | "types_list": { 7 | "article": "מאמר", 8 | "video": "סרטון", 9 | "library": "ספרייה", 10 | "package": "חבילה" 11 | }, 12 | "categories": "קטגוריות", 13 | "translations": "תרגום", 14 | "categories_list": { 15 | "primitive": "אבני יסוד", 16 | "router": "ראוטר", 17 | "data": "מידע", 18 | "ui": "UI", 19 | "plugin": "פלאגינים", 20 | "starters": "תבניות", 21 | "build_utility": "עזרי בנייה", 22 | "add_on": "תוספים", 23 | "testing": "בדיקה", 24 | "educational": "חינוכי" 25 | }, 26 | "official": "רשמי", 27 | "by": "נוצר על ידי {{author}}" 28 | } 29 | -------------------------------------------------------------------------------- /lang/he/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "הצג פתרון", 3 | "reset": "איפוס", 4 | "playground": { 5 | "result": "תוצאה", 6 | "output": "פלט", 7 | "clear": "ניקוי", 8 | "add_tab": "כרטיסייה חדשה", 9 | "refresh": "רענן", 10 | "format": "פרמט קוד", 11 | "copy": "העתק קוד", 12 | "mode": "הדר קוד", 13 | "client_render": "רינדור בצד הלקוח", 14 | "server_render": "רינדור בצד השרת", 15 | "client_hydration_render": "רינדור בצד הלקוח עם הידרציה", 16 | "dark_mode": "הפעל או כבה מצב כהה", 17 | "import_json": "ייבא JSON", 18 | "export_json": "ייצא JSON", 19 | "export_codesandbox": "ייצא אל CodeSandBox", 20 | "share": "שתף עם קישור ממוזער", 21 | "scale": "שנה את גודל העורך על מנת להפוך את הטקסט לקטן או גדול יותר" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/id/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tim & Kontribusi", 3 | "core_team": "Tim Inti", 4 | "acknowledgments": "Penghargaan", 5 | "ecosystem_team": "Tim Ekosistem", 6 | "copy": "Solid tak akan mungkin bisa diwujudkan tanpa bantuan orang-orang bertalenta lainnya. Selagi kami berkembang, kami berharap anda dapat memberikan waktu entah itu dalam bentuk melaporkan bug, pull requests, saran desain, dokumentasi dan cara lainnya.", 7 | "translators_copy": "Individu-individu berikut ini telah meluangkan waktu dan usaha mereka untuk memastikan Solid go internasional:", 8 | "contributors": "Kontributor-kontributor", 9 | "open_collective": "Open Collective", 10 | "support_copy": "Bantu kami dengan donasi untuk melanjutkan aktivitas kami:" 11 | } -------------------------------------------------------------------------------- /lang/id/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dokumentasi" 3 | } -------------------------------------------------------------------------------- /lang/id/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Contoh Library", 3 | "basic": "Dasar", 4 | "complex": "Kompleks" 5 | } -------------------------------------------------------------------------------- /lang/id/id.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/id/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Aset-aset Media", 3 | "copy": "Berikut ini adalah aset-aset yang merepresentasikan merek dari Solid. Semua aset All assets are considered open-source contributions and should be used according to open standards and licensing rules. For additional assets or questions pertaining to brand alignment, feel free to join our Discord for support and guidance.", 4 | "brand_font": "Merek Font", 5 | "primary": "Warna Utama", 6 | "secondary": "Warna Sekunder", 7 | "light": "Warna Terang", 8 | "accent": "Aksen Warna", 9 | "copy_hex": "Klik warna untuk menyalin kode hex.", 10 | "resources": { 11 | "with_wordmark": "Dengan Wordmark", 12 | "without_wordmark": "Tanpa Wordmark", 13 | "only_wordmark": "Hanya Wordmark", 14 | "dark_with_wordmark": "Gelap Dengan Wordmark", 15 | "dark_without_wordmark": "Gelap Tanpa Wordmark", 16 | "dark_only_wordmark": "Hanya Gelap Wordmark" 17 | } 18 | } -------------------------------------------------------------------------------- /lang/id/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ekosistem", 3 | "cta": "Untuk membuat project kamu yang berhubungan dengan SolidJS terdaftar disini, hubung kami di Discord.", 4 | "search": "Pencarian ekosistem", 5 | "types": "Tipe-tipe", 6 | "types_list": { 7 | "article": "Artikel", 8 | "video": "Video", 9 | "library": "Library", 10 | "package": "Package" 11 | }, 12 | "published": "Dipublikasi", 13 | "days_ago": "{{amount}} hari yang lalu", 14 | "hours_ago": "{{amount}} jam yang lalu", 15 | "categories": "Kategori", 16 | "translations": "Terjemahan", 17 | "categories_list": { 18 | "primitive": "Primitif", 19 | "router": "Routers", 20 | "data": "Data", 21 | "data_visualization": "Data Visualization", 22 | "ui": "UI", 23 | "plugin": "Plugins", 24 | "starters": "Starters", 25 | "build_utility": "Build Utilities", 26 | "add_on": "Add On", 27 | "testing": "Testing", 28 | "educational": "Edukasi" 29 | }, 30 | "official": "Resmi", 31 | "by": "Oleh {{author}}" 32 | } -------------------------------------------------------------------------------- /lang/id/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Selesaikan", 3 | "reset": "Atur Ulang", 4 | "playground": { 5 | "result": "Hasil", 6 | "output": "Keluaran", 7 | "clear": "Bersihkan", 8 | "add_tab": "Tambah tab baru", 9 | "refresh": "Segarkan halaman", 10 | "format": "Menformat kode source", 11 | "copy": "Menyalin kode source", 12 | "mode": "Mode kompilasi", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering dengan hydration", 16 | "dark_mode": "Beralih ke mode gelap", 17 | "import_json": "Impor JSON", 18 | "export_json": "Ekspor JSON", 19 | "export_codesandbox": "Ekspor ke CodeSandBox", 20 | "share": "Bagikan dengan link yang diperkecil", 21 | "scale": "Scale editor untuk membuat teks lebih besar atau lebih kecil" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/it/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Manutentori e collaboratori", 3 | "core_team": "Manutentori principali", 4 | "acknowledgments": "Ringraziamenti", 5 | "internationalization": "Internazionalizzazione", 6 | "copy": "Solid non sarebbe possibile senza l'aiuto di altre persone di talento. Man mano che cresciamo, speriamo che altri trovino il modo di dedicare il loro tempo sotto forma di segnalazione di bug, pull request, suggerimenti di progettazione, scrittura e molti altri modi.", 7 | "translators_copy": "Le seguenti persone hanno gentilmente dedicato il loro tempo e i loro sforzi per garantire che Solid diventi internazionale:", 8 | "ecosystem_team": "Gruppo di ecosistema", 9 | "contributors": "Contributori", 10 | "open_collective": "Open Collective", 11 | "support_copy": "Sostienici con una donazione e aiutaci a continuare le nostre attività:" 12 | } 13 | -------------------------------------------------------------------------------- /lang/it/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Documentazione" 3 | } -------------------------------------------------------------------------------- /lang/it/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Libreria di esempio", 3 | "basic": "Semplice", 4 | "complex": "Complesso" 5 | } -------------------------------------------------------------------------------- /lang/it/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Italiano", 3 | "title": "SolidJS · Libreria Javascript reattiva", 4 | "locale": "it-IT", 5 | "nav": [ 6 | { "title": "Inizia", "path": "/guides" }, 7 | { "title": "Esercitazione", "path": "/tutorial" }, 8 | { "title": "API", "path": "/docs/latest/api" }, 9 | { 10 | "title": "SolidStart", 11 | "path": "https://start.solidjs.com", 12 | "external": true 13 | }, 14 | { "title": "Ecosistema", "path": "/ecosystem" }, 15 | { "title": "Esempi", "path": "/examples" }, 16 | { "title": "Playground", "path": "https://playground.solidjs.com", "external": true }, 17 | { "title": "Blog", "path": "/blog" }, 18 | { "title": "Media", "path": "/media" } 19 | ], 20 | "404": { 21 | "header": "Ops! Quattro-zero-quattro.", 22 | "body": "crede che questa pagina sicuramente non esista." 23 | }, 24 | "newsletter": { 25 | "title": "Iscriviti a Solid News", 26 | "email": "Indirizzo email", 27 | "success": "Ti sei registrato con successo!", 28 | "error": "Impossibile completare la registrazione", 29 | "register": "Registrati", 30 | "sending": "Invio..." 31 | }, 32 | "footer": { 33 | "declaration": "Solid è un progetto open source supportato da un team di contributori pubblici. È distribuito con licenza MIT. Questa libreria e comunità sono rese possibili da un team principale e collaboratori dedicati.", 34 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 35 | "contributors": "/contributors", 36 | "sponsored_by": "Sponsorizzato da", 37 | "updated": "Ultimo aggiornamento {{date}} su Solid v{{version}}" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /lang/it/it.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/it/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Risorse multimediali", 3 | "copy": "Di seguito sono riportati gli asset che rappresentano il marchio Solid. Tutte le risorse sono considerate contributi open source e dovrebbero essere utilizzate secondo standard aperti e regole di licenza. Per ulteriori risorse o domande relative all'allineamento del marchio, non esitare a unirti al nostro Discord per supporto e guida.", 4 | "brand_font": "Carattere del marchio", 5 | "primary": "Colore primario", 6 | "secondary": "Colore secondario", 7 | "light": "Colore chiaro", 8 | "accent": "Colore accento", 9 | "second_accent": "Secondo colore accento", 10 | "copy_hex": "Fare clic sul valore esadecimale per il colore", 11 | "resources": { 12 | "with_wordmark": "Con marchio denominativo", 13 | "without_wordmark": "Senza marchio denominativo", 14 | "only_wordmark": "Solo marchio denominativo", 15 | "dark_with_wordmark": "Scuro con segno di parola", 16 | "dark_without_wordmark": "Scuro senza segno denominativo", 17 | "dark_only_wordmark": "Solo wordmark scuro" 18 | } 19 | } -------------------------------------------------------------------------------- /lang/it/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ecosistema", 3 | "cta": "Per avere il tuo progetto correlato a SolidJS elencato qui, contattaci su Discord.", 4 | "search": "Cerca risorse", 5 | "types": "Tipi", 6 | "types_list": { 7 | "article": "Articolo", 8 | "video": "Video", 9 | "library": "Librarie", 10 | "package": "Pacchetto" 11 | }, 12 | "categories": "Categorie", 13 | "translations": "Traduzioni", 14 | "published": "Pubblicato", 15 | "days_ago": "{{amount}} giorni fa", 16 | "hours_ago": "{{amount}} ore fa", 17 | "categories_list": { 18 | "primitive": "Primitivi", 19 | "router": "Routers", 20 | "data": "Dati", 21 | "ui": "UI", 22 | "plugin": "Plugins", 23 | "starters": "Starters", 24 | "build_utility": "Utilità di costruzione", 25 | "add_on": "Aggiungi", 26 | "testing": "Test", 27 | "educational": "Educativa" 28 | }, 29 | "official": "Ufficiale", 30 | "by": "Di {{author}}" 31 | } -------------------------------------------------------------------------------- /lang/it/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Soluzione", 3 | "reset": "Ripristina", 4 | "playground": { 5 | "result": "Result", 6 | "output": "Output", 7 | "clear": "Clear", 8 | "add_tab": "Add new tab", 9 | "refresh": "Refresh the page", 10 | "format": "Format source code", 11 | "copy": "Copy source code", 12 | "mode": "Compile mode", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering with hydration", 16 | "dark_mode": "Toggle dark mode", 17 | "import_json": "Import JSON", 18 | "export_json": "Export JSON", 19 | "export_codesandbox": "Export to CodeSandBox", 20 | "share": "Share with a minified link", 21 | "scale": "Scale editor to make text larger or smaller" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ja/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "チームと貢献", 3 | "core_team": "コアチーム", 4 | "acknowledgments": "謝辞", 5 | "ecosystem_team": "エコシステムチーム", 6 | "copy": "Solid は、他の才能ある人たちの助けなしには成り立ちません。私たちが成長するにつれ、バグレポート、プルリクエスト、デザイン提案、執筆、その他さまざまな形で時間を提供してくれる人が現れることを期待しています。", 7 | "translators_copy": "以下の方々は、Solid の国際化のために時間と労力を惜しみなく提供してくださいました:", 8 | "contributors": "コントリビューター", 9 | "open_collective": "Open Collective", 10 | "support_copy": "寄付で支援して、私たちの活動の継続を支えてください:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/ja/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "ドキュメント" 3 | } 4 | -------------------------------------------------------------------------------- /lang/ja/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "サンプル集", 3 | "basic": "基本", 4 | "complex": "複合" 5 | } 6 | -------------------------------------------------------------------------------- /lang/ja/ja.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/ja/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "メディアアセット", 3 | "copy": "以下は、Solid ブランドを表すアセットです。すべてのアセットはオープンソースの貢献と見なされ、オープンスタンダードとライセンスルールに従って使用する必要があります。追加のアセットやブランドの調整に関するご質問は、Discord でサポートとガイダンスを受けることができます。", 4 | "brand_font": "Brand Font", 5 | "primary": "Primary Color", 6 | "secondary": "Secondary Color", 7 | "light": "Light Color", 8 | "accent": "Accent Color", 9 | "copy_hex": "色をクリックすると、16進数をコピーできます。", 10 | "resources": { 11 | "with_wordmark": "文字商標あり", 12 | "without_wordmark": "文字商標なし", 13 | "only_wordmark": "文字商標のみ", 14 | "dark_with_wordmark": "文字商標あり(ダーク)", 15 | "dark_without_wordmark": "文字商標なし(ダーク)", 16 | "dark_only_wordmark": "文字商標のみ(ダーク)" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/ja/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "資料", 3 | "cta": "あなたのSolidJS関連プロジェクトをここに掲載したい場合は、Discord でご連絡ください。", 4 | "search": "Search resources", 5 | "types": "タイプ", 6 | "types_list": { 7 | "article": "Article", 8 | "video": "Video", 9 | "library": "Library", 10 | "package": "Package" 11 | }, 12 | "published": "公開日", 13 | "days_ago": "{{amount}} 日前", 14 | "hours_ago": "{{amount}} 時間前", 15 | "categories": "カテゴリー", 16 | "translations": "翻訳", 17 | "categories_list": { 18 | "primitive": "Primitives", 19 | "router": "Routers", 20 | "data": "Data", 21 | "data_visualization": "Data Visualization", 22 | "ui": "UI", 23 | "plugin": "Plugins", 24 | "starters": "Starters", 25 | "build_utility": "Build Utilities", 26 | "add_on": "Add On", 27 | "testing": "Testing", 28 | "educational": "Educational" 29 | }, 30 | "official": "公式", 31 | "by": "By {{author}}" 32 | } 33 | -------------------------------------------------------------------------------- /lang/ja/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "解答する", 3 | "reset": "リセットする", 4 | "playground": { 5 | "result": "Result", 6 | "output": "Output", 7 | "clear": "Clear", 8 | "add_tab": "新しいタブを追加", 9 | "refresh": "ページを更新", 10 | "format": "ソースコードをフォーマット", 11 | "copy": "ソースコードをコピー", 12 | "mode": "Compile mode", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering with hydration", 16 | "dark_mode": "Toggle dark mode", 17 | "import_json": "Import JSON", 18 | "export_json": "Export JSON", 19 | "export_codesandbox": "Export to CodeSandBox", 20 | "share": "Share with a minified link", 21 | "scale": "Scale editor to make text larger or smaller" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ko-kr/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "팀과 컨트리뷰터", 3 | "core_team": "핵심 팀", 4 | "acknowledgments": "감사의 말", 5 | "ecosystem_team": "에코시스템 팀", 6 | "copy": "재능있는 여러분들의 도움이 없었다면 Solid는 존재할 수 없었을 것입니다. 저희가 성장함에 따라 여러분들이 버그 리포트, 풀 리퀘스트, 디자인 제안, 문서 및 기타 여러가지 형태로 시간을 할애해 도움을 주시기를 바랍니다.", 7 | "translators_copy": "다음은 Solid의 번역을 위해 개인 시간과 노력을 기울여 주신 분들입니다:", 8 | "contributors": "컨트리뷰터", 9 | "open_collective": "Open Collective", 10 | "support_copy": "기부를 통해 저희를 지원하고 활동을 계속할 수 있도록 도와주시기 바랍니다:" 11 | } -------------------------------------------------------------------------------- /lang/ko-kr/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "문서" 3 | } -------------------------------------------------------------------------------- /lang/ko-kr/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "예제 라이브러리", 3 | "basic": "기본 예제", 4 | "complex": "복잡한 예제" 5 | } -------------------------------------------------------------------------------- /lang/ko-kr/ko-kr.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/ko-kr/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "미디어 자료", 3 | "copy": "다음은 Solid 브랜드를 나타내는 자료입니다. 모든 자료들은 오픈 소스 컨트리뷰션으로 간주되며, 공개 표준 및 라이선스 규칙에 따라 사용해야 합니다. 브랜드 조정과 관련된 추가 자료나 질문이 있는 경우, 지원 및 안내를 위해 언제든지 Discord에 가입하세요.", 4 | "brand_font": "브랜드 폰트", 5 | "primary": "Primary Color", 6 | "secondary": "Secondary Color", 7 | "light": "Light Color", 8 | "accent": "Accent Color", 9 | "copy_hex": "16진수 값을 복사하려면 컬러를 클릭하세요.", 10 | "resources": { 11 | "with_wordmark": "워드마크 포함", 12 | "without_wordmark": "워드마크 없음", 13 | "only_wordmark": "워드마크만", 14 | "dark_with_wordmark": "다크모드 워드마크 포함", 15 | "dark_without_wordmark": "다크모드 워드마크 없음", 16 | "dark_only_wordmark": "다크모드 워드마크만" 17 | } 18 | } -------------------------------------------------------------------------------- /lang/ko-kr/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "에코시스템", 3 | "cta": "SolidJS 관련 프로젝트를 여기에 추가하려면 Discord를 통해 저희에게 연락하세요.", 4 | "search": "리소스 검색", 5 | "types": "타입", 6 | "types_list": { 7 | "article": "글", 8 | "video": "동영상", 9 | "library": "라이브러리", 10 | "package": "패키지" 11 | }, 12 | "published": "배포일자", 13 | "days_ago": "{{amount}} 일 전", 14 | "hours_ago": "{{amount}} 시간 전", 15 | "categories": "카테고리", 16 | "translations": "번역", 17 | "categories_list": { 18 | "primitive": "Primitives", 19 | "router": "Routers", 20 | "data": "Data", 21 | "data_visualization": "Data Visualization", 22 | "ui": "UI", 23 | "plugin": "Plugins", 24 | "starters": "Starters", 25 | "build_utility": "Build Utilities", 26 | "add_on": "Add On", 27 | "testing": "Testing", 28 | "educational": "Educational" 29 | }, 30 | "official": "공식", 31 | "by": "저자: {{author}}" 32 | } -------------------------------------------------------------------------------- /lang/ko-kr/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "풀이", 3 | "reset": "초기화", 4 | "playground": { 5 | "result": "결과", 6 | "output": "출력", 7 | "clear": "모두 삭제", 8 | "add_tab": "탭 추가", 9 | "refresh": "페이지 갱신", 10 | "format": "소스코드 포매팅", 11 | "copy": "소스코드 복사", 12 | "mode": "컴파일 모드", 13 | "client_render": "클라이언트 사이드 렌더링", 14 | "server_render": "서버 사이드 렌더링", 15 | "client_hydration_render": "하이드레이션을 사용한 클라이언트 렌더링", 16 | "dark_mode": "다크 모드 토글", 17 | "import_json": "JSON 가져오기", 18 | "export_json": "JSON으로 내보내기", 19 | "export_codesandbox": "CodeSandBox로 내보내기", 20 | "share": "단축 링크로 공유하기", 21 | "scale": "텍스트 크기를 변경하려면 에디터 크기를 조절하세요" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/pl/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Zespół i wsparcie", 3 | "core_team": "Główny zespół", 4 | "acknowledgments": "Podziękowania", 5 | "ecosystem_team": "Zespół ekosystemu", 6 | "copy": "Solid nie wyglądałby tak samo bez pomocy innych wspaniałych osób. Wraz z naszym rozwojem mamy nadzieję, że więcej osób będzie miało okazję do nas dołączyć. Doceniamy każdą pomoc, pull requesty, zgłaszanie błędów, sugestie, czy wpisy.", 7 | "translators_copy": "Poniższe osoby włożyły dużo pracy, aby Solid mógł być bardziej światowy:", 8 | "contributors": "Współtworcy", 9 | "open_collective": "Open Collective", 10 | "support_copy": "Wesprzyj nas i pomóż nam kontynuować nasze działania:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/pl/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dokumentacja" 3 | } 4 | -------------------------------------------------------------------------------- /lang/pl/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Biblioteka przykładów", 3 | "basic": "Proste", 4 | "complex": "Złożone" 5 | } 6 | -------------------------------------------------------------------------------- /lang/pl/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Zasoby dla mediów", 3 | "copy": "Poniższe zasoby reprezentują markę Solid. Wszystkie zasoby są otwartoźródłowym wkładem i powinny być używane zgodnie z otwartymi standardami oraz zasadami licencjonowania. Po więcej informacji lub zasobów dołącz na naszego Discorda, gdzie uzyskasz wsparcie.", 4 | "brand_font": "Firmowa czcionka", 5 | "primary": "Główny kolor", 6 | "secondary": "Poboczny kolor", 7 | "light": "Delikatny kolor", 8 | "accent": "Kolor akcentowy", 9 | "second_accent": "Poboczny kolor akcentowy", 10 | "copy_hex": "Naciśnij kolor, aby skopiować kod hex.", 11 | "resources": { 12 | "with_wordmark": "Z logotypem", 13 | "without_wordmark": "Bez logotypu", 14 | "only_wordmark": "Sam logotyp", 15 | "dark_with_wordmark": "Z logotypem - wersja ciemna", 16 | "dark_without_wordmark": "Bez logotypu - wersja ciemna", 17 | "dark_only_wordmark": "Sam logotyp - wersja ciemna" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lang/pl/pl.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/pl/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ekosystem", 3 | "cta": "Aby twój projekt związany z SolidJS znalazł się tutaj, skontaktuj się z nami na Discordzie.", 4 | "search": "Szukaj zasobów", 5 | "types": "Rodzaje", 6 | "types_list": { 7 | "article": "Artykuł", 8 | "video": "Wideo", 9 | "library": "Biblioteka", 10 | "package": "Paczka" 11 | }, 12 | "published": "Opublikowane", 13 | "days_ago": "{{amount}} dni temu", 14 | "hours_ago": "{{amount}} godzin temu", 15 | "categories": "Kategorie", 16 | "translations": "Tłumaczenia", 17 | "categories_list": { 18 | "primitive": "Cząsteczki", 19 | "router": "Routery", 20 | "data": "Dane", 21 | "ui": "UI", 22 | "plugin": "Pluginy", 23 | "starters": "Startery", 24 | "build_utility": "Narzędzia do budowania", 25 | "add_on": "Dodatki", 26 | "testing": "Testowanie", 27 | "educational": "Edukacyjne" 28 | }, 29 | "official": "Oficjalne", 30 | "by": "Stworzone przez {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/pl/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Pokaż rozwiązanie", 3 | "reset": "Zresetuj", 4 | "playground": { 5 | "result": "Wynik", 6 | "output": "Skompilowany kod", 7 | "clear": "Wyczyść", 8 | "add_tab": "Dodaj nową kartę", 9 | "refresh": "Odśwież stronę", 10 | "format": "Sformatuj kod źródłowy", 11 | "copy": "Skopiuj kod źródłowy", 12 | "mode": "Tryb kompilacji", 13 | "client_render": "Renderowanie w przeglądarce", 14 | "server_render": "Renderowanie na serwerze", 15 | "client_hydration_render": "Hydracja w przeglądarce", 16 | "dark_mode": "Przełącz tryb ciemny", 17 | "import_json": "Importuj JSON", 18 | "export_json": "Eksportuj JSON", 19 | "export_codesandbox": "Eksportuj do CodeSandBox", 20 | "share": "Udostępnij skrócony link", 21 | "scale": "Powiększ lub pomniejsz tekst" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/pt/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Equipe e Contribuidores", 3 | "core_team": "Equipe Principal", 4 | "acknowledgments": "Agradecimentos", 5 | "ecosystem_team": "Equipe do Ecosistema", 6 | "copy": "Solid não seria possível sem ajuda de outras pessoas talentosas. À medida que crescemos, esperamos que outros encontrem maneiras de dedicar seu tempo, na forma de nota de bugs, pull requests, sugestões de design, escrita e muitas outras maneiras.", 7 | "translators_copy": "As pessoas a seguir se esforçaram e dedicaram seu precioso tempo para ter certeza que Solid se tornasse internacional:", 8 | "contributors": "Contribuidores", 9 | "internationalization": "Internacionalização", 10 | "open_collective": "Coletiva aberta", 11 | "support_copy": "Apoie-nos com uma doação e nos ajude a continuar desenvolvendo:" 12 | } 13 | -------------------------------------------------------------------------------- /lang/pt/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Documentação" 3 | } 4 | -------------------------------------------------------------------------------- /lang/pt/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Exemplos da Biblioteca", 3 | "basic": "Básico", 4 | "complex": "Complexo" 5 | } 6 | -------------------------------------------------------------------------------- /lang/pt/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Português", 3 | "title": "SolidJS · Biblioteca de Javascript reativa", 4 | "locale": "pt-PT", 5 | 6 | "nav": [ 7 | { 8 | "title": "Inicie", 9 | "path": "/guides" 10 | }, 11 | { 12 | "title": "Tutorial", 13 | "path": "/tutorial" 14 | }, 15 | { 16 | "title": "API", 17 | "path": "/docs/latest/api" 18 | }, 19 | { 20 | "title": "SolidStart", 21 | "path": "https://start.solidjs.com", 22 | "external": true 23 | }, 24 | { 25 | "title": "Ecossistema", 26 | "path": "/ecosystem" 27 | }, 28 | { 29 | "title": "Exemplos", 30 | "path": "/examples" 31 | }, 32 | { 33 | "title": "Playground", 34 | "path": "https://playground.solidjs.com", 35 | "external": true 36 | }, 37 | { 38 | "title": "Blog", 39 | "path": "/blog" 40 | }, 41 | { 42 | "title": "Mídia", 43 | "path": "/media" 44 | } 45 | ], 46 | "404": { 47 | "header": "Oops. Quatro zero quatro.", 48 | "body": "tem certeza que essa página não existe." 49 | }, 50 | "footer": { 51 | "declaration": "Solid é um projeto de código aberto mantido por uma equipe de contribuidores. É distribuído sobre a licensa do MIT. Esta biblioteca e comunidade é possível graças à estes contribuidores dedicados e a equipe principal.", 52 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 53 | "contributors": "/contributors", 54 | "sponsored_by": "Patrocinado por", 55 | "updated": "Atualizado por último as {{date}} no Solid v{{version}}" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /lang/pt/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Recursos para Mídia", 3 | "copy": "A seguir são recursos que representam a marca Solid. Todos recursos são abertos para contribuições e devem ser usados seguindo os padrões abertos e as regras de licensiamento. Para recursos adicionais ou questões pertencente a marca, sinta-se livre a entrar em nosso Discord para orientações e suporte adicional.", 4 | "brand_font": "Fonte da marca", 5 | "primary": "Cor Primária", 6 | "secondary": "Cor Secundária", 7 | "light": "Cor Clara", 8 | "accent": "Cor para Destaque", 9 | "resources": { 10 | "with_wordmark": "Imagotipo", 11 | "without_wordmark": "Isotipo", 12 | "only_wordmark": "Logotipo", 13 | "dark_with_wordmark": "Imagotipo escura", 14 | "dark_without_wordmark": "Isotipo escura", 15 | "dark_only_wordmark": "Logotipo escura" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lang/pt/pt.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/pt/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Recursos", 3 | "cta": "Para listar seu projeto SolidJS aqui, contate-nos em nosso Discord.", 4 | "search": "Pesquise por recursos", 5 | "types": "Tipos", 6 | "types_list": { 7 | "article": "Artigos", 8 | "video": "Videos", 9 | "library": "Bibliotecas", 10 | "package": "Pacotes" 11 | }, 12 | "published": "Publicados", 13 | "days_ago": "{{amount}} dias atrás", 14 | "hours_ago": "{{amount}} horas atrás", 15 | "categories": "Categorias", 16 | "translations": "Traduções", 17 | "categories_list": { 18 | "primitive": "Primitivos", 19 | "router": "Roteador", 20 | "data": "Dados", 21 | "ui": "Interface", 22 | "plugin": "Plugins", 23 | "starters": "Iniciantes", 24 | "build_utility": "Utilitários de Build", 25 | "add_on": "Adicionais", 26 | "testing": "Testes", 27 | "educational": "Educacional" 28 | }, 29 | "official": "Oficial", 30 | "by": "Por {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/pt/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Resolver", 3 | "reset": "Reiniciar", 4 | "playground": { 5 | "result": "Resultado", 6 | "output": "Saída", 7 | "clear": "Limpar", 8 | "add_tab": "Nova aba", 9 | "refresh": "Recarregar página", 10 | "format": "Formatar código", 11 | "copy": "Copiar código", 12 | "mode": "Modo compilador", 13 | "client_render": "Renderização no cliente", 14 | "server_render": "Renderização no servidor", 15 | "client_hydration_render": "Renderização no cliente com hidratação", 16 | "dark_mode": "Alternar modo escuro", 17 | "import_json": "Importar JSON", 18 | "export_json": "Exportar JSON", 19 | "export_codesandbox": "Exportar para o CodeSandBox", 20 | "share": "Compartilhar com link minimizado", 21 | "scale": "Escalar editor para tornar texto maior ou menor" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ru/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Команда и Контрибьюторы", 3 | "core_team": "Основная команда", 4 | "acknowledgments": "Благодарности", 5 | "ecosystem_team": "Команда экосистемы", 6 | "copy": "Solid был бы невозможен без помощи других талантливых людей. По мере нашего роста мы надеемся, что другие найдут способы посвятить свое время отчетам об ошибках, пулл запросам, предложениям по дизайну и многому другому.", 7 | "translators_copy": "Следующие люди любезно посвятили свое время и усилия на то, чтобы Solid стал международным:", 8 | "contributors": "Контрибьюторы", 9 | "open_collective": "Открытый коллектив", 10 | "support_copy": "Поддержите нас пожертвованием и помогите нам продолжить нашу деятельность:" 11 | } -------------------------------------------------------------------------------- /lang/ru/docs.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "title": "Документация" 4 | } 5 | -------------------------------------------------------------------------------- /lang/ru/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Библиотека Примеров", 3 | "basic": "Базовые", 4 | "complex": "Сложные" 5 | } 6 | -------------------------------------------------------------------------------- /lang/ru/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Атрибуты бренда", 3 | "copy": "Ниже перечислены атрибуты, которые представляют бренд Solid. Все атрибуты считаются вкладом с открытым исходным кодом и должны использоваться в соответствии с открытыми стандартами и правилами лицензирования. Для получения дополнительных материалов или вопросов, связанных с согласованием бренда, присоединяйтесь к нашему Discord для получения поддержки и рекомендаций.", 4 | "brand_font": "Шрифт бренда", 5 | "primary": "Основной цвет", 6 | "secondary": "Вторичный цвет", 7 | "light": "Светлый цвет", 8 | "accent": "Акцентирующий цвет", 9 | "resources": { 10 | "with_wordmark": "Со словесным знаком", 11 | "without_wordmark": "Без словесного знака", 12 | "only_wordmark": "Только словесный знак", 13 | "dark_with_wordmark": "Темный со словесным знаком", 14 | "dark_without_wordmark": "Темный без словесного знака", 15 | "dark_only_wordmark": "Темный только словесный знак" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lang/ru/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Экосистема", 3 | "cta": "Для того чтобы Ваш проект, связанный с SolidJS, был представлен здесь, свяжитесь с нами на Дискорде.", 4 | "search": "Поиск", 5 | "types": "Типы", 6 | "types_list": { 7 | "article": "Статья", 8 | "video": "Видео", 9 | "library": "Библиотека", 10 | "package": "Пакет" 11 | }, 12 | "published": "Опубликован", 13 | "days_ago": "{{amount}} дней назад", 14 | "hours_ago": "{{amount}} часов назад", 15 | "categories": "Категории", 16 | "translations": "Переводы", 17 | "categories_list": { 18 | "primitive": "Примитивы", 19 | "router": "Роутеры", 20 | "data": "Данные", 21 | "ui": "Интерфейс Пользователя", 22 | "plugin": "Плагины", 23 | "starters": "Стартеры", 24 | "build_utility": "Утилиты сборки", 25 | "add_on": "Аддон", 26 | "testing": "Тестировние", 27 | "educational": "Образовательные" 28 | }, 29 | "official": "Официальный", 30 | "by": "От {{author}}" 31 | } -------------------------------------------------------------------------------- /lang/ru/ru.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/ru/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Решить", 3 | "reset": "Сбросить", 4 | "playground": { 5 | "result": "Результат", 6 | "output": "Выход", 7 | "clear": "Очистить", 8 | "add_tab": "Добавить табуляцию", 9 | "refresh": "Обновить", 10 | "format": "Форматировать исходный код", 11 | "copy": "Скопировать исходный код", 12 | "mode": "Режим Компиляции", 13 | "client_render": "Клиентский рендеринг", 14 | "server_render": "Серверный рендеринг", 15 | "client_hydration_render": "Клиентский рендеринг с гидратацией", 16 | "dark_mode": "Темный режим (Вкл/Вык)", 17 | "import_json": "Импортировать из JSON", 18 | "export_json": "Экспортировать как JSON", 19 | "export_codesandbox": "Экспортировать в CodeSandbox", 20 | "share": "Поделиться с помощью минимизированной ссылки", 21 | "scale": "Настроить шрифт" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/tl/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ang Pangkat at Mga Kontribusyon", 3 | "core_team": "Core Team", 4 | "acknowledgments": "Pasasalamat", 5 | "ecosystem_team": "Ecosystem Team", 6 | "copy": "Nagpupugay ang Solid sa tulong ng mga talentadong indibidwal. Habang lumalaki ang Solid, nais namin na magkaroon ng paraan ang sinuman upang maglaan ng panahon sa mga pagrereport ng bug, mga pull request, mga suhestyon sa disenyo, pagsusulat, at iba pa.", 7 | "translators_copy": "Ang mga sumusunod na indibidwal ay nagbigay oras at lakas para siguraduhin na makilala ang SolidJS sa mundo:", 8 | "contributors": "Mga kontribyutor", 9 | "open_collective": "Open Collective", 10 | "support_copy": "Suportahan niyo kami sa pamamagitan ng donasyon at tulungan niyo kami sa pagpatuloy ng aming gawain" 11 | } 12 | -------------------------------------------------------------------------------- /lang/tl/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dokumentasyon" 3 | } -------------------------------------------------------------------------------- /lang/tl/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Halimbawang Library", 3 | "basic": "Payak", 4 | "complex": "Kumplikado" 5 | } 6 | -------------------------------------------------------------------------------- /lang/tl/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Filipino", 3 | "title": "SolidJS · Reactive Javascript Library", 4 | "locale": "tl_PH", 5 | "nav": [ 6 | { 7 | "title": "Panimula", 8 | "path": "/guides" 9 | }, 10 | { 11 | "title": "Mga Docs", 12 | "path": "/docs/latest/api" 13 | }, 14 | { 15 | "title": "SolidStart", 16 | "path": "https://start.solidjs.com", 17 | "external": true 18 | }, 19 | { 20 | "title": "Mga Resource", 21 | "path": "/resources" 22 | }, 23 | { 24 | "title": "Mga Tutorial", 25 | "path": "/tutorial" 26 | }, 27 | { 28 | "title": "Mga Halimbawa", 29 | "path": "/halimbawa" 30 | }, 31 | { 32 | "title": "Palaruan", 33 | "path": "https://playground.solidjs.com", 34 | "external": true 35 | }, 36 | { 37 | "title": "Blog", 38 | "path": "/blog" 39 | }, 40 | { 41 | "title": "Media", 42 | "path": "/media" 43 | } 44 | ], 45 | "404": { 46 | "header": "Hala, 404.", 47 | "body": "Walang matatagpuan rito." 48 | }, 49 | "footer": { 50 | "declaration": "Ang Solid ay isang open-source na proyekto na sinusuportahan ng grupo ng mga pampublikong kontribyutor. Ito ay sumasailalim sa MIT license. Naging posible ang library at komunidad dahil sa core team at mga dedikadong mga contributor.", 51 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 52 | "contributors": "/contributors", 53 | "sponsored_by": "Sponsored ng", 54 | "updated": "Huling na-update noong {{date}} sa Solid v{{version}}" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lang/tl/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Media Assets", 3 | "copy": "Ang mga sumusunod ay asset na kumakatawan sa Solid brand. Lahat ng mga asset ay kinukunsiderang open-source contribution at magagamit lamang batay sa open standards at mga panuntunan ng licensing. Para sa karagdagang asset o tanong tungkol sa tatak ng Solid JS, maaari lamang na sumali sa aming Discord Server para kayo'y matugunan.", 4 | "brand_font": "Brand Font", 5 | "primary": "Pangunahing Kulay", 6 | "secondary": "Pangalawang Kulay", 7 | "light": "Light Color", 8 | "accent": "Accent Color", 9 | "copy_hex": "Pindutin ang kulay para kopyahin ang hex code.", 10 | "resources": { 11 | "with_wordmark": "May Wordmark", 12 | "without_wordmark": "Walang Wordmark", 13 | "only_wordmark": "Wordmark Lamang", 14 | "dark_with_wordmark": "Madilim na May Wordmark", 15 | "dark_without_wordmark": "Madilim na Walang Wordmark", 16 | "dark_only_wordmark": "Madilim na Wordmark Lamang" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/tl/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Mapagkukunan", 3 | "cta": "Para mailathala ang iyong SolidJS na proyekto, maaring makipag-ugayan sa amin sa Discord.", 4 | "search": "Maghanap ng mga resource", 5 | "types": "Mga Uri", 6 | "types_list": { 7 | "article": "Artikulo", 8 | "video": "Video", 9 | "library": "Library", 10 | "package": "Package" 11 | }, 12 | "published": "Published", 13 | "days_ago": "{{amount}} araw na nakalipas", 14 | "hours_ago": "{{amount}} oras na nakalipas", 15 | "categories": "Mga kategorya", 16 | "translations": "Mga pagsasalin", 17 | "categories_list": { 18 | "primitive": "Mga Primitive", 19 | "router": "Mga Router", 20 | "data": "Datos", 21 | "ui": "UI", 22 | "plugin": "Mga Plugin", 23 | "starters": "Mga Starter", 24 | "build_utility": "Mga Build Utility", 25 | "add_on": "Add On", 26 | "testing": "Pagte-test", 27 | "educational": "Pag-aaral" 28 | }, 29 | "official": "Opisyal", 30 | "by": "Mula kay {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/tl/tl.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/tl/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Lutasin", 3 | "reset": "Ulitin", 4 | "playground": { 5 | "result": "Resulta", 6 | "output": "Output", 7 | "clear": "Burahin", 8 | "add_tab": "Magdagdag ng bagong tab", 9 | "refresh": "I-refresh ang pahina", 10 | "format": "I-format ang source code", 11 | "copy": "Kopyahin ang source code", 12 | "mode": "Compile mode", 13 | "client_render": "Client-side rendering", 14 | "server_render": "Server-side rendering", 15 | "client_hydration_render": "Client-side rendering na may hydration", 16 | "dark_mode": "Gawing madilim o maliwanag", 17 | "import_json": "I-import ang JSON", 18 | "export_json": "I-export ang JSON", 19 | "export_codesandbox": "I-export papuntang CodeSandBox", 20 | "share": "Ibahagi na may minified link", 21 | "scale": "I-scale ang editor para palakihin o paliitin ang mga nakasulat" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/tr/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ekip ve Katkıda Bulunanlar", 3 | "core_team": "Çekirdek Ekip", 4 | "acknowledgments": "Teşekkürler", 5 | "ecosystem_team": "Ekosistem Ekibi", 6 | "copy": "Solid, diğer yetenekli bireylerin yardımı olmadan mümkün olmazdı. Biz büyüdükçe, başkalarının hata raporlama, çekme istekleri, tasarım önerileri, yazma ve diğer birçok yolla zaman ayırmanın yollarını bulacağını umuyoruz.", 7 | "translators_copy": "Aşağıdaki kişiler, Solid'in uluslararası hale gelmesini sağlamak için nezaketle zamanlarını ve çabalarını verdiler:", 8 | "contributors": "Katkıda Bulunanlar", 9 | "open_collective": "Open Collective", 10 | "support_copy": "Bize bir bağışla destek olun ve faaliyetlerimize devam etmemize yardımcı olun:" 11 | } -------------------------------------------------------------------------------- /lang/tr/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Döküman" 3 | } -------------------------------------------------------------------------------- /lang/tr/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Örnekler", 3 | "basic": "Temel", 4 | "complex": "Kompleks" 5 | } -------------------------------------------------------------------------------- /lang/tr/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Türkçe", 3 | "title": "SolidJS · Reaktif Javascript Kütüphanesi", 4 | "locale": "tr-TR", 5 | "nav": [ 6 | { 7 | "title": "Başlarken", 8 | "path": "/guides" 9 | }, 10 | { 11 | "title": "Döküman", 12 | "path": "/docs/latest/api" 13 | }, 14 | { 15 | "title": "SolidStart", 16 | "path": "https://start.solidjs.com", 17 | "external": true 18 | }, 19 | { 20 | "title": "Kaynaklar", 21 | "path": "/resources" 22 | }, 23 | { 24 | "title": "Eğitim", 25 | "path": "/tutorial" 26 | }, 27 | { 28 | "title": "Örnekler", 29 | "path": "/examples" 30 | }, 31 | { 32 | "title": "Online Kod Editörü", 33 | "path": "https://playground.solidjs.com", 34 | "external": true 35 | }, 36 | { 37 | "title": "Blog", 38 | "path": "/blog" 39 | }, 40 | { 41 | "title": "Medya", 42 | "path": "/media" 43 | } 44 | ], 45 | "404": { 46 | "header": "Oops. Dört yüz dört.", 47 | "body": "bu sayfanın kesinlikle var olmadığına inanıyor" 48 | }, 49 | "footer": { 50 | "declaration": "Solid, ortak katkıda bulunanlardan oluşan bir ekip tarafından desteklenen açık kaynaklı bir projedir. Bir MIT lisansı altında dağıtır. Bu kütüphane ve topluluk, çekirdek bir ekip ve özel katkıda bulunanlar tarafından mümkün kılınmıştır.", 51 | "license": "https://github.com/solidjs/solid/blob/master/LICENSE", 52 | "contributors": "/contributors", 53 | "sponsored_by": "Sponsorluğunda", 54 | "updated": "Solid v{{version}} Son Güncelleme {{date}}" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lang/tr/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Medya Varlıkları", 3 | "copy": "Aşağıdakiler Solid markasını temsil eden varlıklardır. Tüm varlıklar açık kaynak katkıları olarak kabul edilir ve açık standartlara ve lisanslama kurallarına göre kullanılmalıdır. Marka uyumuyla ilgili ek öğeler veya sorular için destek ve rehberlik için Discord'umuza katılmaktan çekinmeyin.", 4 | "brand_font": "Brand Yazı Tipi", 5 | "primary": "Birincil Renk", 6 | "secondary": "İkincil Renk", 7 | "light": "Açık Renk", 8 | "accent": "Vurgu Rengi", 9 | "resources": { 10 | "with_wordmark": "Yazı ile", 11 | "without_wordmark": "Yazısız", 12 | "only_wordmark": "Sadece Yazı", 13 | "dark_with_wordmark": "Koyu Yazı ile", 14 | "dark_without_wordmark": "Koyu Yazısız", 15 | "dark_only_wordmark": "Sadece Koyu Yazı" 16 | } 17 | } -------------------------------------------------------------------------------- /lang/tr/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Kaynaklar", 3 | "cta": "SolidJS ile ilgili projenizin burada listelenmesi için Discord üzerinden bize ulaşın .", 4 | "search": "Kaynak ara", 5 | "types": "Tipler", 6 | "types_list": { 7 | "article": "Makale", 8 | "video": "Video", 9 | "library": "Kütüphane", 10 | "package": "Paket" 11 | }, 12 | "published": "Yayınlandı", 13 | "days_ago": "{{amount}} gün önce", 14 | "hours_ago": "{{amount}} saat önce", 15 | "categories": "Kategoriler", 16 | "translations": "Çeviriler", 17 | "categories_list": { 18 | "primitive": "Basit", 19 | "router": "Rota Araçları", 20 | "data": "Veri", 21 | "ui": "UI", 22 | "plugin": "Eklentiler", 23 | "starters": "Başlarken", 24 | "build_utility": "Build Araçları", 25 | "add_on": "Farklı", 26 | "testing": "Test", 27 | "educational": "Eğitimsel" 28 | }, 29 | "official": "Kurumsal", 30 | "by": "By {{author}}" 31 | } -------------------------------------------------------------------------------- /lang/tr/tr.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/tr/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Çöz", 3 | "reset": "Çözümü geri al", 4 | "playground": { 5 | "result": "Sonuç", 6 | "output": "Çıktı", 7 | "clear": "Temizle", 8 | "add_tab": "Yeni tab", 9 | "refresh": "Sayfayı yenile", 10 | "format": "Kodu geri al", 11 | "copy": "Kodu kopyala", 12 | "mode": "Derleyici mod", 13 | "client_render": "Ön taraf render (CSR)", 14 | "server_render": "Arka taraf render (SSR)", 15 | "client_hydration_render": "hydration ile ön taraf render", 16 | "dark_mode": "Koyu modu değiştir", 17 | "import_json": "JSON içeri aktar", 18 | "export_json": "JSON dışarı aktar", 19 | "export_codesandbox": "CodeSandBox'a aktar", 20 | "share": "Kısaltılmış link ile paylaş", 21 | "scale": "Metni büyütmek veya küçültmek için düzenleyiciyi ölçeklendirin" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/uk/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Команда та внески", 3 | "core_team": "Основна команда", 4 | "acknowledgments": "Вдячності", 5 | "ecosystem_team": "Екосистемна команда", 6 | "copy": "Solid не існував би без допомоги інших талановитих особистостей. Упродовж росту ми сподіваємося, що інші вкладуть свій час, сповіщаючи про баґи, створюючи pull request'и, пропонуючи зміни в дизайні, пишучи документацію чи роблячи інші внески.", 7 | "translators_copy": "Перераховані далі особистості люб'язно вклали свій час та зусилля, аби переконатися, що Solid стане інтернаціональним:", 8 | "contributors": "Контриб'ютори", 9 | "internationalization": "Інтернаціоналізація", 10 | "open_collective": "Open Collective", 11 | "support_copy": "Підтримайте нас донатом та допоможіть продовжити нашу діяльність:" 12 | } 13 | -------------------------------------------------------------------------------- /lang/uk/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Документація" 3 | } 4 | -------------------------------------------------------------------------------- /lang/uk/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Бібліотека прикладів", 3 | "basic": "Просте", 4 | "complex": "Складне" 5 | } 6 | -------------------------------------------------------------------------------- /lang/uk/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Медіаресурси", 3 | "copy": "Наведені далі ресурси репрезентують бренд Solid. Усі ресурси вважаються внеском з відкритим початковим кодом та мають використовуватися відповідно до відкритих стандартів та правил ліцензування. Для додаткових ресурсів або по питаннях щодо погодження бренду сміливо доєднуйтесь до нашого Discord серверу для підтримки та рекомендацій.", 4 | "brand_font": "Брендовий шрифт", 5 | "primary": "Головний колір", 6 | "secondary": "Другорядний колір", 7 | "light": "Світлий колір", 8 | "accent": "Колір для акцентування", 9 | "copy_hex": "Натисніть на колір, аби скопіювати hex-код.", 10 | "resources": { 11 | "with_wordmark": "Зі словесним знаком", 12 | "without_wordmark": "Без словесного знаку", 13 | "only_wordmark": "Тільки словесний знак", 14 | "dark_with_wordmark": "Темний зі словесним знаком", 15 | "dark_without_wordmark": "Темний без словесного знаку", 16 | "dark_only_wordmark": "Темний тільки словесний знак" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/uk/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Екосистема", 3 | "cta": "Аби ваш проект, пов'язаний із SolidJS, був у списку тут, зв'яжіться з нами в Discord.", 4 | "search": "Пошук ресурсів", 5 | "types": "Типи", 6 | "types_list": { 7 | "article": "Стаття", 8 | "video": "Відео", 9 | "library": "Бібліотека", 10 | "package": "Пакет" 11 | }, 12 | "published": "Опубліковано", 13 | "days_ago": "{{amount}} днів тому", 14 | "hours_ago": "{{amount}} годин тому", 15 | "categories": "Категорії", 16 | "translations": "Переклади", 17 | "categories_list": { 18 | "primitive": "Примітиви", 19 | "router": "Роутери", 20 | "data": "Дані", 21 | "ui": "UI", 22 | "plugin": "Плагіни", 23 | "starters": "Стартери", 24 | "build_utility": "Утиліти для побудови", 25 | "add_on": "Додатки", 26 | "testing": "Тестування", 27 | "educational": "Освітнє" 28 | }, 29 | "official": "Офіційний", 30 | "by": "Від {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/uk/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "Розв'язати", 3 | "reset": "Скинути", 4 | "playground": { 5 | "result": "Результат", 6 | "output": "Вивід", 7 | "clear": "Очистити", 8 | "add_tab": "Додати нову вкладку", 9 | "refresh": "Оновити сторінку", 10 | "format": "Відформатувати початковий код", 11 | "copy": "Скопіювати початковий код", 12 | "mode": "Режим компіляції", 13 | "client_render": "Рендеринг з боку клієнта", 14 | "server_render": "Рендеринг з боку сервера", 15 | "client_hydration_render": "Рендеринг з боку клієнта з гідратацією", 16 | "dark_mode": "Перемикнути темний режим", 17 | "import_json": "Імпортувати JSON", 18 | "export_json": "Експортувати JSON", 19 | "export_codesandbox": "Експортувати в CodeSandBox", 20 | "share": "Поділитися скороченим посиланням", 21 | "scale": "Збільшити або зменшити текст" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/uk/uk.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/zh-cn/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "团队与贡献", 3 | "core_team": "核心团队", 4 | "acknowledgments": "致谢", 5 | "ecosystem_team": "生态团队", 6 | "copy": "如果没有其他优秀的人的帮助,Solid是不可能的。我们希望大家通过 报告bug、pull requests、设计建议、写博客和其他更多的方式来一起共建社区。", 7 | "translators_copy": "以下人员慷慨地付出了时间和精力来确保 Solid 走向国际:", 8 | "contributors": "贡献者", 9 | "open_collective": "Open Collective", 10 | "support_copy": "通过捐款支持我们,并帮助我们继续我们的活动:" 11 | } -------------------------------------------------------------------------------- /lang/zh-cn/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "文档" 3 | } 4 | -------------------------------------------------------------------------------- /lang/zh-cn/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "示例库", 3 | "basic": "基础", 4 | "complex": "复杂" 5 | } 6 | -------------------------------------------------------------------------------- /lang/zh-cn/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "视觉传媒资料", 3 | "copy": "以下是代表 Solid 品牌的资料。所有资料都被视为开源贡献,应根据开放标准和许可规则使用。关于与品牌对齐有关的其他资料或问题,请随时加入我们的 Discord 以获得支持和指导。", 4 | "brand_font": "品牌字体", 5 | "primary": "主色", 6 | "secondary": "辅色", 7 | "light": "浅色", 8 | "accent": "强调色", 9 | "copy_hex": "单击颜色即可复制", 10 | "resources": { 11 | "with_wordmark": "带字标", 12 | "without_wordmark": "不带字标", 13 | "only_wordmark": "只有字标", 14 | "dark_with_wordmark": "暗色带字标", 15 | "dark_without_wordmark": "暗色无字标", 16 | "dark_only_wordmark": "暗色字标" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/zh-cn/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "生态系统", 3 | "cta": "要展示你的 SolidJS 项目可以通过 Discord 联系我们。", 4 | "search": "搜索", 5 | "types": "分类", 6 | "types_list": { 7 | "article": "文章", 8 | "video": "视频", 9 | "library": "库", 10 | "package": "包" 11 | }, 12 | "published": "Published", 13 | "days_ago": "{{amount}} 天前", 14 | "hours_ago": "{{amount}} 小时前", 15 | "categories": "类别", 16 | "translations": "翻译", 17 | "categories_list": { 18 | "primitive": "Primitive", 19 | "router": "路由", 20 | "data": "数据", 21 | "ui": "UI", 22 | "plugin": "插件", 23 | "starters": "脚手架", 24 | "build_utility": "构建工具", 25 | "add_on": "扩展", 26 | "testing": "测试", 27 | "educational": "教学" 28 | }, 29 | "official": "官方", 30 | "by": "作者 {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/zh-cn/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "解决", 3 | "reset": "重置", 4 | "playground": { 5 | "result": "结果", 6 | "output": "输出", 7 | "clear": "清除", 8 | "add_tab": "添加新 tab", 9 | "refresh": "刷新页面", 10 | "format": "格式化代码", 11 | "copy": "复制代码", 12 | "mode": "编译模式", 13 | "client_render": "客户端渲染", 14 | "server_render": "服务端渲染", 15 | "client_hydration_render": "客户端渲染注水", 16 | "dark_mode": "打开深色模式", 17 | "import_json": "导入 JSON", 18 | "export_json": "导出 JSON", 19 | "export_codesandbox": "导出到 CodeSandBox", 20 | "share": "分享链接", 21 | "scale": "缩放编辑器来放大或缩小文本" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/zh-cn/zh-cn.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /lang/zh-tw/contributors.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "團隊與貢獻", 3 | "core_team": "核心團隊", 4 | "acknowledgments": "致謝", 5 | "ecosystem_team": "生態團體", 6 | "copy": "Solid 的出現有賴各位優秀人員的幫助。隨着我們繼續發展,希望大家能以報錯、pull requests、設計建議、書寫等的方式支持我們。", 7 | "translators_copy": "感謝以下人員慷慨付出時間和精力確保 Solid 走向國際:", 8 | "contributors": "貢獻者", 9 | "open_collective": "Open Collective", 10 | "support_copy": "通過捐款支持我們繼續活動:" 11 | } 12 | -------------------------------------------------------------------------------- /lang/zh-tw/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "文件" 3 | } 4 | -------------------------------------------------------------------------------- /lang/zh-tw/examples.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "範例庫", 3 | "basic": "基礎", 4 | "complex": "進階" 5 | } 6 | -------------------------------------------------------------------------------- /lang/zh-tw/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "媒體素材", 3 | "copy": "以下是代表 Solid 品牌的素材。所有素材都被視爲開源貢獻,應根據開放標準和授權規則使用。有關品牌一致性及更多的素材的問題,歡迎加入我們的 Discord 取得支援和指導。", 4 | "brand_font": "品牌字型", 5 | "primary": "主顏色", 6 | "secondary": "次顏色", 7 | "light": "亮色", 8 | "accent": "強調色", 9 | "copy_hex": "單擊顏色即可複製 HEX 色碼", 10 | "resources": { 11 | "with_wordmark": "帶字標", 12 | "without_wordmark": "不帶字標", 13 | "only_wordmark": "只有字標", 14 | "dark_with_wordmark": "暗色帶字標", 15 | "dark_without_wordmark": "暗色無字標", 16 | "dark_only_wordmark": "暗色字標" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/zh-tw/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "生態系統", 3 | "cta": "要展示你的 SolidJS 相關專案,可以透過 Discord 聯絡我們。", 4 | "search": "搜尋", 5 | "types": "類型", 6 | "types_list": { 7 | "article": "文章", 8 | "video": "影片", 9 | "library": "函式庫", 10 | "package": "套件" 11 | }, 12 | "published": "已發佈", 13 | "days_ago": "{{amount}} 天前", 14 | "hours_ago": "{{amount}} 小時前", 15 | "categories": "分類", 16 | "translations": "翻譯", 17 | "categories_list": { 18 | "primitive": "基礎單元", 19 | "router": "路由", 20 | "data": "資料", 21 | "ui": "UI", 22 | "plugin": "外掛", 23 | "starters": "專案範本", 24 | "build_utility": "建構工具", 25 | "add_on": "附加元件", 26 | "testing": "測試", 27 | "educational": "教育" 28 | }, 29 | "official": "官方", 30 | "by": "作者 {{author}}" 31 | } 32 | -------------------------------------------------------------------------------- /lang/zh-tw/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "solve": "解答", 3 | "reset": "重設", 4 | "playground": { 5 | "result": "結果", 6 | "output": "輸出", 7 | "clear": "清除", 8 | "add_tab": "新增頁面", 9 | "refresh": "重新整理頁面", 10 | "format": "程式碼排版", 11 | "copy": "複製程式碼", 12 | "mode": "編譯模式", 13 | "client_render": "客户端成像", 14 | "server_render": "伺服端成像", 15 | "client_hydration_render": "帶水合( hydration )的客户端成像", 16 | "dark_mode": "暗色模式", 17 | "import_json": "匯入 JSON", 18 | "export_json": "匯入 JSON", 19 | "export_codesandbox": "匯入到 CodeSandBox", 20 | "share": "透過最小化連結分享", 21 | "scale": "縮放編輯器以放大或縮小文字" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/zh-tw/zh-tw.ts: -------------------------------------------------------------------------------- 1 | import global from './global.json'; 2 | import home from './home.json'; 3 | import resources from './resources.json'; 4 | import tutorial from './tutorial.json'; 5 | import media from './media.json'; 6 | import examples from './examples.json'; 7 | import contributors from './contributors.json'; 8 | import docs from './docs.json'; 9 | 10 | export const dict = { 11 | global, 12 | home, 13 | docs, 14 | media, 15 | resources, 16 | tutorial, 17 | examples, 18 | contributors, 19 | }; 20 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('tailwindcss/nesting'), 4 | require('tailwindcss'), 5 | require('autoprefixer')], 6 | }; 7 | -------------------------------------------------------------------------------- /postoptimize.mjs: -------------------------------------------------------------------------------- 1 | import { minifyFiles as jsonOptimize } from '@aminya/minijson'; 2 | import { optimize as svgOptimize } from 'svgo'; 3 | import { readFile, writeFile } from 'fs/promises'; 4 | import glob from 'fast-glob'; 5 | 6 | const svgFiles = await glob(['./dist/**/*.svg'], { 7 | dot: true, 8 | cwd: process.cwd(), 9 | onlyFiles: true, 10 | absolute: true, 11 | }); 12 | 13 | const jsonFiles = await glob(['./dist/**/*.json'], { 14 | dot: true, 15 | cwd: process.cwd(), 16 | onlyFiles: true, 17 | absolute: true, 18 | }); 19 | 20 | await Promise.all([ 21 | jsonOptimize(jsonFiles), 22 | ...svgFiles.map(async (svgFile) => { 23 | const svgString = await readFile(svgFile, 'utf8'); 24 | const { data } = await svgOptimize(svgString, { 25 | path: svgFile, 26 | multipass: true, 27 | }); 28 | await writeFile(svgFile, data); 29 | }), 30 | ]); 31 | -------------------------------------------------------------------------------- /public/examples/asyncresource.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | { 4 | "name": "main", 5 | "content": "import { createSignal, createResource } from \"solid-js\";\nimport { render } from \"solid-js/web\";\n\nconst fetchUser = async (id) =>\n (await fetch(`https://swapi.dev/api/people/${id}/`)).json();\n\nconst App = () => {\n const [userId, setUserId] = createSignal();\n const [user] = createResource(userId, fetchUser);\n\n return (\n <>\n setUserId(e.currentTarget.value)}\n />\n {user.loading && \"Loading...\"}\n
{JSON.stringify(user(), null, 2)}\n
{count()}
\n \n \n >\n );\n};\n\nconst App = () => (\nClick the links in the Navigation above to load different routes.
\n >\n);\n\nconst Profile: Component = () => (\n <>\nThis section could be about you.
\n >\n);\n\nconst Settings: Component = () => (\n <>\nAll that configuration you never really ever want to look at.
\n >\n);\n\nconst App = () => {\n const matches = createRouteHandler();\n return (\n <>\n \n