@verdaccio/ui-theme 3.1.0 → 6.0.0-6-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +33 -0
- package/.eslintrc +115 -0
- package/.stylelintrc +40 -0
- package/CHANGELOG.md +152 -554
- package/LICENSE +1 -1
- package/README.md +22 -95
- package/config/env.js +9 -0
- package/jest/api/packages.json +42 -0
- package/jest/identity.js +29 -0
- package/jest/jest.config.js +39 -0
- package/jest/jestEnvironment.js +1 -0
- package/jest/server-handlers.ts +9 -0
- package/jest/server.ts +6 -0
- package/jest/setup-env.ts +15 -0
- package/jest/setup.ts +31 -0
- package/jest/unit/components/__mocks__/api.ts +47 -0
- package/jest/unit/components/__mocks__/token.ts +31 -0
- package/jest/unit/components/store/login.ts +23 -0
- package/jest/unit/components/store/logo.ts +7 -0
- package/jest/unit/components/store/package.ts +174 -0
- package/jest/unit/components/store/packageMeta.ts +592 -0
- package/jest/unit/empty.ts +1 -0
- package/lib/constants.ts +9 -0
- package/package.json +153 -228
- package/src/App/App.test.tsx +123 -0
- package/src/App/App.tsx +54 -0
- package/src/App/AppError.tsx +38 -0
- package/src/App/AppRoute.tsx +63 -0
- package/src/App/Footer/Footer.test.tsx +20 -0
- package/src/App/Footer/Footer.tsx +111 -0
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +456 -0
- package/src/App/Footer/index.ts +1 -0
- package/src/App/Footer/styles.ts +44 -0
- package/src/App/Header/Header.test.tsx +152 -0
- package/src/App/Header/Header.tsx +74 -0
- package/src/App/Header/HeaderGreetings.tsx +22 -0
- package/src/App/Header/HeaderInfoDialog.tsx +19 -0
- package/src/App/Header/HeaderLeft.tsx +31 -0
- package/src/App/Header/HeaderMenu.tsx +65 -0
- package/src/App/Header/HeaderRight.tsx +118 -0
- package/src/App/Header/HeaderToolTip.tsx +19 -0
- package/src/App/Header/HeaderToolTipIcon.tsx +75 -0
- package/src/App/Header/LanguageSwitch.tsx +125 -0
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +112 -0
- package/src/App/Header/LoginDialog/LoginDialog.tsx +81 -0
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +32 -0
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +97 -0
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +43 -0
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +48 -0
- package/src/App/Header/LoginDialog/__snapshots__/LoginDialog.test.tsx.snap +3 -0
- package/src/App/Header/LoginDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +27 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +155 -0
- package/src/App/Header/RegistryInfoContent/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +30 -0
- package/src/App/Header/RegistryInfoDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/styles.ts +16 -0
- package/src/App/Header/RegistryInfoDialog/types.ts +7 -0
- package/src/App/Header/Search/Search.test.tsx +168 -0
- package/src/App/Header/Search/Search.tsx +127 -0
- package/src/App/Header/Search/SearchAdornment.tsx +18 -0
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +101 -0
- package/src/App/Header/Search/index.ts +1 -0
- package/src/App/Header/index.ts +1 -0
- package/src/App/Header/styles.ts +89 -0
- package/src/App/index.ts +1 -0
- package/src/App/utils/loadable.tsx +10 -0
- package/src/components/.eslintrc +7 -0
- package/src/components/ActionBar/ActionBar.test.tsx +91 -0
- package/src/components/ActionBar/ActionBar.tsx +45 -0
- package/src/components/ActionBar/ActionBarAction.tsx +75 -0
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +122 -0
- package/src/components/ActionBar/index.ts +1 -0
- package/src/components/AppBar.tsx +10 -0
- package/src/components/Author/Author.test.tsx +75 -0
- package/src/components/Author/Author.tsx +47 -0
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +353 -0
- package/src/components/Author/index.ts +1 -0
- package/src/components/Author/styles.ts +23 -0
- package/src/components/AutoComplete/AutoComplete.tsx +179 -0
- package/src/components/AutoComplete/AutoCompleteV2.tsx +296 -0
- package/src/components/AutoComplete/index.ts +1 -0
- package/src/components/AutoComplete/styles.tsx +58 -0
- package/src/components/AutoComplete/useAutoComplete.tsx +61 -0
- package/src/components/Avatar.tsx +3 -0
- package/src/components/Box.tsx +8 -0
- package/src/components/Button.tsx +10 -0
- package/src/components/Card.tsx +10 -0
- package/src/components/CardActions.tsx +13 -0
- package/src/components/CardContent.tsx +10 -0
- package/src/components/Chip.tsx +10 -0
- package/src/components/CircularProgress.tsx +15 -0
- package/src/components/CopyToClipBoard.tsx +45 -0
- package/src/components/Dialog.tsx +10 -0
- package/src/components/DialogActions.tsx +16 -0
- package/src/components/DialogContent.tsx +16 -0
- package/src/components/DialogTitle.tsx +10 -0
- package/src/components/Divider.tsx +10 -0
- package/src/components/FloatingActionButton.tsx +12 -0
- package/src/components/FormControl.tsx +10 -0
- package/src/components/FormHelperText.tsx +16 -0
- package/src/components/Grid.tsx +10 -0
- package/src/components/Heading.tsx +15 -0
- package/src/components/IconButton.tsx +10 -0
- package/src/components/Icons/.eslintrc +5 -0
- package/src/components/Icons/Earth.tsx +36 -0
- package/src/components/Icons/FileBinary.tsx +20 -0
- package/src/components/Icons/Law.tsx +20 -0
- package/src/components/Icons/License.tsx +18 -0
- package/src/components/Icons/Time.tsx +19 -0
- package/src/components/Icons/Version.tsx +20 -0
- package/src/components/Icons/index.ts +5 -0
- package/src/components/Input.tsx +10 -0
- package/src/components/InputAdornment/InputAdornment.tsx +16 -0
- package/src/components/InputAdornment/index.ts +1 -0
- package/src/components/InputLabel.tsx +10 -0
- package/src/components/Label/Label.test.tsx +15 -0
- package/src/components/Label/Label.tsx +35 -0
- package/src/components/Label/__snapshots__/Label.test.tsx.snap +14 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link.tsx +39 -0
- package/src/components/List.tsx +10 -0
- package/src/components/ListItem.tsx +23 -0
- package/src/components/ListItemText.tsx +16 -0
- package/src/components/Loading/Loading.test.tsx +12 -0
- package/src/components/Loading/Loading.tsx +17 -0
- package/src/components/Loading/Spinner/Spinner.test.tsx +14 -0
- package/src/components/Loading/Spinner/Spinner.tsx +35 -0
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +148 -0
- package/src/components/Loading/Spinner/index.tsx +1 -0
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +86 -0
- package/src/components/Loading/index.ts +1 -0
- package/src/components/Loading/styles.ts +17 -0
- package/src/components/Logo/Logo.test.tsx +12 -0
- package/src/components/Logo/Logo.tsx +55 -0
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +19 -0
- package/src/components/Logo/img/logo-black-and-white.svg +1 -0
- package/src/components/Logo/img/logo.svg +1 -0
- package/src/components/Logo/index.ts +1 -0
- package/src/components/Menu.tsx +10 -0
- package/src/components/MenuItem.tsx +25 -0
- package/src/components/NotFound/NotFound.tsx +52 -0
- package/src/components/NotFound/Notfound.test.tsx +37 -0
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +44 -0
- package/src/components/NotFound/img/package.svg +1 -0
- package/src/components/NotFound/index.ts +1 -0
- package/src/components/NotFound/styles.ts +40 -0
- package/src/components/Paper.tsx +10 -0
- package/src/components/SnackbarContent.tsx +15 -0
- package/src/components/SvgIcon.tsx +38 -0
- package/src/components/Tab.tsx +10 -0
- package/src/components/Tabs.tsx +14 -0
- package/src/components/Text/Text.tsx +17 -0
- package/src/components/Text/TextConfig.ts +7 -0
- package/src/components/Text/index.ts +2 -0
- package/src/components/TextField/TextField.test.tsx +16 -0
- package/src/components/TextField/TextField.tsx +23 -0
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +19 -0
- package/src/components/TextField/index.ts +1 -0
- package/src/components/Toolbar.tsx +10 -0
- package/src/components/Tooltip.tsx +25 -0
- package/src/design-tokens/ResetStyles.tsx +44 -0
- package/src/design-tokens/StyleBaseline.tsx +14 -0
- package/src/design-tokens/ThemeContext.ts +13 -0
- package/src/design-tokens/ThemeProvider.tsx +44 -0
- package/src/design-tokens/emotion.ts +5 -0
- package/src/design-tokens/load-dayjs-locale.ts +98 -0
- package/src/design-tokens/theme.ts +159 -0
- package/src/design-tokens/useLocalStorage.ts +40 -0
- package/src/design-tokens/useOnClickOutside.ts +28 -0
- package/src/design-tokens/useTheme.ts +7 -0
- package/src/i18n/ABOUT_TRANSLATIONS.md +13 -0
- package/src/i18n/config.ts +52 -0
- package/src/i18n/crowdin/ui.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/cs-CZ.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/de-DE.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/en-US.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/es-ES.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/fr-FR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ja-JP.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/km-KH.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/pt-BR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ru-RU.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/tr-TR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/uk-UA.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-CN.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-TW.json +165 -0
- package/src/i18n/enabledLanguages.ts +35 -0
- package/src/index.tsx +36 -0
- package/src/lib/constants.ts +9 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +93 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +100 -0
- package/src/pages/Version/DetailContainer/Dependencies/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +26 -0
- package/src/pages/Version/DetailContainer/Dependencies/types.ts +7 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +34 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +31 -0
- package/src/pages/Version/DetailContainer/Deprecated/index.ts +1 -0
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +13 -0
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +37 -0
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +41 -0
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +19 -0
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +36 -0
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +9 -0
- package/src/pages/Version/DetailContainer/NoItems/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +19 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +22 -0
- package/src/pages/Version/DetailContainer/Readme/__snapshots__/Readme.spec.tsx.snap +94 -0
- package/src/pages/Version/DetailContainer/Readme/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/types.ts +3 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +58 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +45 -0
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +247 -0
- package/src/pages/Version/DetailContainer/UpLinks/index.ts +1 -0
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +24 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +60 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +41 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +40 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +28 -0
- package/src/pages/Version/DetailContainer/Versions/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailContainer/Versions/__snapshots__/Versions.test.tsx.snap +3 -0
- package/src/pages/Version/DetailContainer/Versions/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Versions/styles.ts +30 -0
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +103 -0
- package/src/pages/Version/DetailContainer/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +55 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +111 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +53 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +40 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +117 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +90 -0
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +32 -0
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +380 -0
- package/src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts +16 -0
- package/src/pages/Version/DetailSidebar/Developers/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +31 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +49 -0
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +602 -0
- package/src/pages/Version/DetailSidebar/Dist/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +27 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +71 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +58 -0
- package/src/pages/Version/DetailSidebar/Engines/img/node.png +0 -0
- package/src/pages/Version/DetailSidebar/Engines/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +14 -0
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +64 -0
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +52 -0
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +97 -0
- package/src/pages/Version/DetailSidebar/Install/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Install/img/npm.svg +15 -0
- package/src/pages/Version/DetailSidebar/Install/img/pnpm.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/img/yarn.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +93 -0
- package/src/pages/Version/DetailSidebar/Repository/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Repository/__snapshots__/Repository.test.tsx.snap +3 -0
- package/src/pages/Version/DetailSidebar/Repository/img/git.png +0 -0
- package/src/pages/Version/DetailSidebar/Repository/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/index.ts +1 -0
- package/src/pages/Version/Version.test.tsx +68 -0
- package/src/pages/Version/Version.tsx +41 -0
- package/src/pages/Version/VersionContextProvider.tsx +43 -0
- package/src/pages/Version/VersionLayout.tsx +20 -0
- package/src/pages/Version/__partials__/data.json +5984 -0
- package/src/pages/Version/context.ts +10 -0
- package/src/pages/Version/get-route-package-name.ts +9 -0
- package/src/pages/Version/index.ts +4 -0
- package/src/pages/Version/version-config.ts +19 -0
- package/src/pages/home/Home.tsx +25 -0
- package/src/pages/home/PackageList/Help/Help.test.tsx +12 -0
- package/src/pages/home/PackageList/Help/Help.tsx +56 -0
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +159 -0
- package/src/pages/home/PackageList/Help/index.ts +1 -0
- package/src/pages/home/PackageList/Help/styles.ts +13 -0
- package/src/pages/home/PackageList/Package/Package.test.tsx +56 -0
- package/src/pages/home/PackageList/Package/Package.tsx +253 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +16 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.tsx +11 -0
- package/src/pages/home/PackageList/Package/Tag/__snapshots__/Tag.test.tsx.snap +21 -0
- package/src/pages/home/PackageList/Package/Tag/index.ts +1 -0
- package/src/pages/home/PackageList/Package/Tag/styles.ts +11 -0
- package/src/pages/home/PackageList/Package/index.ts +1 -0
- package/src/pages/home/PackageList/Package/styles.ts +112 -0
- package/src/pages/home/PackageList/PackageList.tsx +81 -0
- package/src/pages/home/PackageList/Packagelist.test.tsx +60 -0
- package/src/pages/home/PackageList/index.ts +1 -0
- package/src/pages/home/index.ts +1 -0
- package/src/providers/API/api.test.ts +136 -0
- package/src/providers/API/api.ts +73 -0
- package/src/providers/API/storage.ts +12 -0
- package/src/providers/config/AppConfigurationProvider.tsx +57 -0
- package/src/providers/config/index.ts +1 -0
- package/src/store/index.ts +1 -0
- package/src/store/models/configuration.ts +42 -0
- package/src/store/models/download.ts +31 -0
- package/src/store/models/index.ts +17 -0
- package/src/store/models/login.ts +90 -0
- package/src/store/models/manifest.ts +91 -0
- package/src/store/models/packages.ts +36 -0
- package/src/store/models/search.ts +81 -0
- package/src/store/store.ts +15 -0
- package/src/template/favicon.ico +0 -0
- package/src/template/index.html +21 -0
- package/src/utils/.eslintrc +5 -0
- package/src/utils/cli-utils.test.ts +66 -0
- package/src/utils/cli-utils.ts +38 -0
- package/src/utils/colors.ts +1 -0
- package/src/utils/constants.ts +5 -0
- package/src/utils/file-size.ts +13 -0
- package/src/utils/i18nForTests.ts +25 -0
- package/src/utils/login.test.ts +71 -0
- package/src/utils/login.ts +44 -0
- package/src/utils/package.test.ts +101 -0
- package/src/utils/package.ts +105 -0
- package/src/utils/sec-utils.ts +15 -0
- package/src/utils/storage.ts +12 -0
- package/src/utils/test-react-testing-library.tsx +38 -0
- package/src/utils/url.test.ts +28 -0
- package/src/utils/url.ts +58 -0
- package/src/utils/windows.ts +3 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +21 -0
- package/static/main.c57129036f278d0c7acf.js +2 -0
- package/static/main.c57129036f278d0c7acf.js.LICENSE.txt +1456 -0
- package/static/manifest.json +5 -17
- package/static/runtime.c57129036f278d0c7acf.js +2 -0
- package/static/{runtime.f6e570dfe38870a45bf5.js.LICENSE.txt → runtime.c57129036f278d0c7acf.js.LICENSE.txt} +2 -2
- package/static/vendors.c57129036f278d0c7acf.js +2 -0
- package/static/vendors.c57129036f278d0c7acf.js.LICENSE.txt +2932 -0
- package/tools/.eslintrc +14 -0
- package/tools/_verdaccio.config.yaml +59 -0
- package/tools/dev.server.js +48 -0
- package/tools/getPackageJson.js +25 -0
- package/tools/verdaccio.js +31 -0
- package/tools/webpack.config.js +82 -0
- package/tools/webpack.dev.config.babel.js +60 -0
- package/tools/webpack.prod.config.babel.js +81 -0
- package/tsconfig.build.json +24 -0
- package/tsconfig.json +27 -0
- package/types/custom.d.ts +9 -0
- package/types/files.d.ts +9 -0
- package/types/index.ts +12 -0
- package/types/jest-dom.d.ts +1 -0
- package/types/packageMeta.ts +82 -0
- package/static/238.f6e570dfe38870a45bf5.js +0 -2
- package/static/238.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/718.f6e570dfe38870a45bf5.js +0 -2
- package/static/718.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/73.f6e570dfe38870a45bf5.js +0 -2
- package/static/73.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dependencies.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dependencies.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dist.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dist.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Engines.f6e570dfe38870a45bf5.js +0 -2
- package/static/Engines.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Home.f6e570dfe38870a45bf5.js +0 -2
- package/static/Home.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Install.f6e570dfe38870a45bf5.js +0 -2
- package/static/Install.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/NotFound.f6e570dfe38870a45bf5.js +0 -2
- package/static/NotFound.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Provider.f6e570dfe38870a45bf5.js +0 -2
- package/static/Provider.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Repository.f6e570dfe38870a45bf5.js +0 -2
- package/static/Repository.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/UpLinks.f6e570dfe38870a45bf5.js +0 -2
- package/static/UpLinks.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Version.f6e570dfe38870a45bf5.js +0 -2
- package/static/Version.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Versions.f6e570dfe38870a45bf5.js +0 -2
- package/static/Versions.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/main.f6e570dfe38870a45bf5.js +0 -2
- package/static/main.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/runtime.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -98
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "Copiar al portapapeles",
|
|
3
|
+
"author-anonymous": "Anónimo",
|
|
4
|
+
"author-unknown": "Desconocido",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Visitar página principal",
|
|
7
|
+
"open-an-issue": "Reportar un error",
|
|
8
|
+
"download-tarball": "Descargar librería"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Información del Registro"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Documentación",
|
|
17
|
+
"registry-info": "Información del Registro",
|
|
18
|
+
"greetings": "Hola "
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "Buscar paquetes"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "Cargando...",
|
|
25
|
+
"no-results-found": "No se encontraron resultados",
|
|
26
|
+
"clear": "Limpiar",
|
|
27
|
+
"expand": "Expandir",
|
|
28
|
+
"collapse": "Retraer"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "Remoto",
|
|
32
|
+
"versions": "Versiones",
|
|
33
|
+
"dependencies": "Dependencias",
|
|
34
|
+
"readme": "Léeme"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "Remoto",
|
|
38
|
+
"no-items": "{{name}} no tiene remotos."
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "Etiquetas actuales",
|
|
42
|
+
"version-history": "Historial de versiones",
|
|
43
|
+
"not-available": "No disponible"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "Publicado en {{time}} •",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "Ir a la página principal",
|
|
49
|
+
"homepage": "Página pricinpal",
|
|
50
|
+
"open-an-issue": "Reportar un problema",
|
|
51
|
+
"bugs": "Errores",
|
|
52
|
+
"download": "Descargar {{what}}",
|
|
53
|
+
"the-tar-file": "el archivo tar",
|
|
54
|
+
"tarball": "Librería"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}} no tiene dependencias.",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "Usuario",
|
|
62
|
+
"password": "Contraseña"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "Tu usuario",
|
|
66
|
+
"password": "Tu contraseña segura"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "Este campo es requerido",
|
|
70
|
+
"required-min-length": "Este campo es requerido y la mínima longitud es {{length}}",
|
|
71
|
+
"unable-to-sign-in": "No se pudo iniciar sesión",
|
|
72
|
+
"username-or-password-cant-be-empty": "El nombre de usuario o la contraseña no pueden estar vacíos!"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "Ningún paquete ha sido publicado aún.",
|
|
76
|
+
"sub-title": "Para publicar tu primer paquete:",
|
|
77
|
+
"first-step": "1. Inicia sesión",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. Publica",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "3. Refresca la página."
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "Última v{{version}}",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "Instalación",
|
|
90
|
+
"install-using-yarn": "Instala usando yarn",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "Instala usando npm",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "Instala usando pnpm",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "Repositorio"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "Autor"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "Última distribución",
|
|
105
|
+
"license": "Licencia",
|
|
106
|
+
"size": "Tamaño",
|
|
107
|
+
"file-count": "archivo cuenta"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "Mantenedores"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "Colaboradores"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "Versión NPM",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "Hecho con",
|
|
122
|
+
"made-with-love-on": "Hecho con <0>♥</0> on"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "Cerrar",
|
|
126
|
+
"cancel": "Cancelar",
|
|
127
|
+
"login": "Iniciar sesión",
|
|
128
|
+
"logout": "Cerrar sesión",
|
|
129
|
+
"go-to-the-home-page": "Ir a la página principal",
|
|
130
|
+
"learn-more": "Aprender más",
|
|
131
|
+
"fund-this-package": "<0>Donar</0> a este paquete"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "Algo salió mal.",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "404 - Paquete no encontrado",
|
|
137
|
+
"sorry-we-could-not-find-it": "Lo siento, no pudimos encontrarlo..."
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "El contexto de la aplicación no fue correctamente usado",
|
|
140
|
+
"theme-context-not-correct-used": "El contexto del tema no fue correctamente usado",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "packageMeta es requerido en DetailContext"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "Inglés",
|
|
145
|
+
"czech": "Checo",
|
|
146
|
+
"japanese": "Japonés",
|
|
147
|
+
"portuguese": "Portugués",
|
|
148
|
+
"spanish": "Español",
|
|
149
|
+
"german": "Alemán",
|
|
150
|
+
"chinese": "Chino",
|
|
151
|
+
"chineseTraditional": "Chino (Tradicional)",
|
|
152
|
+
"french": "Francés",
|
|
153
|
+
"russian": "Ruso",
|
|
154
|
+
"turkish": "Turco",
|
|
155
|
+
"ukraine": "Ucraniano",
|
|
156
|
+
"khmer": "khmer"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "Austria",
|
|
160
|
+
"brazil": "Brasil",
|
|
161
|
+
"spain": "España",
|
|
162
|
+
"nicaragua": "Nicaragua",
|
|
163
|
+
"india": "India",
|
|
164
|
+
"china": "China",
|
|
165
|
+
"germany": "Alemania",
|
|
166
|
+
"taiwan": "Taiwán"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "Copier dans le presse-papier",
|
|
3
|
+
"author-anonymous": "Anonyme",
|
|
4
|
+
"author-unknown": "Inconnue",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Visiter la page d'accueil",
|
|
7
|
+
"open-an-issue": "Ouvrir un ticket",
|
|
8
|
+
"download-tarball": "Télécharger l'archive"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Informations du Registry"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Documentation",
|
|
17
|
+
"registry-info": "Informations du Registry",
|
|
18
|
+
"greetings": "Bonjour "
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "Rechercher des paquets"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "En cours de chargement...",
|
|
25
|
+
"no-results-found": "Aucun resultat trouvé",
|
|
26
|
+
"clear": "Nettoyer",
|
|
27
|
+
"expand": "Développer",
|
|
28
|
+
"collapse": "Se rétracter"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "Uplinks",
|
|
32
|
+
"versions": "Versions",
|
|
33
|
+
"dependencies": "Dépendances",
|
|
34
|
+
"readme": "Readme"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "Uplinks",
|
|
38
|
+
"no-items": "{{name}} n'a pas de uplink."
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "Tags courants",
|
|
42
|
+
"version-history": "Historique de version",
|
|
43
|
+
"not-available": "Non disponible"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "Publié le {{time}} •",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "Visiter la page d'accueil",
|
|
49
|
+
"homepage": "Page d'accueil",
|
|
50
|
+
"open-an-issue": "Ouvrir un ticket",
|
|
51
|
+
"bugs": "Bugs",
|
|
52
|
+
"download": "Télécharger {{what}}",
|
|
53
|
+
"the-tar-file": "le fichier tar",
|
|
54
|
+
"tarball": "Archive"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}} n'a aucune dépendance.",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "Nom d'utilisateur",
|
|
62
|
+
"password": "Mot de passe"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "Votre nom d'utilisateur",
|
|
66
|
+
"password": "Votre mot de passe"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "Ce champ est obligatoire",
|
|
70
|
+
"required-min-length": "Ce champ doit faire au moins {{length}} caractères",
|
|
71
|
+
"unable-to-sign-in": "Connexion impossible",
|
|
72
|
+
"username-or-password-cant-be-empty": "Le nom d'utilisateur ou mot de passe ne peut pas être vide!"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "Aucun paquet publié pour l'instant.",
|
|
76
|
+
"sub-title": "Pour publier votre premier paquet:",
|
|
77
|
+
"first-step": "1. Se connecter",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. Publier",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "3. Recharger cette page."
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "Dernière v{{version}}",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "Installation",
|
|
90
|
+
"install-using-yarn": "Installer avec yarn",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "Installer avec npm",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "Installer avec pnpm",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "Dépôt"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "Auteur"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "Dernière distribution",
|
|
105
|
+
"license": "Licence",
|
|
106
|
+
"size": "Taille",
|
|
107
|
+
"file-count": "nombre de fichiers"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "Mainteneurs"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "Contributeurs"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "Version NPM",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "Propulsé par",
|
|
122
|
+
"made-with-love-on": "Fait avec <0>♥</0> sur"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "Fermer",
|
|
126
|
+
"cancel": "Annuler",
|
|
127
|
+
"login": "Se connecter",
|
|
128
|
+
"logout": "Se déconnecter",
|
|
129
|
+
"go-to-the-home-page": "Aller à la page d'accueil",
|
|
130
|
+
"learn-more": "En savoir plus",
|
|
131
|
+
"fund-this-package": "<0>Financer</0> ce paquet"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "Quelque chose a mal tourné.",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "404 - Page non trouvée",
|
|
137
|
+
"sorry-we-could-not-find-it": "Desolé, nous n'avons rien retrouvé..."
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "Le contexte de l'application n'a pas été utilisé correctement",
|
|
140
|
+
"theme-context-not-correct-used": "Le contexte du thème n'a pas été utilisé correctement",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "packageMeta est obligatoire à DetailContext"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "Anglais",
|
|
145
|
+
"czech": "Tchèque",
|
|
146
|
+
"japanese": "Japonais",
|
|
147
|
+
"portuguese": "Portugais",
|
|
148
|
+
"spanish": "Espagnol",
|
|
149
|
+
"german": "Allemand",
|
|
150
|
+
"chinese": "Chinois",
|
|
151
|
+
"chineseTraditional": "Chinois (Traditionnel)",
|
|
152
|
+
"french": "Français",
|
|
153
|
+
"russian": "Russe",
|
|
154
|
+
"turkish": "Turc",
|
|
155
|
+
"ukraine": "Ukrainien",
|
|
156
|
+
"khmer": "Khmer"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "L'Autriche",
|
|
160
|
+
"brazil": "Brésil",
|
|
161
|
+
"spain": "Espagne",
|
|
162
|
+
"nicaragua": "Nicaragua",
|
|
163
|
+
"india": "Inde",
|
|
164
|
+
"china": "Chine",
|
|
165
|
+
"germany": "Allemagne",
|
|
166
|
+
"taiwan": "Taïwan"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "クリップボードにコピー",
|
|
3
|
+
"author-anonymous": "匿名",
|
|
4
|
+
"author-unknown": "わからない",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "ホームページへ移動",
|
|
7
|
+
"open-an-issue": "課題を開く",
|
|
8
|
+
"download-tarball": "tar形式でダウンロード"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "レジストリの設定方法"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "ドキュメント",
|
|
17
|
+
"registry-info": "レジストリ情報",
|
|
18
|
+
"greetings": "こんにちは、"
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "パッケージを検索"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "ロード中...",
|
|
25
|
+
"no-results-found": "パッケージが見つかりませんでした",
|
|
26
|
+
"clear": "きれいにするため",
|
|
27
|
+
"expand": "拡大する",
|
|
28
|
+
"collapse": "撤回する"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "アップリンク",
|
|
32
|
+
"versions": "バージョン情報",
|
|
33
|
+
"dependencies": "依存パッケージ",
|
|
34
|
+
"readme": "Readme"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "アップリンク",
|
|
38
|
+
"no-items": "{{name}}にアップリンクはありません"
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "タグ一覧",
|
|
42
|
+
"version-history": "バージョン履歴",
|
|
43
|
+
"not-available": "利用できません"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "{{time}}に更新されました •",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "ホームページへ移動",
|
|
49
|
+
"homepage": "ホームページ",
|
|
50
|
+
"open-an-issue": "課題を開く",
|
|
51
|
+
"bugs": "バグ",
|
|
52
|
+
"download": "{{what}}ダウンロード",
|
|
53
|
+
"the-tar-file": "tar形式のファイル",
|
|
54
|
+
"tarball": "tar形式でダウンロード"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}}に依存パッケージはありません",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "ユーザ名",
|
|
62
|
+
"password": "パスワード"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "あなたのユーザ名",
|
|
66
|
+
"password": "あなたのパスワード"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "この項目は必ず入力して下さい",
|
|
70
|
+
"required-min-length": "この項目は{{length}}文字以上入力して下さい",
|
|
71
|
+
"unable-to-sign-in": "サインインできません",
|
|
72
|
+
"username-or-password-cant-be-empty": "ユーザ名とパスワードは空にできません"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "まだパッケージが登録されていません",
|
|
76
|
+
"sub-title": "以下の手順で最初のパッケージを登録しましょう",
|
|
77
|
+
"first-step": "1. ログイン",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. 登録",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "3. このページを再読み込みして下さい"
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "最新バージョンは{{version}}です",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "インストール方法",
|
|
90
|
+
"install-using-yarn": "yarnでインストール",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "npmでインストール",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "pnpmでインストール",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "リポジトリ"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "作者"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "最新の配信内容",
|
|
105
|
+
"license": "ライセンス",
|
|
106
|
+
"size": "サイズ",
|
|
107
|
+
"file-count": "ファイル数"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "パッケージメンテナ"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "コントリビューター"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "NPM Version",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "Powered by",
|
|
122
|
+
"made-with-love-on": "Made with <0>♥</0> on"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "閉じる",
|
|
126
|
+
"cancel": "キャンセル",
|
|
127
|
+
"login": "ログイン",
|
|
128
|
+
"logout": "ログアウト",
|
|
129
|
+
"go-to-the-home-page": "トップページに戻る",
|
|
130
|
+
"learn-more": "もっと知る",
|
|
131
|
+
"fund-this-package": "このパッケージに<0>投資</0>"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "何か問題が発生したようです。",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "404 - Page not found",
|
|
137
|
+
"sorry-we-could-not-find-it": "残念ながら、ご指定のページはありませんでした…。"
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "AppContextが正しく使用されませんでした",
|
|
140
|
+
"theme-context-not-correct-used": "ThemeContextが正しく使用されませんでした",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "DetailContextではpackageMetaが必要です"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "英語",
|
|
145
|
+
"czech": "チェコ人",
|
|
146
|
+
"japanese": "日本語",
|
|
147
|
+
"portuguese": "ポルトガル語",
|
|
148
|
+
"spanish": "スペイン語",
|
|
149
|
+
"german": "ドイツ語",
|
|
150
|
+
"chinese": "中国語",
|
|
151
|
+
"chineseTraditional": "繁体字中国語",
|
|
152
|
+
"french": "フランス語",
|
|
153
|
+
"russian": "ロシア",
|
|
154
|
+
"turkish": "トルコ人",
|
|
155
|
+
"ukraine": "ウクライナ",
|
|
156
|
+
"khmer": "クメール語"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "オーストリア",
|
|
160
|
+
"brazil": "ブラジル",
|
|
161
|
+
"spain": "スペイン",
|
|
162
|
+
"nicaragua": "ニカラグア",
|
|
163
|
+
"india": "インド",
|
|
164
|
+
"china": "中国",
|
|
165
|
+
"germany": "ドイツ",
|
|
166
|
+
"taiwan": "台湾"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "ចម្លងទៅក្ដារតម្បៀតខ្ទាស់",
|
|
3
|
+
"author-anonymous": "គ្មានអត្តសញ្ញាណ",
|
|
4
|
+
"author-unknown": "មិនស្គាល់",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "ទស្សនាគេហទំព័រ",
|
|
7
|
+
"open-an-issue": "បើកកិច្ចការ",
|
|
8
|
+
"download-tarball": "ទាញយកកញ្ចប់ឯកសារ"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "ព័ត៌មានការចុះឈ្មោះ"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "ឯកសារ",
|
|
17
|
+
"registry-info": "ព័ត៌មានការចុះឈ្មោះ",
|
|
18
|
+
"greetings": "សួស្តី"
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "ស្វែងរកកញ្ចប់"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "កំពុងផ្ទុក...",
|
|
25
|
+
"no-results-found": "រកមិនឃើញលទ្ធផល",
|
|
26
|
+
"clear": "សម្អាត",
|
|
27
|
+
"expand": "ពង្រីក",
|
|
28
|
+
"collapse": "ដកថយ"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "ភ្ជាប់តំណទៅ",
|
|
32
|
+
"versions": "កំណែ",
|
|
33
|
+
"dependencies": "អាស្រ័យលើ",
|
|
34
|
+
"readme": "អានខ្ញុំជាមុនសិន"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "ភ្ជាប់តំណទៅ",
|
|
38
|
+
"no-items": "{{name}} គ្មានភ្ជាប់តំណទៅ។"
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "ស្លាកបច្ចុប្បន្ន",
|
|
42
|
+
"version-history": "ប្រវត្តិសាស្រ្តជំនាន់",
|
|
43
|
+
"not-available": "Not available"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "បោះពុម្ភផ្សាយ {{time}}។",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "ទស្សនាគេហទំព័រ",
|
|
49
|
+
"homepage": "គេហទំព័រ",
|
|
50
|
+
"open-an-issue": "បើកកិច្ចការ",
|
|
51
|
+
"bugs": "កំហុស",
|
|
52
|
+
"download": "ទាញយក {{what}}",
|
|
53
|
+
"the-tar-file": "ឯកសាជា tar",
|
|
54
|
+
"tarball": "ឯកសារ Tarball"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}} មិនមានភាពអាស្រ័យ។",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "ឈ្មោះអ្នកប្រើប្រាស់",
|
|
62
|
+
"password": "ពាក្យសម្ងាត់"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "ឈ្មោះអ្នកប្រើរបស់អ្នក",
|
|
66
|
+
"password": "ពាក្យសម្ងាត់ខ្លាំងរបស់អ្នក"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "ចន្លោះនេះត្រូវតែំពេញ",
|
|
70
|
+
"required-min-length": "ប្រអប់នេះទាមទារប្រវែងអប្បបរមា {{length}}",
|
|
71
|
+
"unable-to-sign-in": "មិនអាចចូលបានទេ",
|
|
72
|
+
"username-or-password-cant-be-empty": "ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនអាចទទេ!"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "មិនទាន់មានការបោះពុម្ពផ្សាយកញ្ចប់នៅឡើយទេ។",
|
|
76
|
+
"sub-title": "ដើម្បីផ្សព្វផ្សាយកញ្ចប់ដំបូងរបស់អ្នកគ្រាន់តែ៖",
|
|
77
|
+
"first-step": "1. ចូល",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. ផ្សព្វផ្សាយ",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "ផ្ទុកទំព័រនេះឡើងវិញ។"
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "ចុងក្រោយ v{{version}}",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "ការដំឡើង",
|
|
90
|
+
"install-using-yarn": "ដំឡើងដោយប្រើ yarn",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "ដំឡើងដោយប្រើ npm",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "ដំឡើងដោយប្រើ pnpm",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "ឃ្លាំង"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "អ្នកនិពន្ធ"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "ការចែកចាយចុងក្រោយ",
|
|
105
|
+
"license": "អាជ្ញាប័ណ្ណ",
|
|
106
|
+
"size": "ទំហំ",
|
|
107
|
+
"file-count": "រាប់ឯកសារ"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "អ្នកថែរក្សា"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "អ្នកចូលរួមអភិវឌ្ឍ"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "NPM កំណែ",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "ឧបត្ថម្ភដោយ",
|
|
122
|
+
"made-with-love-on": "ផលិតជាមួយ <0>♥</0> លើ"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "បិទ",
|
|
126
|
+
"cancel": "បោះបង់",
|
|
127
|
+
"login": "ចូល",
|
|
128
|
+
"logout": "ចាកចេញ",
|
|
129
|
+
"go-to-the-home-page": "ទៅទំព័រដើម",
|
|
130
|
+
"learn-more": "ស្វែងយល់បន្ថែម",
|
|
131
|
+
"fund-this-package": "<0>Fund</0> កញ្ចប់នេះ"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "មានអ្វីមួយមិនប្រក្រតី។",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "៤០៤ - រកមិនឃើញទំព័រ",
|
|
137
|
+
"sorry-we-could-not-find-it": "សូមទោសយើងមិនអាចរកវាឃើញទេ..."
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "បរិបទកម្មវិធីមិនត្រូវបានប្រើត្រឹមត្រូវទេ",
|
|
140
|
+
"theme-context-not-correct-used": "បរិបទទម្រង់មិនត្រូវបានប្រើត្រឹមត្រូវទេ",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "packageMeta ត្រូវបានទាមទារនៅ DetailContext"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "អង់គ្លេស",
|
|
145
|
+
"czech": "ឆែក",
|
|
146
|
+
"japanese": "ជប៉ុន",
|
|
147
|
+
"portuguese": "ព័រទុយហ្កាល់",
|
|
148
|
+
"spanish": "អេស្ប៉ាញ",
|
|
149
|
+
"german": "អាឡឺម៉ង់",
|
|
150
|
+
"chinese": "ចិន",
|
|
151
|
+
"chineseTraditional": "ជនជាតិចិន (ប្រពៃណី)",
|
|
152
|
+
"french": "បារាំង",
|
|
153
|
+
"russian": "រុស្ស៊ី",
|
|
154
|
+
"turkish": "ទួរគី",
|
|
155
|
+
"ukraine": "អ៊ុយក្រែន",
|
|
156
|
+
"khmer": "ខ្មែរ"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "អូទ្រីស",
|
|
160
|
+
"brazil": "ប្រេស៊ីល",
|
|
161
|
+
"spain": "អេស្ប៉ាញ",
|
|
162
|
+
"nicaragua": "នីការ៉ាហ្គា",
|
|
163
|
+
"india": "ឥណ្ឌា",
|
|
164
|
+
"china": "ចិន",
|
|
165
|
+
"germany": "ប្រទេសអាល្លឺម៉ង់",
|
|
166
|
+
"taiwan": "តៃវ៉ាន់"
|
|
167
|
+
}
|
|
168
|
+
}
|