Skip to content

Commit

Permalink
Add instructions to readme, make en/es cookie consents a little better (
Browse files Browse the repository at this point in the history
#455)

* Add instructions to readme, make en/es cookie consents a little better worded

* Fix

---------

Co-authored-by: Paul Cosma <[email protected]>
  • Loading branch information
Slackadays and saenai255 authored Jul 18, 2023
1 parent 1808751 commit 25280f2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# The Pacstall Website

## Stats

<p align="center"><img alt="Repobeats analytics image" src="https://repobeats.axiom.co/api/embed/eda50f5088638b97b7f64e29c0f2d65c7fb89568.svg" /></p>

## How to Run

First, clone this repo and go to its directory.

```sh
git clone https://github.com/pacstall/website
cd website
```

Then, choose an option below depending on if you're planning to make changes to the website or to just run it.

### Run it for Development

```sh
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --force-recreate --build
```

### Run it in Production

```sh
docker-compose pull && docker-compose down && docker-compose up -d
```
4 changes: 2 additions & 2 deletions client/src/locale/en-US.locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ export default <Locale>{
cookieConsent: {
title: 'Cookie notice TL;DR',
paragraphs: [
'Hi, yes, we use cookies.',
"Hi, we're using cookies on our website.",
"We don't like to give you misleading or confusing information. We only use cookies for essential features such as theme settings, localization and authentication.",
'You can read the full privacy policy <0>here <1/></0>.',
'By continuing to use this site, you <strong>give your agreement to the privacy policy</strong>.',
],
accept: 'ok, nice',
accept: 'Ok, nice',
},
packageSearch: {
dropdown: {
Expand Down
4 changes: 2 additions & 2 deletions client/src/locale/es-ES.locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ export default <Locale>{
cookieConsent: {
title: 'Condiciones de las cookies TL;DR',
paragraphs: [
'Hola, sí, utilizamos cookies.',
'Hola, utilizamos cookies en nuestro sitio web.',
'No nos gusta darle información engañosa o confusa. Solo utilizamos cookies para funciones esenciales como la configuración de temas, la localización y la autenticación.',
'Puede leer la política de privacidad completa <0>aquí <1/></0>',
'Al continuar utilizando este sitio, usted <0>acepta esta política de privacidad</0>.',
],
accept: 'ok, genial',
accept: 'Ok, genial',
},
packageSearch: {
dropdown: {
Expand Down

0 comments on commit 25280f2

Please sign in to comment.