1
0
Fork 0

Merge pull request #2002 from pixelfed/staging

Staging
This commit is contained in:
daniel 2020-02-11 21:39:04 -07:00 committed by GitHub
commit 310de84599
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 87 additions and 38 deletions

View File

@ -43,7 +43,9 @@ COPY . /var/www/
WORKDIR /var/www/ WORKDIR /var/www/
RUN cp -r storage storage.skel \ RUN cp -r storage storage.skel \
&& cp contrib/docker/php.ini /usr/local/etc/php/conf.d/pixelfed.ini \ && cp contrib/docker/php.ini /usr/local/etc/php/conf.d/pixelfed.ini \
&& composer global require hirak/prestissimo --no-interaction --no-suggest --prefer-dist \
&& composer install --prefer-dist --no-interaction \ && composer install --prefer-dist --no-interaction \
&& composer global remove hirak/prestissimo \
&& rm -rf html && ln -s public html && rm -rf html && ln -s public html
VOLUME /var/www/storage /var/www/bootstrap VOLUME /var/www/storage /var/www/bootstrap

View File

@ -1,7 +1,6 @@
FROM php:7.3-fpm-buster FROM php:7.4-fpm-buster
ARG COMPOSER_VERSION="1.9.1"
ARG COMPOSER_VERSION="1.8.5" ARG COMPOSER_CHECKSUM="1f210b9037fcf82670d75892dfc44400f13fe9ada7af9e787f93e50e3b764111"
ARG COMPOSER_CHECKSUM="4e4c1cd74b54a26618699f3190e6f5fc63bb308b13fa660f71f2a2df047c0e17"
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends apt-utils \ && apt-get install -y --no-install-recommends apt-utils \
@ -13,13 +12,12 @@ RUN apt-get update \
&& locale-gen && update-locale \ && locale-gen && update-locale \
&& docker-php-source extract \ && docker-php-source extract \
&& docker-php-ext-configure gd \ && docker-php-ext-configure gd \
--enable-freetype \ --with-freetype \
--with-jpeg-dir=/usr/lib/x86_64-linux-gnu/ \ --with-jpeg \
--with-xpm-dir=/usr/lib/x86_64-linux-gnu/ \ --with-webp \
--with-webp-dir=/usr/lib/x86_64-linux-gnu/ \ --with-xpm \
&& docker-php-ext-install pdo_mysql pdo_pgsql pdo_sqlite pcntl gd exif bcmath intl zip curl \ && docker-php-ext-install pdo_mysql pdo_pgsql pdo_sqlite pcntl gd exif bcmath intl zip curl \
&& pecl install imagick \ && docker-php-ext-enable pcntl gd exif zip curl \
&& docker-php-ext-enable imagick pcntl imagick gd exif zip curl \
&& curl -LsS https://getcomposer.org/download/${COMPOSER_VERSION}/composer.phar -o /usr/bin/composer \ && curl -LsS https://getcomposer.org/download/${COMPOSER_VERSION}/composer.phar -o /usr/bin/composer \
&& echo "${COMPOSER_CHECKSUM} /usr/bin/composer" | sha256sum -c - \ && echo "${COMPOSER_CHECKSUM} /usr/bin/composer" | sha256sum -c - \
&& chmod 755 /usr/bin/composer \ && chmod 755 /usr/bin/composer \
@ -33,9 +31,11 @@ ENV PATH="~/.composer/vendor/bin:./vendor/bin:${PATH}"
COPY . /var/www/ COPY . /var/www/
WORKDIR /var/www/ WORKDIR /var/www/
RUN mkdir public.ext && cp -r storage storage.skel \ RUN cp -r storage storage.skel \
&& cp contrib/docker/php.ini /usr/local/etc/php/conf.d/pixelfed.ini \ && cp contrib/docker/php.ini /usr/local/etc/php/conf.d/pixelfed.ini \
&& composer global require hirak/prestissimo --no-interaction --no-suggest --prefer-dist \
&& composer install --prefer-dist --no-interaction \ && composer install --prefer-dist --no-interaction \
&& composer global remove hirak/prestissimo \
&& rm -rf html && ln -s public html && rm -rf html && ln -s public html
VOLUME /var/www/storage /var/www/bootstrap VOLUME /var/www/storage /var/www/bootstrap
@ -59,7 +59,6 @@ ENV APP_ENV=production \
ACTIVITY_PUB=false ACTIVITY_PUB=false
CMD cp -r storage.skel/* storage/ \ CMD cp -r storage.skel/* storage/ \
&& cp -r public/* public.ext/ \
&& chown -R www-data:www-data storage/ \ && chown -R www-data:www-data storage/ \
&& php artisan storage:link \ && php artisan storage:link \
&& php artisan migrate --force \ && php artisan migrate --force \

2
public/js/status.js vendored

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,7 @@
"/js/profile-directory.js": "/js/profile-directory.js?id=7160b00d9beda164f1bc", "/js/profile-directory.js": "/js/profile-directory.js?id=7160b00d9beda164f1bc",
"/js/quill.js": "/js/quill.js?id=9b15ab0ae830e7293390", "/js/quill.js": "/js/quill.js?id=9b15ab0ae830e7293390",
"/js/search.js": "/js/search.js?id=22e8bccee621e57963d9", "/js/search.js": "/js/search.js?id=22e8bccee621e57963d9",
"/js/status.js": "/js/status.js?id=14240dabd093541f39b5", "/js/status.js": "/js/status.js?id=74c9fa63d167b9921cd0",
"/js/story-compose.js": "/js/story-compose.js?id=d0e4923e743ace0f5144", "/js/story-compose.js": "/js/story-compose.js?id=d0e4923e743ace0f5144",
"/js/theme-monokai.js": "/js/theme-monokai.js?id=39b089458f249e8717ad", "/js/theme-monokai.js": "/js/theme-monokai.js?id=39b089458f249e8717ad",
"/js/timeline.js": "/js/timeline.js?id=cf2d4040b15130537379" "/js/timeline.js": "/js/timeline.js?id=cf2d4040b15130537379"

View File

@ -300,7 +300,7 @@
<div class="media align-items-center mt-3"> <div class="media align-items-center mt-3">
<div class="media-body"> <div class="media-body">
<h2 class="font-weight-bold"> <h2 class="font-weight-bold">
{{status.content.length < 100 ? status.content.slice(0,100) : 'Untitled Post'}} {{status.content.length > 100 ? status.content.slice(0,100) : 'Untitled Post'}}
</h2> </h2>
<p class="lead mb-0"> <p class="lead mb-0">
by <a :href="statusProfileUrl">{{statusUsername}}</a> by <a :href="statusProfileUrl">{{statusUsername}}</a>

View File

@ -0,0 +1,11 @@
<?php
return [
'compose' => [
'invalid' => [
'album' => 'Deve contenere una singola foto o video oppure più foto.',
],
],
];

View File

@ -0,0 +1,26 @@
<?php
return [
'helpcenter' => 'Centro Assistenza',
'whatsnew' => 'Novità',
'gettingStarted' => 'Per iniziare',
'sharingMedia' => 'Condivisione dei Media',
'profile' => 'Profili',
'stories' => 'Stories',
'hashtags' => 'Hashtags',
'discover' => 'Esplora',
'directMessages' => 'Messaggi Diretti',
'timelines' => 'Timeline',
'embed' => 'Includi',
'communityGuidelines' => 'Linee Guida della Comunità',
'whatIsTheFediverse' => 'Cos\'è il Fediverso',
'controllingVisibility' => 'Controllare la Visibilità',
'blockingAccounts' => 'Bloccare gli Account',
'safetyTips' => 'Suggerimenti per la Sicurezza',
'reportSomething' => 'Segnala Qualcosa',
'dataPolicy' => 'Politica sui Dati'
];

View File

@ -1,14 +1,19 @@
<?php <?php
return [ return [
'search' => 'Cerca',
'viewMyProfile' => 'Guarda il mio profilo', 'home' => 'Home',
'myTimeline' => 'La mia Timeline', 'local' => 'Locale',
'publicTimeline' => 'Timeline Pubblica', 'network' => 'Rete',
'remoteFollow' => 'Segui da Remoto', 'discover' => 'Esplora',
'settings' => 'Impostazioni', 'viewMyProfile' => 'Guarda il mio profilo',
'admin' => 'Amministra', 'myProfile' => 'Il mio profilo',
'logout' => 'Esci', 'myTimeline' => 'La mia Timeline',
'directMessages' => 'Messaggi Diretti', 'publicTimeline' => 'Timeline Pubblica',
'remoteFollow' => 'Segui da Remoto',
'settings' => 'Impostazioni',
'admin' => 'Amministra',
'logout' => 'Esci',
'directMessages' => 'Messaggi Diretti',
'composePost' => 'Compose Post',
]; ];

View File

@ -3,8 +3,10 @@
return [ return [
'likedPhoto' => 'ha messo mi piace alla tua foto.', 'likedPhoto' => 'ha messo mi piace alla tua foto.',
'likedComment' => 'ha messo mi piace al tuo commento.',
'startedFollowingYou' => 'ha iniziato a seguirti.', 'startedFollowingYou' => 'ha iniziato a seguirti.',
'commented' => 'ha commentato il tuo post.', 'commented' => 'ha commentato il tuo post.',
'mentionedYou' => 'ti ha menzionato.', 'mentionedYou' => 'ti ha menzionato.',
'shared' => 'ha condiviso il tuo post.',
]; ];

View File

@ -10,6 +10,6 @@ return [
'alreadyFollow' => 'Segui già :username?', 'alreadyFollow' => 'Segui già :username?',
'loginToSeeProfile' => 'per vedere le sue foto e video.', 'loginToSeeProfile' => 'per vedere le sue foto e video.',
'status.disabled.header' => 'Profilo Non Disponibile', 'status.disabled.header' => 'Profilo Non Disponibile',
'status.disabled.body' => 'Scusa, questo profilo non è disponibile al momento. Per favore riprova più tardi.', 'status.disabled.body' => 'Scusa, questo profilo non è disponibile al momento. Per favore riprova più tardi.',
]; ];

View File

@ -2,15 +2,19 @@
return [ return [
'about' => 'A Proposito', 'about' => 'Informazioni',
'help' => 'Aiuto', 'help' => 'Aiuto',
'language' => 'Lingua', 'language' => 'Lingua',
'fediverse' => 'Fediverso', 'fediverse' => 'Fediverso',
'opensource' => 'Open Source', 'opensource' => 'Open Source',
'terms' => 'Termini', 'terms' => 'Termini',
'privacy' => 'Privacy', 'privacy' => 'Privacy',
'l10nWip' => 'Stiamo ancora lavorando sul supporto per la traduzione', 'l10nWip' => 'Stiamo ancora lavorando sul supporto per la traduzione',
'currentLocale' => 'Lingua attuale', 'currentLocale' => 'Lingua attuale',
'selectLocale' => 'Seleziona una tra le lingue supportate', 'selectLocale' => 'Seleziona una tra le lingue supportate',
'contact' => 'Contatti',
'contact-us' => 'Contattaci',
'places' => 'Luoghi',
'profiles' => 'Profili',
]; ];