@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,170 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "Copy to clipboard",
|
|
3
|
+
"author-anonymous": "Anonymous",
|
|
4
|
+
"author-unknown": "Unknown",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Visit homepage",
|
|
7
|
+
"open-an-issue": "Open an issue",
|
|
8
|
+
"download-tarball": "Download tarball"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Registry Info"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Documentation",
|
|
17
|
+
"registry-info": "Registry Information",
|
|
18
|
+
"registry-info-link": "Learn more",
|
|
19
|
+
"registry-no-conf": "No configurations available",
|
|
20
|
+
"greetings": "Hi "
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"packages": "Search Packages"
|
|
24
|
+
},
|
|
25
|
+
"autoComplete": {
|
|
26
|
+
"loading": "Loading...",
|
|
27
|
+
"no-results-found": "No results found",
|
|
28
|
+
"clear": "Clear",
|
|
29
|
+
"expand": "Expand",
|
|
30
|
+
"collapse": "Collapse"
|
|
31
|
+
},
|
|
32
|
+
"tab": {
|
|
33
|
+
"uplinks": "Uplinks",
|
|
34
|
+
"versions": "Versions",
|
|
35
|
+
"dependencies": "Dependencies",
|
|
36
|
+
"readme": "Readme"
|
|
37
|
+
},
|
|
38
|
+
"uplinks": {
|
|
39
|
+
"title": "Uplinks",
|
|
40
|
+
"no-items": "{{name}} has no uplinks."
|
|
41
|
+
},
|
|
42
|
+
"versions": {
|
|
43
|
+
"current-tags": "Current Tags",
|
|
44
|
+
"version-history": "Version history",
|
|
45
|
+
"not-available": "Not available"
|
|
46
|
+
},
|
|
47
|
+
"package": {
|
|
48
|
+
"published-on": "Published on {{time}} •",
|
|
49
|
+
"version": "v{{version}}",
|
|
50
|
+
"visit-home-page": "Visit homepage",
|
|
51
|
+
"homepage": "Homepage",
|
|
52
|
+
"open-an-issue": "Open an issue",
|
|
53
|
+
"bugs": "Bugs",
|
|
54
|
+
"download": "Download {{what}}",
|
|
55
|
+
"the-tar-file": "the tar file",
|
|
56
|
+
"tarball": "Tarball"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"has-no-dependencies": "{{package}} has no dependencies.",
|
|
60
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
61
|
+
},
|
|
62
|
+
"form": {
|
|
63
|
+
"username": "Username",
|
|
64
|
+
"password": "Password"
|
|
65
|
+
},
|
|
66
|
+
"form-placeholder": {
|
|
67
|
+
"username": "Your username",
|
|
68
|
+
"password": "Your strong password"
|
|
69
|
+
},
|
|
70
|
+
"form-validation": {
|
|
71
|
+
"required-field": "This field is required",
|
|
72
|
+
"required-min-length": "This field required the min length of {{length}}",
|
|
73
|
+
"unable-to-sign-in": "Unable to sign in",
|
|
74
|
+
"username-or-password-cant-be-empty": "Username or password can't be empty!"
|
|
75
|
+
},
|
|
76
|
+
"help": {
|
|
77
|
+
"title": "No Package Published Yet.",
|
|
78
|
+
"sub-title": "To publish your first package just:",
|
|
79
|
+
"first-step": "1. Login",
|
|
80
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
81
|
+
"second-step": "2. Publish",
|
|
82
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
83
|
+
"third-step": "3. Refresh this page"
|
|
84
|
+
},
|
|
85
|
+
"sidebar": {
|
|
86
|
+
"detail": {
|
|
87
|
+
"latest-version": "Latest v{{version}}",
|
|
88
|
+
"version": "v{{version}}"
|
|
89
|
+
},
|
|
90
|
+
"installation": {
|
|
91
|
+
"title": "Installation",
|
|
92
|
+
"install-using-yarn": "Install using yarn",
|
|
93
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
94
|
+
"install-using-npm": "Install using npm",
|
|
95
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
96
|
+
"install-using-pnpm": "Install using pnpm",
|
|
97
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
98
|
+
},
|
|
99
|
+
"repository": {
|
|
100
|
+
"title": "Repository"
|
|
101
|
+
},
|
|
102
|
+
"author": {
|
|
103
|
+
"title": "Author"
|
|
104
|
+
},
|
|
105
|
+
"distribution": {
|
|
106
|
+
"title": "Latest Distribution",
|
|
107
|
+
"license": "License",
|
|
108
|
+
"size": "Size",
|
|
109
|
+
"file-count": "file count"
|
|
110
|
+
},
|
|
111
|
+
"maintainers": {
|
|
112
|
+
"title": "Maintainers"
|
|
113
|
+
},
|
|
114
|
+
"contributors": {
|
|
115
|
+
"title": "Contributors"
|
|
116
|
+
},
|
|
117
|
+
"engines": {
|
|
118
|
+
"npm-version": "NPM Version",
|
|
119
|
+
"node-js": "NODE JS"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"footer": {
|
|
123
|
+
"powered-by": "Powered by",
|
|
124
|
+
"made-with-love-on": "Made with <0>♥</0> on"
|
|
125
|
+
},
|
|
126
|
+
"button": {
|
|
127
|
+
"close": "Close",
|
|
128
|
+
"cancel": "Cancel",
|
|
129
|
+
"login": "Login",
|
|
130
|
+
"logout": "Logout",
|
|
131
|
+
"go-to-the-home-page": "Go to the home page",
|
|
132
|
+
"learn-more": "Learn More",
|
|
133
|
+
"fund-this-package": "<0>Fund</0> this package"
|
|
134
|
+
},
|
|
135
|
+
"error": {
|
|
136
|
+
"unspecific": "Something went wrong.",
|
|
137
|
+
"404": {
|
|
138
|
+
"page-not-found": "404 - Page not found",
|
|
139
|
+
"sorry-we-could-not-find-it": "Sorry, we couldn't find it..."
|
|
140
|
+
},
|
|
141
|
+
"app-context-not-correct-used": "The app context was not used correctly",
|
|
142
|
+
"theme-context-not-correct-used": "The theme context was not used correctly",
|
|
143
|
+
"package-meta-is-required-at-detail-context": "packageMeta is required at DetailContext"
|
|
144
|
+
},
|
|
145
|
+
"lng": {
|
|
146
|
+
"english": "English",
|
|
147
|
+
"czech": "Czech",
|
|
148
|
+
"japanese": "Japanese",
|
|
149
|
+
"portuguese": "Portuguese",
|
|
150
|
+
"spanish": "Spanish",
|
|
151
|
+
"german": "German",
|
|
152
|
+
"chinese": "Chinese",
|
|
153
|
+
"chineseTraditional": "Chinese (Traditional)",
|
|
154
|
+
"french": "French",
|
|
155
|
+
"russian": "Russian",
|
|
156
|
+
"turkish": "Turkish",
|
|
157
|
+
"ukraine": "Ukraine",
|
|
158
|
+
"khmer": "Khmer"
|
|
159
|
+
},
|
|
160
|
+
"flag": {
|
|
161
|
+
"austria": "Austria",
|
|
162
|
+
"brazil": "Brazil",
|
|
163
|
+
"spain": "Spain",
|
|
164
|
+
"nicaragua": "Nicaragua",
|
|
165
|
+
"india": "India",
|
|
166
|
+
"china": "China",
|
|
167
|
+
"germany": "Germany",
|
|
168
|
+
"taiwan": "Taiwan"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "Zkopírovat do schránky",
|
|
3
|
+
"author-anonymous": "Anonymní",
|
|
4
|
+
"author-unknown": "Neznámý",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Navštívit domovskou stránku",
|
|
7
|
+
"open-an-issue": "Otevřít otázku",
|
|
8
|
+
"download-tarball": "Stáhnout archív (Tar)"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Informace o registru"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Dokumentace",
|
|
17
|
+
"registry-info": "Informace o registru",
|
|
18
|
+
"greetings": "Ahoj "
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "Hledat balíčky"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "Načítání...",
|
|
25
|
+
"no-results-found": "Nebyly nalezeny žádné výsledky",
|
|
26
|
+
"clear": "Vyčistit",
|
|
27
|
+
"expand": "Otevřít",
|
|
28
|
+
"collapse": "Zavřít"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "Uplinky",
|
|
32
|
+
"versions": "Verze",
|
|
33
|
+
"dependencies": "Závislosti",
|
|
34
|
+
"readme": "Přečti si mě"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "Uplinky",
|
|
38
|
+
"no-items": "{{name}} nemá žádné uplinky."
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "Aktuální značky",
|
|
42
|
+
"version-history": "Historie verzí",
|
|
43
|
+
"not-available": "Nedostupné"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "Zveřejněno v {{time}} •",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "Navštívit domovskou stránku",
|
|
49
|
+
"homepage": "Domovská stránka",
|
|
50
|
+
"open-an-issue": "Otevřít otázku",
|
|
51
|
+
"bugs": "Chyby",
|
|
52
|
+
"download": "Stáhnout {{what}}",
|
|
53
|
+
"the-tar-file": "tar soubor",
|
|
54
|
+
"tarball": "Archív (Tar)"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}} nemá žádné závislosti.",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "Uživatelské jméno",
|
|
62
|
+
"password": "Heslo"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "Vaše uživatelské jméno",
|
|
66
|
+
"password": "Vaše silné heslo"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "Toto pole je povinné",
|
|
70
|
+
"required-min-length": "Toto pole vyžaduje zadání alespoň {{length}} znaků",
|
|
71
|
+
"unable-to-sign-in": "Přihlášení se nezdařilo",
|
|
72
|
+
"username-or-password-cant-be-empty": "Uživatelské jméno nebo heslo nemohou být prázdné!"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "Zatím nebyl zveřejně žádný balíček.",
|
|
76
|
+
"sub-title": "Pro zveřejnění vašeho prvního balíčku proveďte následující:",
|
|
77
|
+
"first-step": "1. Přihlašte se",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. Zveřejněte balíček",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "3. Obnovte tuto stránku."
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "Nejnovější v{{version}}",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "Instalace",
|
|
90
|
+
"install-using-yarn": "Instalace pomocí yarn",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "Instalace pomocí npm",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "Instalace pomocí pnpm",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "Repozitář"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "Autor"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "Nejnovější distribuce",
|
|
105
|
+
"license": "Licence",
|
|
106
|
+
"size": "Velikost",
|
|
107
|
+
"file-count": "počet souborů"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "Správci"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "Přispěvatelé"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "NPM verze",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "Pohání",
|
|
122
|
+
"made-with-love-on": "Tvořeno s <0>♥</0> na"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "Zavřít",
|
|
126
|
+
"cancel": "Zrušit",
|
|
127
|
+
"login": "Přihlásit se",
|
|
128
|
+
"logout": "Odhlásit se",
|
|
129
|
+
"go-to-the-home-page": "Přejít na domovskou stránku",
|
|
130
|
+
"learn-more": "Více informací",
|
|
131
|
+
"fund-this-package": "<0>Sponzorovat</0> tento balíček"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "Něco se pokazilo.",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "404 - Stránka nebyla nalezena",
|
|
137
|
+
"sorry-we-could-not-find-it": "Omlouváme se, ale nepodařilo se nám to najít..."
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "Kontext aplikace nebyl použit správným způsobem",
|
|
140
|
+
"theme-context-not-correct-used": "Kontext šablony nebyl použit správným způsobem",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "packageMeta je vyžadováno v DetailContext"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "Angličtina",
|
|
145
|
+
"czech": "Čeština",
|
|
146
|
+
"japanese": "Japonština",
|
|
147
|
+
"portuguese": "Portugalština",
|
|
148
|
+
"spanish": "Španělština",
|
|
149
|
+
"german": "Němčina",
|
|
150
|
+
"chinese": "Čínština",
|
|
151
|
+
"chineseTraditional": "Čínština (tradiční)",
|
|
152
|
+
"french": "Francouzština",
|
|
153
|
+
"russian": "Ruský",
|
|
154
|
+
"turkish": "Turečtina",
|
|
155
|
+
"ukraine": "Ukrajinština",
|
|
156
|
+
"khmer": "Khmerština"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "Rakousko",
|
|
160
|
+
"brazil": "Brazílie",
|
|
161
|
+
"spain": "Španělsko",
|
|
162
|
+
"nicaragua": "Nikaragua",
|
|
163
|
+
"india": "Indie",
|
|
164
|
+
"china": "Čína",
|
|
165
|
+
"germany": "Německo",
|
|
166
|
+
"taiwan": "Tchaj-wan"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "In die Zwischenablage kopieren",
|
|
3
|
+
"author-anonymous": "Anonymus",
|
|
4
|
+
"author-unknown": "Unbekannt",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Zur Homepage",
|
|
7
|
+
"open-an-issue": "Einen Fehler melden",
|
|
8
|
+
"download-tarball": "Archiv (Tarball) herunterladen"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Registrierungsinformationen"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Dokumentation",
|
|
17
|
+
"registry-info": "Registrierungsinformationen",
|
|
18
|
+
"greetings": "Hallo "
|
|
19
|
+
},
|
|
20
|
+
"search": {
|
|
21
|
+
"packages": "Pakete suchen"
|
|
22
|
+
},
|
|
23
|
+
"autoComplete": {
|
|
24
|
+
"loading": "wird geladen...",
|
|
25
|
+
"no-results-found": "Kein Ergebnis gefunden",
|
|
26
|
+
"clear": "Löschen",
|
|
27
|
+
"expand": "Erweitern",
|
|
28
|
+
"collapse": "Zurückziehen"
|
|
29
|
+
},
|
|
30
|
+
"tab": {
|
|
31
|
+
"uplinks": "Uplinks",
|
|
32
|
+
"versions": "Versionen",
|
|
33
|
+
"dependencies": "Abhängigkeiten",
|
|
34
|
+
"readme": "Liesmich"
|
|
35
|
+
},
|
|
36
|
+
"uplinks": {
|
|
37
|
+
"title": "Uplinks",
|
|
38
|
+
"no-items": "{{name}} hat keine Uplinks."
|
|
39
|
+
},
|
|
40
|
+
"versions": {
|
|
41
|
+
"current-tags": "Aktuelle Tags",
|
|
42
|
+
"version-history": "Versionsgeschichte",
|
|
43
|
+
"not-available": "Nicht verfügbar"
|
|
44
|
+
},
|
|
45
|
+
"package": {
|
|
46
|
+
"published-on": "Veröffentlicht am {{time}} •",
|
|
47
|
+
"version": "v{{version}}",
|
|
48
|
+
"visit-home-page": "Zur Homepage",
|
|
49
|
+
"homepage": "Homepage",
|
|
50
|
+
"open-an-issue": "Einen Fehler melden",
|
|
51
|
+
"bugs": "Fehler",
|
|
52
|
+
"download": "{{what}} herunterladen",
|
|
53
|
+
"the-tar-file": "die tar-Datei",
|
|
54
|
+
"tarball": "Archiv (Tarball)"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"has-no-dependencies": "{{package}} hat keine Abhängigkeiten",
|
|
58
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
59
|
+
},
|
|
60
|
+
"form": {
|
|
61
|
+
"username": "Benutzername",
|
|
62
|
+
"password": "Passwort"
|
|
63
|
+
},
|
|
64
|
+
"form-placeholder": {
|
|
65
|
+
"username": "Dein Benutzername",
|
|
66
|
+
"password": "Dein sicheres Passwort"
|
|
67
|
+
},
|
|
68
|
+
"form-validation": {
|
|
69
|
+
"required-field": "Dieses Feld ist erforderlich",
|
|
70
|
+
"required-min-length": "Dieses Feld erfordert eine Mindestlänge von {{length}}",
|
|
71
|
+
"unable-to-sign-in": "Anmeldung nicht möglich",
|
|
72
|
+
"username-or-password-cant-be-empty": "Benutzername und Passwort dürfen nicht leer sein!"
|
|
73
|
+
},
|
|
74
|
+
"help": {
|
|
75
|
+
"title": "Noch kein Paket publiziert.",
|
|
76
|
+
"sub-title": "Um dein erstes Paket einfach zu publizieren:",
|
|
77
|
+
"first-step": "1. Einloggen",
|
|
78
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
79
|
+
"second-step": "2. Publizieren",
|
|
80
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
81
|
+
"third-step": "3. Diese Seite aktualisieren."
|
|
82
|
+
},
|
|
83
|
+
"sidebar": {
|
|
84
|
+
"detail": {
|
|
85
|
+
"latest-version": "Letzte v{{version}}",
|
|
86
|
+
"version": "v{{version}}"
|
|
87
|
+
},
|
|
88
|
+
"installation": {
|
|
89
|
+
"title": "Installierung",
|
|
90
|
+
"install-using-yarn": "Mit yarn installieren",
|
|
91
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
92
|
+
"install-using-npm": "Mit npm installieren",
|
|
93
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
94
|
+
"install-using-pnpm": "Mit pnpm installieren",
|
|
95
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
96
|
+
},
|
|
97
|
+
"repository": {
|
|
98
|
+
"title": "Repository"
|
|
99
|
+
},
|
|
100
|
+
"author": {
|
|
101
|
+
"title": "Autor(in)"
|
|
102
|
+
},
|
|
103
|
+
"distribution": {
|
|
104
|
+
"title": "Neueste Distribution",
|
|
105
|
+
"license": "Lizenz",
|
|
106
|
+
"size": "Größe",
|
|
107
|
+
"file-count": "Anzahl der Dateien"
|
|
108
|
+
},
|
|
109
|
+
"maintainers": {
|
|
110
|
+
"title": "Maintainer"
|
|
111
|
+
},
|
|
112
|
+
"contributors": {
|
|
113
|
+
"title": "Contributor"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"npm-version": "NPM Version",
|
|
117
|
+
"node-js": "NODE JS"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"footer": {
|
|
121
|
+
"powered-by": "Unterstützt von",
|
|
122
|
+
"made-with-love-on": "Gemacht mit <0>♥</0> in"
|
|
123
|
+
},
|
|
124
|
+
"button": {
|
|
125
|
+
"close": "Schließen",
|
|
126
|
+
"cancel": "Abbrechen",
|
|
127
|
+
"login": "Einloggen",
|
|
128
|
+
"logout": "Ausloggen",
|
|
129
|
+
"go-to-the-home-page": "Zur Homepage",
|
|
130
|
+
"learn-more": "Mehr erfahren",
|
|
131
|
+
"fund-this-package": "Dieses Paket <0>finanzieren</0>"
|
|
132
|
+
},
|
|
133
|
+
"error": {
|
|
134
|
+
"unspecific": "Etwas ist schief gelaufen.",
|
|
135
|
+
"404": {
|
|
136
|
+
"page-not-found": "404 - Seite nicht gefunden",
|
|
137
|
+
"sorry-we-could-not-find-it": "Entschuldigung, wir konnten es nicht finden..."
|
|
138
|
+
},
|
|
139
|
+
"app-context-not-correct-used": "Der App-Kontext wurde nicht korrekt verwendet",
|
|
140
|
+
"theme-context-not-correct-used": "Der Theme-Kontext wurde nicht korrekt verwendet",
|
|
141
|
+
"package-meta-is-required-at-detail-context": "packageMeta wird bei DetailContext benötigt"
|
|
142
|
+
},
|
|
143
|
+
"lng": {
|
|
144
|
+
"english": "Englisch",
|
|
145
|
+
"czech": "Tschechisch",
|
|
146
|
+
"japanese": "Japanisch",
|
|
147
|
+
"portuguese": "Portugiesisch",
|
|
148
|
+
"spanish": "Spanisch",
|
|
149
|
+
"german": "Deutsch",
|
|
150
|
+
"chinese": "Chinesisch",
|
|
151
|
+
"chineseTraditional": "Chinesisch (Traditionell)",
|
|
152
|
+
"french": "Französisch",
|
|
153
|
+
"russian": "Russisch",
|
|
154
|
+
"turkish": "Türkisch",
|
|
155
|
+
"ukraine": "Ukrainisch",
|
|
156
|
+
"khmer": "Khmer"
|
|
157
|
+
},
|
|
158
|
+
"flag": {
|
|
159
|
+
"austria": "Österreich",
|
|
160
|
+
"brazil": "Brasilien",
|
|
161
|
+
"spain": "Spanien",
|
|
162
|
+
"nicaragua": "Nicaragua",
|
|
163
|
+
"india": "Indien",
|
|
164
|
+
"china": "China",
|
|
165
|
+
"germany": "Deutschland",
|
|
166
|
+
"taiwan": "Taiwan"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copy-to-clipboard": "Copy to clipboard",
|
|
3
|
+
"author-anonymous": "Anonymous",
|
|
4
|
+
"author-unknown": "Unknown",
|
|
5
|
+
"action-bar-action": {
|
|
6
|
+
"visit-home-page": "Visit homepage",
|
|
7
|
+
"open-an-issue": "Open an issue",
|
|
8
|
+
"download-tarball": "Download tarball"
|
|
9
|
+
},
|
|
10
|
+
"dialog": {
|
|
11
|
+
"registry-info": {
|
|
12
|
+
"title": "Registry Info"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"header": {
|
|
16
|
+
"documentation": "Documentation",
|
|
17
|
+
"registry-info": "Registry Information",
|
|
18
|
+
"registry-info-link": "Learn more",
|
|
19
|
+
"registry-no-conf": "No configurations available",
|
|
20
|
+
"greetings": "Hi "
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"packages": "Search Packages"
|
|
24
|
+
},
|
|
25
|
+
"autoComplete": {
|
|
26
|
+
"loading": "Loading...",
|
|
27
|
+
"no-results-found": "No results found",
|
|
28
|
+
"clear": "Clear",
|
|
29
|
+
"expand": "Expand",
|
|
30
|
+
"collapse": "Collapse"
|
|
31
|
+
},
|
|
32
|
+
"tab": {
|
|
33
|
+
"uplinks": "Uplinks",
|
|
34
|
+
"versions": "Versions",
|
|
35
|
+
"dependencies": "Dependencies",
|
|
36
|
+
"readme": "Readme"
|
|
37
|
+
},
|
|
38
|
+
"uplinks": {
|
|
39
|
+
"title": "Uplinks",
|
|
40
|
+
"no-items": "{{name}} has no uplinks."
|
|
41
|
+
},
|
|
42
|
+
"versions": {
|
|
43
|
+
"current-tags": "Current Tags",
|
|
44
|
+
"version-history": "Version history",
|
|
45
|
+
"not-available": "Not available"
|
|
46
|
+
},
|
|
47
|
+
"package": {
|
|
48
|
+
"published-on": "Published on {{time}} •",
|
|
49
|
+
"version": "v{{version}}",
|
|
50
|
+
"visit-home-page": "Visit homepage",
|
|
51
|
+
"homepage": "Homepage",
|
|
52
|
+
"open-an-issue": "Open an issue",
|
|
53
|
+
"bugs": "Bugs",
|
|
54
|
+
"download": "Download {{what}}",
|
|
55
|
+
"the-tar-file": "the tar file",
|
|
56
|
+
"tarball": "Tarball"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"has-no-dependencies": "{{package}} has no dependencies.",
|
|
60
|
+
"dependency-block": "{{package}}@{{version}}"
|
|
61
|
+
},
|
|
62
|
+
"form": {
|
|
63
|
+
"username": "Username",
|
|
64
|
+
"password": "Password"
|
|
65
|
+
},
|
|
66
|
+
"form-placeholder": {
|
|
67
|
+
"username": "Your username",
|
|
68
|
+
"password": "Your strong password"
|
|
69
|
+
},
|
|
70
|
+
"form-validation": {
|
|
71
|
+
"required-field": "This field is required",
|
|
72
|
+
"required-min-length": "This field required the min length of {{length}}",
|
|
73
|
+
"unable-to-sign-in": "Unable to sign in",
|
|
74
|
+
"username-or-password-cant-be-empty": "Username or password can't be empty!"
|
|
75
|
+
},
|
|
76
|
+
"help": {
|
|
77
|
+
"title": "No Package Published Yet.",
|
|
78
|
+
"sub-title": "To publish your first package just:",
|
|
79
|
+
"first-step": "1. Login",
|
|
80
|
+
"first-step-command-line": "npm adduser --registry {{registryUrl}}",
|
|
81
|
+
"second-step": "2. Publish",
|
|
82
|
+
"second-step-command-line": "npm publish --registry {{registryUrl}}",
|
|
83
|
+
"third-step": "3. Refresh this page."
|
|
84
|
+
},
|
|
85
|
+
"sidebar": {
|
|
86
|
+
"detail": {
|
|
87
|
+
"latest-version": "Latest v{{version}}",
|
|
88
|
+
"version": "v{{version}}"
|
|
89
|
+
},
|
|
90
|
+
"installation": {
|
|
91
|
+
"title": "Installation",
|
|
92
|
+
"install-using-yarn": "Install using yarn",
|
|
93
|
+
"install-using-yarn-command": "yarn add {{packageName}}",
|
|
94
|
+
"install-using-npm": "Install using npm",
|
|
95
|
+
"install-using-npm-command": "npm install {{packageName}}",
|
|
96
|
+
"install-using-pnpm": "Install using pnpm",
|
|
97
|
+
"install-using-pnpm-command": "pnpm install {{packageName}}"
|
|
98
|
+
},
|
|
99
|
+
"repository": {
|
|
100
|
+
"title": "Repository"
|
|
101
|
+
},
|
|
102
|
+
"author": {
|
|
103
|
+
"title": "Author"
|
|
104
|
+
},
|
|
105
|
+
"distribution": {
|
|
106
|
+
"title": "Latest Distribution",
|
|
107
|
+
"license": "License",
|
|
108
|
+
"size": "Size",
|
|
109
|
+
"file-count": "file count"
|
|
110
|
+
},
|
|
111
|
+
"maintainers": {
|
|
112
|
+
"title": "Maintainers"
|
|
113
|
+
},
|
|
114
|
+
"contributors": {
|
|
115
|
+
"title": "Contributors"
|
|
116
|
+
},
|
|
117
|
+
"engines": {
|
|
118
|
+
"npm-version": "NPM Version",
|
|
119
|
+
"node-js": "NODE JS"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"footer": {
|
|
123
|
+
"powered-by": "Powered by",
|
|
124
|
+
"made-with-love-on": "Made with <0>♥</0> on"
|
|
125
|
+
},
|
|
126
|
+
"button": {
|
|
127
|
+
"close": "Close",
|
|
128
|
+
"cancel": "Cancel",
|
|
129
|
+
"login": "Login",
|
|
130
|
+
"logout": "Logout",
|
|
131
|
+
"go-to-the-home-page": "Go to the home page",
|
|
132
|
+
"learn-more": "Learn More",
|
|
133
|
+
"fund-this-package": "<0>Fund</0> this package"
|
|
134
|
+
},
|
|
135
|
+
"error": {
|
|
136
|
+
"unspecific": "Something went wrong.",
|
|
137
|
+
"404": {
|
|
138
|
+
"page-not-found": "404 - Page not found",
|
|
139
|
+
"sorry-we-could-not-find-it": "Sorry, we couldn't find it..."
|
|
140
|
+
},
|
|
141
|
+
"app-context-not-correct-used": "The app context was not used correctly",
|
|
142
|
+
"theme-context-not-correct-used": "The theme context was not used correctly",
|
|
143
|
+
"package-meta-is-required-at-detail-context": "packageMeta is required at DetailContext"
|
|
144
|
+
},
|
|
145
|
+
"lng": {
|
|
146
|
+
"english": "English",
|
|
147
|
+
"czech": "Czech",
|
|
148
|
+
"japanese": "Japanese",
|
|
149
|
+
"portuguese": "Portuguese",
|
|
150
|
+
"spanish": "Spanish",
|
|
151
|
+
"german": "German",
|
|
152
|
+
"chinese": "Chinese",
|
|
153
|
+
"chineseTraditional": "Chinese (Traditional)",
|
|
154
|
+
"french": "French",
|
|
155
|
+
"russian": "Russian",
|
|
156
|
+
"turkish": "Turkish",
|
|
157
|
+
"ukraine": "Ukraine",
|
|
158
|
+
"khmer": "Khmer"
|
|
159
|
+
},
|
|
160
|
+
"flag": {
|
|
161
|
+
"austria": "Austria",
|
|
162
|
+
"brazil": "Brazil",
|
|
163
|
+
"spain": "Spain",
|
|
164
|
+
"nicaragua": "Nicaragua",
|
|
165
|
+
"india": "India",
|
|
166
|
+
"china": "China",
|
|
167
|
+
"germany": "Germany",
|
|
168
|
+
"taiwan": "Taiwan"
|
|
169
|
+
}
|
|
170
|
+
}
|