diff --git a/TRANSLATIONS.md b/TRANSLATIONS.md index 42efe7ca4..1e74805a2 100644 --- a/TRANSLATIONS.md +++ b/TRANSLATIONS.md @@ -11,10 +11,10 @@ if there is no existing translation, you can create a new one by following these 1. **[Fork the repository](https://github.com/hoppscotch/hoppscotch/fork).** 2. **Checkout the `i18n` branch for latest translations.** 3. **Create a new branch for your translation with base branch `i18n`.** -4. **Create target language file in the [`locales`](https://github.com/hoppscotch/hoppscotch/tree/main/packages/hoppscotch-app/locales) directory.** -5. **Copy the contents of the source file [`locales/en.json`](https://github.com/hoppscotch/hoppscotch/blob/main/packages/hoppscotch-app/locales/en.json) to the target language file.** +4. **Create target language file in the [`/packages/hoppscotch-app/locales`](https://github.com/hoppscotch/hoppscotch/tree/main/packages/hoppscotch-app/locales) directory.** +5. **Copy the contents of the source file [`/packages/hoppscotch-app/locales/en.json`](https://github.com/hoppscotch/hoppscotch/blob/main/packages/hoppscotch-app/locales/en.json) to the target language file.** 6. **Translate the strings in the target language file.** -7. **Add your language entry to [`languages.json`](https://github.com/hoppscotch/hoppscotch/blob/main/packages/hoppscotch-app/languages.json).** +7. **Add your language entry to [`/packages/hoppscotch-app/languages.json`](https://github.com/hoppscotch/hoppscotch/blob/main/packages/hoppscotch-app/languages.json).** 8. **Save & commit changes.** 9. **Send a pull request.** diff --git a/firebase.json b/firebase.json index 4b823a6f3..bf0af746e 100644 --- a/firebase.json +++ b/firebase.json @@ -5,7 +5,7 @@ }, "hosting": { "predeploy": [ - "cd packages/hoppscotch-app && mv .env.example .env && cd ../.. && npm install -g pnpm && pnpm i && pnpm run generate" + "mv packages/hoppscotch-app/.env.example packages/hoppscotch-app/.env && npm install -g pnpm && pnpm i && pnpm run generate" ], "public": "packages/hoppscotch-app/dist", "ignore": ["firebase.json", "**/.*", "**/node_modules/**"], diff --git a/packages/hoppscotch-app/assets/scss/styles.scss b/packages/hoppscotch-app/assets/scss/styles.scss index 0bd2fcbb4..eb6ca56cf 100644 --- a/packages/hoppscotch-app/assets/scss/styles.scss +++ b/packages/hoppscotch-app/assets/scss/styles.scss @@ -470,6 +470,10 @@ details summary::-webkit-details-marker { @apply hidden; } +details summary .indicator { + @apply transition; +} + details[open] summary .indicator { @apply transform; @apply rotate-90; diff --git a/packages/hoppscotch-app/src/components.d.ts b/packages/hoppscotch-app/src/components.d.ts index e31270467..e29e45492 100644 --- a/packages/hoppscotch-app/src/components.d.ts +++ b/packages/hoppscotch-app/src/components.d.ts @@ -102,6 +102,7 @@ declare module '@vue/runtime-core' { IconLucideLoader: typeof import('~icons/lucide/loader')['default'] IconLucideMinus: typeof import('~icons/lucide/minus')['default'] IconLucideSearch: typeof import('~icons/lucide/search')['default'] + IconLucideUser: typeof import('~icons/lucide/user')['default'] IconLucideUsers: typeof import('~icons/lucide/users')['default'] LensesHeadersRenderer: typeof import('./components/lenses/HeadersRenderer.vue')['default'] LensesHeadersRendererEntry: typeof import('./components/lenses/HeadersRendererEntry.vue')['default']