diff --git a/i18n/config.ts b/i18n/config.ts index d11e8e2..12becef 100644 --- a/i18n/config.ts +++ b/i18n/config.ts @@ -8,6 +8,7 @@ import translationDE from './translations/de-DE.json'; import translationFR from './translations/fr-FR.json'; import translationCN from './translations/zh-CN.json'; import translationJP from './translations/ja-JP.json'; +import translationUA from './translations/uk-UA.json'; const languages = { 'en-US': { @@ -31,6 +32,9 @@ const languages = { 'ja-JP': { translation: translationJP, }, + 'uk-UA': { + translation: translationUA, + }, }; type Language = keyof typeof languages; @@ -44,7 +48,7 @@ i18n // in case window.VEDACCIO_LANGUAGE is undefined,it will fall back to 'en-US' lng: window?.__VERDACCIO_BASENAME_UI_OPTIONS?.language, fallbackLng: 'en-US', - whitelist: ['en-US', 'pt-BR', 'es-ES', 'de-DE', 'fr-FR', 'zh-CN', 'ja-JP'], + whitelist: ['en-US', 'pt-BR', 'es-ES', 'de-DE', 'fr-FR', 'zh-CN', 'ja-JP', 'uk-UA'], load: 'currentOnly', resources: languages, debug: false, diff --git a/i18n/translations/de-DE.json b/i18n/translations/de-DE.json index 74de61e..6926701 100644 --- a/i18n/translations/de-DE.json +++ b/i18n/translations/de-DE.json @@ -143,7 +143,8 @@ "spanish": "Spanisch", "german": "Deutsch", "chinese": "Chinesisch", - "french": "Französisch" + "french": "Französisch", + "ukraine": "Ukrainisch" }, "help-to-translate": "Hilfe beim Übersetzen", "change-language": "Sprache ändern" diff --git a/i18n/translations/en-US.json b/i18n/translations/en-US.json index cc3b09c..b63bebf 100644 --- a/i18n/translations/en-US.json +++ b/i18n/translations/en-US.json @@ -143,7 +143,8 @@ "spanish": "Spanish", "german": "German", "chinese": "Chinese", - "french": "French" + "french": "French", + "ukraine": "Ukraine" }, "help-to-translate": "Help to translate", "change-language": "Change language" diff --git a/i18n/translations/es-ES.json b/i18n/translations/es-ES.json index 55352ed..642462f 100644 --- a/i18n/translations/es-ES.json +++ b/i18n/translations/es-ES.json @@ -143,7 +143,8 @@ "spanish": "Español", "german": "Alemán", "chinese": "Chino", - "french": "francés" + "french": "Francés", + "ukraine": "Ucraniano" }, "help-to-translate": "Ayuda a traducir", "change-language": "Cambiar idioma" diff --git a/i18n/translations/fr-FR.json b/i18n/translations/fr-FR.json index e4d01d3..ef3f104 100644 --- a/i18n/translations/fr-FR.json +++ b/i18n/translations/fr-FR.json @@ -143,7 +143,8 @@ "spanish": "Espagnol", "german": "Allemand", "chinese": "Chinois", - "french": "Français" + "french": "Français", + "ukraine": "Ukrainien" }, "help-to-translate": "Aide à la traduction", "change-language": "Changer la langue" diff --git a/i18n/translations/ja-JP.json b/i18n/translations/ja-JP.json index af881ca..eabd114 100644 --- a/i18n/translations/ja-JP.json +++ b/i18n/translations/ja-JP.json @@ -143,7 +143,8 @@ "spanish": "スペイン語", "german": "ドイツ語", "chinese": "中国語", - "french": "フランス語" + "french": "フランス語", + "ukraine": "ウクライナ" }, "help-to-translate": "翻訳を助ける", "change-language": "言語を変更" diff --git a/i18n/translations/pt-BR.json b/i18n/translations/pt-BR.json index 7572ea6..0e01e68 100644 --- a/i18n/translations/pt-BR.json +++ b/i18n/translations/pt-BR.json @@ -143,7 +143,8 @@ "spanish": "Espanhol", "german": "Alemão", "chinese": "Chinês", - "french": "Francês" + "french": "Francês", + "ukraine": "Ucraniano" }, "help-to-translate": "Ajude a traduzir", "change-language": "Mudar idioma" diff --git a/i18n/translations/uk-UA.json b/i18n/translations/uk-UA.json new file mode 100644 index 0000000..ff09060 --- /dev/null +++ b/i18n/translations/uk-UA.json @@ -0,0 +1,151 @@ +{ + "copy-to-clipboard": "Копіювати в буфер обміну", + "author-anonymous": "Анонімний", + "action-bar-action": { + "visit-home-page": "Відвідати домашню сторінку", + "open-an-issue": "Відкрити питання, проблему, ...", + "download-tarball": "Завантажити архів" + }, + "dialog": { + "registry-info": { + "title": "Інформація про реєстр" + } + }, + "header": { + "documentation": "Документація", + "registry-info": "Інформація про реєстр", + "greetings": "Привіт " + }, + "search": { + "packages": "Пошук пакетів" + }, + "auto-complete": { + "loading": "Завантаження...", + "no-results-found": "Нічого не знайдено" + }, + "tab": { + "uplinks": "Публікації", + "versions": "Версії", + "dependencies": "Залежності", + "readme": "Опис" + }, + "uplinks": { + "title": "Публікації", + "no-items": "{{name}} не опубліковано." + }, + "versions": { + "current-tags": "Поточні теги", + "version-history": "Історія версій", + "not-available": "Недоступний" + }, + "package": { + "published-on": "Опубліковано {{time}} •", + "version": "v{{version}}", + "visit-home-page": "Відвідати домашню сторінку", + "homepage": "Домашня сторінка", + "open-an-issue": "Відкрити питання, проблему, ...", + "bugs": "Помилки", + "download": "Завантажити {{what}}", + "the-tar-file": "файл tar", + "tarball": "Завантажити" + }, + "dependencies": { + "has-no-dependencies": "{{package}} не має залежностей.", + "dependency-block": "{{package}}@{{version}}" + }, + "form": { + "username": "Ім'я користувача", + "password": "Пароль" + }, + "form-placeholder": { + "username": "Ваше ім'я користувача", + "password": "Ваш надійний пароль" + }, + "form-validation": { + "required-field": "Це поле є обов'язковим", + "required-min-length": "Для цього поля потрібна мінімальна довжина {{length}}", + "unable-to-sign-in": "Неможливо ввійти", + "username-or-password-cant-be-empty": "Ім'я користувача або пароль не можуть бути порожніми !" + }, + "help": { + "title": "Пакети ще не опубліковані", + "sub-title": "Опублікувати свій перший пакет просто:", + "first-step": "1. Підключіться", + "first-step-command-line": "npm adduser --registry {{registryUrl}}", + "second-step": "2. Опублікуйте", + "second-step-command-line": "npm publish --registry {{registryUrl}}", + "third-step": "3. Оновіть цю сторінку." + }, + "sidebar": { + "detail": { + "latest-version": "Остання версія v{{version}}", + "version": "v{{version}}" + }, + "installation": { + "title": "Встановлення", + "install-using-yarn": "Встановлення за допомогою yarn", + "install-using-yarn-command": "yarn add {{packageName}}", + "install-using-npm": "Встановлення за допомогою npm", + "install-using-npm-command": "npm install {{packageName}}", + "install-using-pnpm": "Встановлення за допомогою pnpm", + "install-using-pnpm-command": "pnpm install {{packageName}}" + }, + "repository": { + "title": "Сховище" + }, + "author": { + "title": "Автор" + }, + "distribution": { + "title": "Умови поширення", + "license": "Ліцензія", + "size": "Розмір", + "file-count": "кількість файлів" + }, + "maintainers": { + "title": "Технічне супроводження" + }, + "contributors": { + "title": "Автори" + }, + "engines": { + "npm-version": "NPM версія", + "node-js": "NODE JS" + } + }, + "footer": { + "powered-by": "Працює на", + "made-with-love-on": "Зроблено з <0> ♥ на" + }, + "button": { + "close": "Закрити", + "cancel": "Скасувати", + "login": "Вхід", + "logout": "Вийти", + "go-to-the-home-page": "Перейдіть на головну сторінку", + "learn-more": "Вивчайте більше", + "fund-this-package": "<0>Фінансувати цей пакет" + }, + "error": { + "unspecific": "Щось пішло не так.", + "404": { + "page-not-found": "404 - Сторінку не знайдено", + "sorry-we-could-not-find-it": "На жаль, ми не змогли його знайти ..." + }, + "app-context-not-correct-used": "Контекст програми не використовувався правильно", + "theme-context-not-correct-used": "Контекст теми використано неправильно", + "package-meta-is-required-at-detail-context": "packageMeta is required at DetailContext" + }, + "lng": { + "english": "Англійська", + "japanese": "Японська", + "portuguese": "Португальська", + "spanish": "Іспанська", + "german": "Німецька", + "chinese": "Китайська", + "french": "Французька", + "ukraine": "Українська" + }, + "help-to-translate": "Допоможіть перекласти", + "change-language": "Змінити мову" +} diff --git a/i18n/translations/zh-CN.json b/i18n/translations/zh-CN.json index 73a5784..8915d76 100644 --- a/i18n/translations/zh-CN.json +++ b/i18n/translations/zh-CN.json @@ -142,7 +142,8 @@ "spanish": "西班牙语", "german": "德语", "chinese": "中文", - "french": "法语" + "french": "法语", + "ukraine": "烏克蘭" }, "help-to-translate": "幫助翻译", "change-language": "改变语言" diff --git a/package.json b/package.json index fdf48ad..2bc8512 100644 --- a/package.json +++ b/package.json @@ -144,7 +144,7 @@ }, { "path": "./static/main.*.js", - "maxSize": "30 kB" + "maxSize": "35 kB" }, { "path": "./static/[0-9].*.{js,css}", diff --git a/partials/storage/jquery/package.json b/partials/storage/jquery/package.json index 9293c80..408c4ca 100644 --- a/partials/storage/jquery/package.json +++ b/partials/storage/jquery/package.json @@ -4984,4 +4984,4 @@ "_rev": "61-e6be890a78963127", "readme": "# jQuery\n\n> jQuery is a fast, small, and feature-rich JavaScript library.\n\nFor information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/).\nFor source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery).\n\nIf upgrading, please see the [blog post for 3.3.1](https://blog.jquery.com/2017/03/20/jquery-3.3.1-now-available/). This includes notable differences from the previous version and a more readable changelog.\n\n## Including jQuery\n\nBelow are some of the most common ways to include jQuery.\n\n### Browser\n\n#### Script tag\n\n```html\n\n```\n\n#### Babel\n\n[Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively.\n\n```js\nimport $ from \"jquery\";\n```\n\n#### Browserify/Webpack\n\nThere are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this...\n\n```js\nvar $ = require(\"jquery\");\n```\n\n#### AMD (Asynchronous Module Definition)\n\nAMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html).\n\n```js\ndefine([\"jquery\"], function($) {\n\n});\n```\n\n### Node\n\nTo include jQuery in [Node](nodejs.org), first install with npm.\n\n```sh\nnpm install jquery\n```\n\nFor jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/tmpvar/jsdom). This can be useful for testing purposes.\n\n```js\nrequire(\"jsdom\").env(\"\", function(err, window) {\n\tif (err) {\n\t\tconsole.error(err);\n\t\treturn;\n\t}\n\n\tvar $ = require(\"jquery\")(window);\n});\n```", "_id": "jquery" -} \ No newline at end of file +} diff --git a/src/App/App.tsx b/src/App/App.tsx index 99aa2b0..911628f 100644 --- a/src/App/App.tsx +++ b/src/App/App.tsx @@ -13,10 +13,10 @@ import Loading from '../components/Loading'; import Box from '../muiComponents/Box'; import StyleBaseline from '../design-tokens/StyleBaseline'; import { Theme } from '../design-tokens/theme'; +import loadDayJSLocale from '../design-tokens/load-dayjs-locale'; import AppContextProvider from './AppContextProvider'; import AppRoute, { history } from './AppRoute'; -import loadDayJSLocale from './load-dayjs-locale'; const StyledBox = styled(Box)<{ theme?: Theme }>(({ theme }) => ({ backgroundColor: theme?.palette.background.default, diff --git a/src/components/Icon/Icon.tsx b/src/components/Icon/Icon.tsx index bca5ebd..66e68d4 100644 --- a/src/components/Icon/Icon.tsx +++ b/src/components/Icon/Icon.tsx @@ -14,6 +14,7 @@ import spain from './img/spain.svg'; import usa from './img/usa.svg'; import france from './img/france.svg'; import japan from './img/japan.svg'; +import ukraine from './img/ukraine.svg'; import earth from './img/earth.svg'; import verdaccio from './img/verdaccio.svg'; import filebinary from './img/filebinary.svg'; @@ -34,6 +35,7 @@ export interface IconsMap { germany: string; india: string; japan: string; + ukraine: string; earth: string; verdaccio: string; license: string; @@ -63,6 +65,7 @@ export const Icons: IconsMap = { usa, france, japan, + ukraine, }; export interface Props { diff --git a/src/components/Icon/img/ukraine.svg b/src/components/Icon/img/ukraine.svg new file mode 100644 index 0000000..f89b445 --- /dev/null +++ b/src/components/Icon/img/ukraine.svg @@ -0,0 +1 @@ + diff --git a/src/components/LanguageSwitch/LanguageSwitch.tsx b/src/components/LanguageSwitch/LanguageSwitch.tsx index 8480e3e..9d00463 100644 --- a/src/components/LanguageSwitch/LanguageSwitch.tsx +++ b/src/components/LanguageSwitch/LanguageSwitch.tsx @@ -59,6 +59,11 @@ const getTranslatedCurrentLanguageDetails = ( translation: t('lng.japanese'), icon: 'japan', }; + case 'uk-UA': + return { + translation: t('lng.ukraine'), + icon: 'ukraine', + }; default: return { translation: t('lng.english'), diff --git a/src/design-tokens/ThemeProvider.tsx b/src/design-tokens/ThemeProvider.tsx index 9eed6ec..b26e2b1 100644 --- a/src/design-tokens/ThemeProvider.tsx +++ b/src/design-tokens/ThemeProvider.tsx @@ -3,6 +3,7 @@ import { ThemeProvider as MuiThemeProvider } from '@material-ui/core/styles'; import { ThemeProvider as EmotionThemeProvider } from 'emotion-theming'; import i18next from 'i18next'; +import loadDayJSLocale from './load-dayjs-locale'; import ThemeContext from './ThemeContext'; import { getTheme, ThemeMode } from './theme'; import useLocalStorage from './useLocalStorage'; @@ -22,7 +23,8 @@ const ThemeProvider: React.FC = ({ children }) => { useEffect(() => { changeLanguage(); - }, [language, changeLanguage]); + loadDayJSLocale(); + }, [language, changeLanguage, loadDayJSLocale]); return ( diff --git a/src/App/load-dayjs-locale.ts b/src/design-tokens/load-dayjs-locale.ts similarity index 84% rename from src/App/load-dayjs-locale.ts rename to src/design-tokens/load-dayjs-locale.ts index 36a1c09..ce9dacd 100644 --- a/src/App/load-dayjs-locale.ts +++ b/src/design-tokens/load-dayjs-locale.ts @@ -19,12 +19,7 @@ function loadDayJSLocale() { const fallbackLanguage = getFallFackLanguage(); const locale = i18n.language || fallbackLanguage; - // dayjs loades en-US by default - if (!locale || locale === 'en-US') { - return; - } - - switch (locale.toLowerCase()) { + switch (locale?.toLowerCase()) { case 'pt-br': { require('dayjs/locale/pt-br'); @@ -61,7 +56,17 @@ function loadDayJSLocale() { dayjs.locale('ja'); } break; + case 'uk-ua': + { + require('dayjs/locale/uk'); + dayjs.locale('uk'); + } + break; default: + { + require('dayjs/locale/en'); + dayjs.locale('en'); + } break; } }