Merge remote-tracking branch 'origin/develop' into chats
This commit is contained in:
commit
0c0d568056
|
@ -0,0 +1,18 @@
|
|||
FROM node:18
|
||||
|
||||
RUN apt-get update &&\
|
||||
apt-get install -y inotify-tools &&\
|
||||
# clean up apt
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
ENV NODE_ENV=development
|
||||
|
||||
COPY package.json .
|
||||
COPY yarn.lock .
|
||||
RUN yarn
|
||||
|
||||
COPY . .
|
||||
|
||||
ENV DEVSERVER_URL=http://0.0.0.0:3036
|
||||
CMD yarn dev
|
|
@ -8,7 +8,6 @@
|
|||
<meta name="referrer" content="same-origin" />
|
||||
<link href="/manifest.json" rel="manifest">
|
||||
<!--server-generated-meta-->
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<%= snippets %>
|
||||
</head>
|
||||
<body class="theme-mode-light no-reduce-motion">
|
||||
|
|
|
@ -915,7 +915,7 @@
|
|||
"preferences.fields.expand_spoilers_label": "Zawsze rozwijaj wpisy z ostrzeżeniami o zawartości",
|
||||
"preferences.fields.language_label": "Język",
|
||||
"preferences.fields.media_display_label": "Wyświetlanie zawartości multimedialnej",
|
||||
"preferences.fields.missing_description_modal_label": "SPokazuj prośbę o potwierdzenie przed wysłaniem wpisu bez opisu multimediów",
|
||||
"preferences.fields.missing_description_modal_label": "Pokazuj prośbę o potwierdzenie przed wysłaniem wpisu bez opisu multimediów",
|
||||
"preferences.fields.privacy_label": "Prywatność wpisów",
|
||||
"preferences.fields.reduce_motion_label": "Ogranicz ruch w animacjach",
|
||||
"preferences.fields.system_font_label": "Używaj domyślnej czcionki systemu",
|
||||
|
@ -1255,6 +1255,7 @@
|
|||
"time_remaining.seconds": "{number, plural, one {Pozostała # sekunda} few {Pozostały # sekundy} many {Pozostało # sekund} other {Pozostało # sekund}}",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {osoba rozmawia} few {osoby rozmawiają} other {osób rozmawia}} o tym",
|
||||
"trends.title": "Trendy",
|
||||
"trendsPanel.viewAll": "Pokaż wszystkie",
|
||||
"ui.beforeunload": "Utracisz tworzony wpis, jeżeli opuścisz Soapbox.",
|
||||
"unauthorized_modal.footer": "Masz już konto? {login}.",
|
||||
"unauthorized_modal.text": "Musisz się zalogować, aby to zrobić.",
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.dev
|
||||
image: soapbox-dev
|
||||
ports:
|
||||
- "3036:3036"
|
||||
volumes:
|
||||
- .:/app
|
Loading…
Reference in New Issue