Skip to content

Commit

Permalink
feat(questions): new responses
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Sep 15, 2022
1 parent 4267808 commit add957b
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
>
<h2 class="font-bold text-xl font-poppins"><slot name="title" /></h2>
<IconArrowRight
v-if="!hiddenToggle"
class="transform h-9 w-9 wb-icon"
:class="[value ? 'rotate-90' : '']"
/>
Expand All @@ -20,5 +21,9 @@
<script setup lang="ts">
import { useToggle } from '@vueuse/core'
defineProps<{
hiddenToggle?: boolean
}>()
const [value, toggle] = useToggle()
</script>
38 changes: 38 additions & 0 deletions packages/better-write-app/src/pages/Questions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,44 @@
</template>
<QuestionsGeneratorSupport />
</QuestionsBlock>
<QuestionsBlock :hidden-toggle="true">
<template #title>
{{ t('questions.generatorRecommendations.title') }}
</template>
<template #description>
{{ t('questions.generatorRecommendations.description') }}
</template>
</QuestionsBlock>
<QuestionsBlock :hidden-toggle="true">
<template #title>
{{ t('questions.importProjects.title') }}
</template>
<template #description>
{{ t('questions.importProjects.description') }}
</template>
</QuestionsBlock>
<QuestionsBlock :hidden-toggle="true">
<template #title>
{{ t('questions.releasePlanning.title') }}
</template>
<template #description>
{{ t('questions.releasePlanning.description') }}
</template>
</QuestionsBlock>
<QuestionsBlock :hidden-toggle="true">
<template #title>
{{ t('questions.futureFeatures.title') }}
</template>
<template #description>
{{ t('questions.futureFeatures.description') }}
<a
target="_blank"
href="https://github.com/Novout/betterwrite"
class="underline cursor-pointer"
>{{ t('questions.futureFeatures.clickHere') }}</a
>
</template>
</QuestionsBlock>
</main>
</template>

Expand Down
21 changes: 21 additions & 0 deletions packages/better-write-languages/src/en-US/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,25 @@ export default {
footer: 'Footer',
},
},
generatorRecommendations: {
title: 'Which configuration should I export my documents?',
description:
'By default, the application exports in the recommended format settings in all extensions it makes available. For example, the PDF extension exports documents in CYMK / 300dpi, i.e. ready for printing. We recommend that you research the specific extension if you want to change any of the default options.',
},
futureFeatures: {
title: 'Where can I find or suggest future features and modifications?',
description:
'betterwrite.io is an open source project, where suggestions, criticisms and bug reports can be found by ',
clickHere: 'clicking here.',
},
releasePlanning: {
title: 'When will the app be officially released?',
description:
'betterwrite.io aims to make version 1.0 official in the first half of 2023.',
},
importProjects: {
title: 'What projects can I import here?',
description:
'The application supports importing projects with the extension .bw, .doc, .docx and .txt. So far, it has no plans to directly support importing projects from Google Docs, Microsoft Word, Overleaf, or any other similar tool.',
},
}
21 changes: 21 additions & 0 deletions packages/better-write-languages/src/pt-BR/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,25 @@ export default {
footer: 'Rodapé',
},
},
generatorRecommendations: {
title: 'Qual configuração devo exportar os meus documentos?',
description:
'Por padrão, o aplicativo exporta nas configurações recomendadas de formado em todas as extensões que disponibiliza. Por exemplo, a extensão PDF exporta documentos em CYMK / 300dpi, ou seja, já pronto para a impressão. Recomendamos que pesquise sobre a extensão em específico caso queira alterar alguma das opções padrões.',
},
futureFeatures: {
title: 'A onde posso encontrar ou sugerir futuros recursos e modificações?',
description:
'betterwrite.io é um projeto de código aberto, onde sugestões, criticas e a denúncia de problemas podem serem encontradas ',
clickHere: 'clicando aqui.',
},
releasePlanning: {
title: 'Quando o aplicativo será lançado oficialmente?',
description:
'betterwrite.io pretende oficializar a versão 1.0 no primeiro semestre de 2023.',
},
importProjects: {
title: 'Quais projetos posso trazer para aqui?',
description:
'O aplicativo suporta a importação de projetos com a extensão .bw, .doc, .docx e .txt. Até o momento, não possui nenhum planejamento para oferecer o suporte direto de importação de projetos do Google Docs, Microsoft Word, Overleaf ou qualquer outra ferramenta similar.',
},
}

0 comments on commit add957b

Please sign in to comment.