diff --git a/.github/workflows/docker-nightly-release.yml b/.github/workflows/docker-nightly-release.yml index 46a9ed7f..81a0898c 100644 --- a/.github/workflows/docker-nightly-release.yml +++ b/.github/workflows/docker-nightly-release.yml @@ -57,26 +57,26 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: ./Dockerfile diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 492f9d15..8ed4099d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -16,26 +16,26 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: ./Dockerfile diff --git a/.nvmrc b/.nvmrc index 02c8b485..87ec8842 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.18.0 +18.18.2 diff --git a/locales/en.yml b/locales/en.yml index e1197176..d3e29c29 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -24,4 +24,28 @@ home: aboutLabel: 'About' darkMode: 'Dark mode' lightMode: 'Light mode' - mode: 'Toggle dark/light mode' \ No newline at end of file + mode: 'Toggle dark/light mode' +about: + h1: 'About IT-Tools' + h1p1: 'This wonderful website, made with ❤ by' + h1p2: ', aggregates useful tools for developer and people working in IT. If you find it useful, please feel free to share it to people you think may find it useful too and don''''t forget to bookmark it in your shortcut bar!' + h1p3: 'IT Tools is open-source (under the MIT license) and free, and will always be, but it costs me money to host and renew the domain name. If you want to support my work, and encourage me to add more tools, please consider supporting by' + h1p4: 'sponsoring me' + h2: Technologies + h2p1: 'IT Tools is made in Vue.js (Vue 3) with the the Naive UI component library and is hosted and continuously deployed by Vercel. Third-party open-source libraries are used in some tools, you may find the complete list in the' + h2p2: 'file of the repository.' + h3: 'Found a bug? A tool is missing?' + h3p1: 'If you need a tool that is currently not present here, and you think can be useful, you are welcome to submit a feature request in the' + h3p2: 'issues section' + h3p3: 'in the GitHub repository.' + h3p4: 'And if you found a bug, or something doesn''''t work as expected, please file a bug report in the' + h3p5: 'issues section' + h3p6: 'in the GitHub repository.' +404: + notFound: '404 Not Found' + sorry: 'Sorry, this page does not seem to exist' + maybe: 'Maybe the cache is doing tricky things, try force-refreshing?' + backHome: 'Back home' +toolCard: + new: New + \ No newline at end of file diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index 00f22466..768e9ede 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -26,7 +26,7 @@ const appTheme = useAppTheme(); :bordered="false" :color="{ color: theme.primaryColor, textColor: theme.tagColor }" > - New + {{ $t('toolCard.new') }} diff --git a/src/pages/404.page.vue b/src/pages/404.page.vue index 2bf49bcb..20f61c41 100644 --- a/src/pages/404.page.vue +++ b/src/pages/404.page.vue @@ -11,17 +11,17 @@ useHead({ title: 'Page not found - IT Tools' });

- 404 Not Found + {{ $t('404.notFound') }}

- Sorry, this page does not seem to exist + {{ $t('404.sorry') }}
- Maybe the cache is doing tricky things, try force-refreshing? + {{ $t('404.maybe') }}
- Back home + {{ $t('404.backHome') }} diff --git a/src/pages/About.vue b/src/pages/About.vue index 8e6b1aad..9d7436d3 100644 --- a/src/pages/About.vue +++ b/src/pages/About.vue @@ -8,62 +8,56 @@ const { tracker } = useTracker(); diff --git a/src/plugins/i18n.plugin.ts b/src/plugins/i18n.plugin.ts index 8e0b2d33..7ef2c98f 100644 --- a/src/plugins/i18n.plugin.ts +++ b/src/plugins/i18n.plugin.ts @@ -29,3 +29,9 @@ export const i18nPlugin: Plugin = { app.use(i18n); }, }; + +export const translate = function (localeKey: string) { + // @ts-expect-error global + const hasKey = i18n.global.te(localeKey, i18n.global.locale); + return hasKey ? i18n.global.t(localeKey) : localeKey; +};