Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
jean-louis.frenkel 2020-11-10 13:39:49 +01:00
commit de53667429
495 changed files with 48420 additions and 15244 deletions

88
.drone.yml Normal file
View file

@ -0,0 +1,88 @@
---
kind: pipeline
type: exec
name: linux-amd64
platform:
arch: amd64
os: linux
steps:
- name: up
environment:
CODECOV_TOKEN:
from_secret: codecov_token
commands:
- docker-compose -f docker-compose.drone.yml pull
- docker-compose -f docker-compose.drone.yml up -d --build --force-recreate
- name: test-develop
environment:
CODECOV_TOKEN:
from_secret: codecov_token
commands:
- docker-compose -f docker-compose.drone.yml exec -e CODECOV_TOKEN=$${CODECOV_TOKEN} -T photoprism make all test-js test-codecov install migrate
when:
branch:
- develop
- name: test-master
commands:
- docker-compose -f docker-compose.drone.yml exec -T photoprism make all test install migrate
when:
branch:
- master
- name: down
commands:
- docker-compose -f docker-compose.drone.yml down
when:
status:
- failure
- success
- name: deploy
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- scripts/docker-login.sh
- make docker-photoprism docker-photoprism-pull docker-demo
when:
status:
- success
branch:
- master
---
kind: pipeline
type: exec
name: linux-arm64
trigger:
branch:
- master
platform:
arch: arm64
os: linux
steps:
- name: deploy
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- scripts/docker-login.sh
- make docker-photoprism-arm64
- name: clean
commands:
- docker system prune -f
when:
status:
- success

0
.fossa.yml Executable file → Normal file
View file

1
.gitignore vendored
View file

@ -16,6 +16,7 @@
*.log
*.db
*.db-journal
docker-compose.override.yml
# Binaries for programs and plugins
*.exe

View file

@ -1,32 +0,0 @@
sudo: required
addons:
apt:
packages:
- docker-ce
cache:
directories:
- $HOME/.cache
before_cache:
- sudo chown -R travis:travis $HOME/.cache
services:
- docker
before_script:
- docker-compose -f docker-compose.travis.yml up -d --build
script:
- scripts/travis.sh
after_script:
- docker-compose -f docker-compose.travis.yml down
deploy:
provider: script
script: make docker-photoprism docker-demo
skip_cleanup: true
on:
branch: master

View file

@ -3,6 +3,8 @@
Think of open-source development as free training with a visible outcome.
Exploring new technologies is easier than in commercial environments,
where development effort is more focused on immediate results.
Consider it as an analytical process that expands both the master and the
editors knowledge, including others viewing it.
We welcome contributions of any kind including pull requests, ideas, bug reports,
testing, writing documentation, tutorials and blog posts. If you help with development,
@ -22,6 +24,7 @@ Issues labeled [help wanted](https://github.com/photoprism/photoprism/labels/hel
Our [Developer Guide](https://docs.photoprism.org/developer-guide/) contains all information necessary to get you started.
Our [step-by-step guide](https://github.com/photoprism/photoprism/wiki/Pull-Requests) explains how to submit new features, bugfixes and documentation.
Just go for it and you will eventually find your way in the world of open source.
## Feature requests ##
@ -30,13 +33,6 @@ if no similar [idea](https://github.com/photoprism/photoprism/labels/idea)
or [todo](https://github.com/photoprism/photoprism/labels/todo) already exists.
Please don't use the issue tracker to ask general questions.
We also maintain a couple of pages in our [Wiki](https://github.com/photoprism/photoprism/wiki)
for collecting interesting ideas and feedback, e.g.
[Related](https://github.com/photoprism/photoprism/wiki/Related),
[Love](https://github.com/photoprism/photoprism/wiki/Love),
[Concerns](https://github.com/photoprism/photoprism/wiki/Concerns) and
[Research](https://github.com/photoprism/photoprism/wiki/Research).
## Reporting bugs ##
Please use the [GitHub issue tracker](https://github.com/photoprism/photoprism/issues) to report clearly identified bugs and impediments to us.

View file

@ -1,4 +1,4 @@
FROM photoprism/development:20200721
FROM photoprism/development:20201020
# Set up project directory
WORKDIR "/go/src/github.com/photoprism/photoprism"

View file

@ -662,7 +662,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
Trademarks
PhotoPrism is a registered trademark of Michael Mayer. You may use it
PhotoPrism® is a registered trademark of Michael Mayer. You may use it
as required to describe our software, run your own server, for educational
purposes, but not for offering commercial goods, products, or services
without prior written permission. In other words, please ask.

View file

@ -1,9 +1,17 @@
.PHONY: ;
.SILENT: ; # no need for @
.ONESHELL: ; # recipes execute in same shell
.NOTPARALLEL: ; # wait for target to finish
.EXPORT_ALL_VARIABLES: ; # send all vars to shell
export GO111MODULE=on
GOIMPORTS=goimports
BINARY_NAME=photoprism
DOCKER_TAG=`date -u +%Y%m%d`
HASRICHGO := $(shell which richgo)
ifdef HASRICHGO
GOTEST=richgo test
else
@ -17,21 +25,22 @@ install: install-bin install-assets
test: test-js test-go
test-go: reset-test-db run-test-go
test-short: reset-test-db run-test-short
acceptance-all: acceptance-start acceptance-firefox acceptance-restart acceptance stop
acceptance-all: acceptance-start acceptance acceptance-restart acceptance-firefox stop
test-all: test acceptance-all
fmt: fmt-js fmt-go
upgrade: dep-upgrade-js dep-upgrade
clean-local: clean-local-config clean-local-share clean-local-cache
clean-install: clean-local dep build-js install-bin install-assets
acceptance-start:
go run cmd/photoprism/photoprism.go --public --database-driver sqlite --database-dsn ./storage/acceptance/index.db --import-path ./storage/acceptance/import --http-port=2343 --settings-path ./storage/acceptance/settings --originals-path ./storage/acceptance/originals --sidecar-hidden=false --sidecar-json=false --sidecar-yaml=false start -d
go run cmd/photoprism/photoprism.go --public --database-driver sqlite --database-dsn ./storage/acceptance/index.db --import-path ./storage/acceptance/import --http-port=2343 --settings-path ./storage/acceptance/settings --originals-path ./storage/acceptance/originals --sidecar-json=false --sidecar-yaml=false start -d
acceptance-restart:
go run cmd/photoprism/photoprism.go stop
cp -f storage/acceptance/backup.db storage/acceptance/index.db
cp -f storage/acceptance/settings/settingsBackup.yml storage/acceptance/settings/settings.yml
rm -rf storage/acceptance/originals/2010
rm -rf storage/acceptance/originals/2013
go run cmd/photoprism/photoprism.go --public --database-driver sqlite --database-dsn ./storage/acceptance/index.db --import-path ./storage/acceptance/import --http-port=2343 --settings-path ./storage/acceptance/settings --originals-path ./storage/acceptance/originals --sidecar-hidden=false --sidecar-json=false --sidecar-yaml=false start -d
rm -rf storage/acceptance/originals/2017
go run cmd/photoprism/photoprism.go --public --database-driver sqlite --database-dsn ./storage/acceptance/index.db --import-path ./storage/acceptance/import --http-port=2343 --settings-path ./storage/acceptance/settings --originals-path ./storage/acceptance/originals --sidecar-json=false --sidecar-yaml=false start -d
acceptance-restore-db:
cp -f storage/acceptance/settings/settingsBackup.yml storage/acceptance/settings/settings.yml
cp -f storage/acceptance/backup.db storage/acceptance/index.db
@ -43,6 +52,8 @@ stop:
go run cmd/photoprism/photoprism.go stop
terminal:
docker-compose exec photoprism bash
root-terminal:
docker-compose exec -u root photoprism bash
migrate:
go run cmd/photoprism/photoprism.go migrate
generate:
@ -58,7 +69,7 @@ install-assets:
mkdir -p ~/.photoprism/assets
mkdir -p ~/Pictures/Originals
mkdir -p ~/Pictures/Import
cp -r assets/static assets/templates assets/nasnet assets/nsfw ~/.photoprism/assets
cp -r assets/locales assets/nasnet assets/nsfw assets/profiles assets/static assets/templates ~/.photoprism/assets
find ~/.photoprism/assets -name '.*' -type f -delete
clean-local-assets:
rm -rf ~/.photoprism/assets/*
@ -66,14 +77,16 @@ clean-local-cache:
rm -rf ~/.photoprism/storage/cache/*
clean-local-config:
rm -f ~/.photoprism/storage/settings/*
dep-list:
go list -u -m -json all | go-mod-outdated -direct
dep-js:
(cd frontend && npm install --silent)
(cd frontend && npm install --silent --legacy-peer-deps && npm audit fix)
dep-go:
go build -v ./...
dep-upgrade:
go get -u -t ./...
dep-upgrade-js:
(cd frontend && npm --depth 3 update)
(cd frontend && npm --depth 3 update --legacy-peer-deps)
dep-tensorflow:
scripts/download-nasnet.sh
scripts/download-nsfw.sh
@ -134,7 +147,7 @@ test-race:
test-codecov:
$(info Running all Go unit tests with code coverage report for codecov...)
go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic ./pkg/... ./internal/...
scripts/codecov.sh
scripts/codecov.sh -t $(CODECOV_TOKEN)
test-coverage:
$(info Running all Go unit tests with code coverage report...)
go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic ./pkg/... ./internal/...
@ -148,18 +161,25 @@ clean:
rm -rf storage/cache
rm -rf frontend/node_modules
docker-development:
docker pull ubuntu:20.04
scripts/docker-build.sh development $(DOCKER_TAG)
scripts/docker-push.sh development $(DOCKER_TAG)
docker-photoprism:
scripts/docker-build.sh photoprism $(DOCKER_TAG)
scripts/docker-push.sh photoprism $(DOCKER_TAG)
docker-photoprism-local:
scripts/docker-build.sh photoprism
docker-photoprism-pull:
docker pull photoprism/photoprism:latest
docker-photoprism-arm64:
docker pull ubuntu:20.04
scripts/docker-build.sh photoprism-arm64 $(DOCKER_TAG)
scripts/docker-push.sh photoprism-arm64 $(DOCKER_TAG)
docker-demo:
scripts/docker-build.sh demo $(DOCKER_TAG)
scripts/docker-push.sh demo $(DOCKER_TAG)
docker-webdav:
docker pull golang:1
scripts/docker-build.sh webdav $(DOCKER_TAG)
scripts/docker-push.sh webdav $(DOCKER_TAG)
lint-js:

View file

@ -3,13 +3,13 @@ PhotoPrism: Browse Your Life in Pictures
[![License: AGPL](https://img.shields.io/badge/license-AGPL-blue.svg)][license]
[![Code Quality](https://goreportcard.com/badge/github.com/photoprism/photoprism)][goreport]
[![Build Status](https://travis-ci.org/photoprism/photoprism.png?branch=develop)][ci]
[![Build Status](https://drone.photoprism.app/api/badges/photoprism/photoprism/status.svg?ref=refs/heads/develop)][ci]
[![GitHub contributors](https://img.shields.io/github/contributors/photoprism/photoprism.svg)](https://github.com/photoprism/photoprism/graphs/contributors/)
[![Documentation](https://img.shields.io/badge/read-the%20docs-4aa087.svg)][docs]
[![Community Chat](https://img.shields.io/badge/chat-on%20gitter-4aa087.svg)][chat]
[![Twitter](https://img.shields.io/badge/follow-@browseyourlife-00acee.svg)][twitter]
PhotoPrism is a server-based application for browsing, organizing and sharing your personal photo collection.
PhotoPrism® is a server-based application for browsing, organizing and sharing your personal photo collection.
It makes use of the latest technologies to automatically tag and find pictures without getting in your way.
Say goodbye to solutions that force you to upload your visual memories to the cloud.
@ -74,7 +74,7 @@ Looking forward, specific solutions for funding development and maintenance coul
continue to use Docker or build from source
- provide additional features to users who support us financially, maybe with a different license similar to GitLab
- develop a one-click solution for private cloud hosting together with selected providers we trust
- offer a geodata, public events and maps subscription since OpenStreetMap doesn't want us to use their development
- offer a geodata, public events, and maps subscription since OpenStreetMap doesn't want us to use their development
API for production, which is perfectly fine
## Donations ##
@ -97,7 +97,7 @@ Thank you very much! <3
## Trademarks ##
PhotoPrism is a registered trademark of Michael Mayer. You may use it as required to describe
PhotoPrism® is a registered trademark of Michael Mayer. You may use it as required to describe
our software, run your own server, for educational purposes, but not for offering commercial
goods, products, or services without prior written permission. In other words, please ask.
@ -111,7 +111,7 @@ goods, products, or services without prior written permission. In other words, p
[paypal]: https://www.paypal.me/photoprism
[goreport]: https://goreportcard.com/report/github.com/photoprism/photoprism
[coverage]: https://codecov.io/gh/photoprism/photoprism
[ci]: https://travis-ci.org/photoprism/photoprism
[ci]: https://drone.photoprism.app/photoprism/photoprism
[docs]: https://docs.photoprism.org/
[issuehunt]: https://issuehunt.io/repos/119160553
[chat]: https://gitter.im/browseyourlife/community

View file

@ -6,10 +6,10 @@ especially if you have feature requests or need help with using our software.
They will match every donation in the first year.
In addition, you can find us on [Patreon][patreon] and [PayPal][paypal].
Our sponsors and contributors will get for free whatever we might have to
[charge](https://docs.photoprism.org/funding/) for a geodata, public events and maps
[charge](https://docs.photoprism.org/funding/) for a geodata, public events, and maps
subscription later.
Also please [leave a star](https://github.com/photoprism/photoprism/stargazers) here on GitHub if you like this project,
Also, please [leave a star](https://github.com/photoprism/photoprism/stargazers) here on GitHub if you like this project,
it provides additional motivation to keep going.
Ideas backed by a sponsor are marked with a golden [sponsor][issues:sponsor] label.
@ -31,12 +31,17 @@ Thank you very much to all of our sponsors and donors (including those that want
[@mpodshivalin](https://github.com/mpodshivalin) (GitHub Sponsors, July 2020)
[@kvtong93](https://github.com/kvtong93) (GitHub Sponsors, September 2020)
[Thomas Eizinger](https://github.com/thomaseizinger) (GitHub Sponsors, October 2020)
For a full list of GitHub sponsors, see https://github.com/sponsors/lastzero.
## Donations ##
[David Pennington](https://github.com/Xeoncross), Jun Li, Jonas Aaberg, Dmitry, Fabian Graf,
Klemens Guder, [Greg](https://github.com/oziee)
Klemens Guder, [Greg](https://github.com/oziee), Jean-Louis Frenkel,
[INIT_6](https://twitter.com/init_3), Sandro Rüegge, William Kray, Ovace Mamnoon
[patreon]: https://www.patreon.com/photoprism
[paypal]: https://www.paypal.me/photoprism

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

View file

@ -2,265 +2,277 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-14 19:44+0000\n"
"PO-Revision-Date: 2020-07-14 22:16+0200\n"
"POT-Creation-Date: 2020-10-06 07:25+0000\n"
"PO-Revision-Date: 2020-10-06 09:38+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3.1\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: messages.go:69
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr "Unerwarteter Fehler, bitte erneut versuchen"
#: messages.go:70
#: messages.go:73
msgid "Invalid request"
msgstr "Ungültige Anfrage"
#: messages.go:71
#: messages.go:74
msgid "Changes could not be saved"
msgstr "Fehler beim Speichern der Daten"
#: messages.go:72
#: messages.go:75
msgid "Could not be deleted"
msgstr "Konnte nicht gelöscht werden"
#: messages.go:73
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr "%s existiert bereits"
#: messages.go:74 messages.go:77
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr "Nicht auf Server gefunden, gelöscht?"
#: messages.go:75
#: messages.go:78
msgid "File not found"
msgstr "Datei konnte nicht gefunden werden"
#: messages.go:76
#: messages.go:79
msgid "Selection not found"
msgstr "Auswahl nicht gefunden"
#: messages.go:78
#: messages.go:81
msgid "Account not found"
msgstr "Unbekannter Account"
#: messages.go:79
#: messages.go:82
msgid "User not found"
msgstr "Nutzer nicht gefunden"
#: messages.go:80
#: messages.go:83
msgid "Label not found"
msgstr "Kategorie nicht gefunden"
#: messages.go:81
#: messages.go:84
msgid "Album not found"
msgstr "Album nicht gefunden - gelöscht?"
msgstr "Album nicht gefunden"
#: messages.go:82
#: messages.go:85
msgid "Not available in public mode"
msgstr "Im öffentlichen Modus nicht verfügbar"
#: messages.go:83
#: messages.go:86
msgid "not available in read-only mode"
msgstr "Funktion im read-only Modus nicht verfügbar"
#: messages.go:84
#: messages.go:87
msgid "Please log in and try again"
msgstr "Anmeldung erforderlich"
#: messages.go:85
#: messages.go:88
msgid "Upload might be offensive"
msgstr "Inhalt könnte anstößig sein und wurde abgelehnt"
#: messages.go:86
#: messages.go:89
msgid "No items selected"
msgstr "Nichts ausgewählt"
#: messages.go:87
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr "Datei konnte nicht angelegt werden"
#: messages.go:88
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr "Verzeichnis konnte nicht angelegt werden"
#: messages.go:89
#: messages.go:92
msgid "Could not connect, please try again"
msgstr "Verbindung fehlgeschlagen"
#: messages.go:90
#: messages.go:93
msgid "Invalid password, please try again"
msgstr "Ungültiges Passwort"
#: messages.go:91
#: messages.go:94
msgid "Feature disabled"
msgstr "Funktion deaktiviert"
#: messages.go:92
#: messages.go:95
msgid "No labels selected"
msgstr "Keine Kategorien ausgewählt"
#: messages.go:93
#: messages.go:96
msgid "No albums selected"
msgstr "Keine Alben ausgewählt"
#: messages.go:94
#: messages.go:97
msgid "No files available for download"
msgstr "Nicht zum Download verfügbar"
#: messages.go:95
#: messages.go:98
msgid "Failed to create zip file"
msgstr "Zip-Datei konnte nicht erstellt werden"
#: messages.go:98
#: messages.go:99
msgid "Invalid credentials"
msgstr "Ungültige Zugangsdaten"
#: messages.go:100
msgid "Invalid link"
msgstr "Ungültiger Link"
#: messages.go:103
msgid "Changes successfully saved"
msgstr "Änderungen erfolgreich gespeichert"
#: messages.go:99
#: messages.go:104
msgid "Album created"
msgstr "Album erstellt"
#: messages.go:100
#: messages.go:105
msgid "Album saved"
msgstr "Album gespeichert"
#: messages.go:101
#: messages.go:106
#, c-format
msgid "Album %s deleted"
msgstr "Album %s gelöscht"
#: messages.go:102
#: messages.go:107
msgid "Album contents cloned"
msgstr "Album-Einträge kopiert"
#: messages.go:103
#: messages.go:108
msgid "File removed from stack"
msgstr "Datei aus Stapel entfernt"
#: messages.go:104
#: messages.go:109
msgid "File deleted"
msgstr "Datei gelöscht"
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr "Auswahl zu %s hinzugefügt"
#: messages.go:105
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr "Ein Eintrag zu %s hinzugefügt"
#: messages.go:106
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr "%d Einträge zu %s hinzugefügt"
#: messages.go:107
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr "Ein Eintrag aus %s entfernt"
#: messages.go:108
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr "%d Einträge aus %s entfernt"
#: messages.go:109
#: messages.go:115
msgid "Account created"
msgstr "Server-Konfiguration angelegt"
#: messages.go:110
#: messages.go:116
msgid "Account saved"
msgstr "Server-Konfiguration gespeichert"
#: messages.go:111
#: messages.go:117
msgid "Account deleted"
msgstr "Server-Konfiguration gelöscht"
#: messages.go:112
#: messages.go:118
msgid "Settings saved"
msgstr "Einstellungen gespeichert"
#: messages.go:113
#: messages.go:119
msgid "Password changed"
msgstr "Passwort geändert"
#: messages.go:114
#: messages.go:120
#, c-format
msgid "Import completed in %d s"
msgstr "Import in %d s abgeschlossen"
#: messages.go:115
#: messages.go:121
msgid "Import canceled"
msgstr "Import abgebrochen"
#: messages.go:116
#: messages.go:122
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indizierung in %d s abgeschlossen"
#: messages.go:117
#: messages.go:123
msgid "Indexing originals..."
msgstr "Indiziere Dateien…"
#: messages.go:118
#: messages.go:124
#, c-format
msgid "Indexing files in %s"
msgstr "Indiziere Dateien in %s"
#: messages.go:119
#: messages.go:125
msgid "Indexing canceled"
msgstr "Indizierung abgebrochen"
#: messages.go:120
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr "%d Dateien und %d Fotos wurden entfernt"
#: messages.go:121
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr "Verschiebe Dateien von %s"
#: messages.go:122
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr "Kopiere Dateien von %s"
#: messages.go:123
#: messages.go:129
msgid "Labels deleted"
msgstr "Kategorien gelöscht”"
#: messages.go:124
#: messages.go:130
msgid "Label saved"
msgstr "Kategorie gespeichert"
#: messages.go:125
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d Dateien hochgeladen in %d s"
#: messages.go:126
#: messages.go:132
msgid "Selection archived"
msgstr "Auswahl archiviert"
#: messages.go:127
#: messages.go:133
msgid "Selection restored"
msgstr "Auswahl wiederhergestellt"
#: messages.go:128
#: messages.go:134
msgid "Selection marked as private"
msgstr "Auswahl als privat markiert"
#: messages.go:129
#: messages.go:135
msgid "Albums deleted"
msgstr "Alben gelöscht"
#: messages.go:130
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr "Zip-Datei erstellt in %d s"

Binary file not shown.

View file

@ -7,264 +7,272 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-14 19:44+0000\n"
"PO-Revision-Date: 2020-07-14 22:03+0200\n"
"POT-Creation-Date: 2020-09-21 07:26+0000\n"
"PO-Revision-Date: 2020-09-21 09:29+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3.1\n"
"Last-Translator: \n"
"X-Generator: Poedit 2.4.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: messages.go:69
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Unexpected error, please try again"
#: messages.go:70
#: messages.go:72
msgid "Invalid request"
msgstr "Invalid request"
#: messages.go:71
#: messages.go:73
msgid "Changes could not be saved"
msgstr "Changes could not be saved"
#: messages.go:72
#: messages.go:74
msgid "Could not be deleted"
msgstr "Could not be deleted"
#: messages.go:73
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s already exists"
#: messages.go:74 messages.go:77
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "Not found on server, deleted?"
#: messages.go:75
#: messages.go:77
msgid "File not found"
msgstr "File not found"
#: messages.go:76
#: messages.go:78
msgid "Selection not found"
msgstr "Selection not found"
#: messages.go:78
#: messages.go:80
msgid "Account not found"
msgstr "Account not found"
#: messages.go:79
#: messages.go:81
msgid "User not found"
msgstr "User not found"
#: messages.go:80
#: messages.go:82
msgid "Label not found"
msgstr "Label not found"
#: messages.go:81
#: messages.go:83
msgid "Album not found"
msgstr "Album not found"
#: messages.go:82
#: messages.go:84
msgid "Not available in public mode"
msgstr "Not available in public mode"
#: messages.go:83
#: messages.go:85
msgid "not available in read-only mode"
msgstr "not available in read-only mode"
#: messages.go:84
#: messages.go:86
msgid "Please log in and try again"
msgstr "Please log in and try again"
#: messages.go:85
#: messages.go:87
msgid "Upload might be offensive"
msgstr "Upload might be offensive"
#: messages.go:86
#: messages.go:88
msgid "No items selected"
msgstr "No items selected"
#: messages.go:87
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "Failed creating file, please check permissions"
#: messages.go:88
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "Failed creating folder, please check permissions"
#: messages.go:89
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "Could not connect, please try again"
#: messages.go:90
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Invalid password, please try again"
#: messages.go:91
#: messages.go:93
msgid "Feature disabled"
msgstr "Feature disabled"
#: messages.go:92
#: messages.go:94
msgid "No labels selected"
msgstr "No labels selected"
#: messages.go:93
#: messages.go:95
msgid "No albums selected"
msgstr "No albums selected"
#: messages.go:94
#: messages.go:96
msgid "No files available for download"
msgstr "No files available for download"
#: messages.go:95
#: messages.go:97
msgid "Failed to create zip file"
msgstr "Failed to create zip file"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Invalid credentials"
#: messages.go:99
msgid "Invalid link"
msgstr "Invalid link"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "Changes successfully saved"
#: messages.go:99
#: messages.go:103
msgid "Album created"
msgstr "Album created"
#: messages.go:100
#: messages.go:104
msgid "Album saved"
msgstr "Album saved"
#: messages.go:101
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Album %s deleted"
#: messages.go:102
#: messages.go:106
msgid "Album contents cloned"
msgstr "Album contents cloned"
#: messages.go:103
#: messages.go:107
msgid "File removed from stack"
msgstr "File removed from stack"
#: messages.go:104
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Selection added to %s"
#: messages.go:105
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "One entry added to %s"
#: messages.go:106
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d entries added to %s"
#: messages.go:107
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "One entry removed from %s"
#: messages.go:108
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d entries removed from %s"
#: messages.go:109
#: messages.go:113
msgid "Account created"
msgstr "Account created"
#: messages.go:110
#: messages.go:114
msgid "Account saved"
msgstr "Account saved"
#: messages.go:111
#: messages.go:115
msgid "Account deleted"
msgstr "Account deleted"
#: messages.go:112
#: messages.go:116
msgid "Settings saved"
msgstr "Settings saved"
#: messages.go:113
#: messages.go:117
msgid "Password changed"
msgstr "Password changed"
#: messages.go:114
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Import completed in %d s"
#: messages.go:115
#: messages.go:119
msgid "Import canceled"
msgstr "Import canceled"
#: messages.go:116
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indexing completed in %d s"
#: messages.go:117
#: messages.go:121
msgid "Indexing originals..."
msgstr "Indexing originals..."
#: messages.go:118
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Indexing files in %s"
#: messages.go:119
#: messages.go:123
msgid "Indexing canceled"
msgstr "Indexing canceled"
#: messages.go:120
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Removed %d files and %d photos"
#: messages.go:121
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Moving files from %s"
#: messages.go:122
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Copying files from %s"
#: messages.go:123
#: messages.go:127
msgid "Labels deleted"
msgstr "Labels deleted"
#: messages.go:124
#: messages.go:128
msgid "Label saved"
msgstr "Label saved"
#: messages.go:125
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d files uploaded in %d s"
#: messages.go:126
#: messages.go:130
msgid "Selection archived"
msgstr "Selection archived"
#: messages.go:127
#: messages.go:131
msgid "Selection restored"
msgstr "Selection restored"
#: messages.go:128
#: messages.go:132
msgid "Selection marked as private"
msgstr "Selection marked as private"
#: messages.go:129
#: messages.go:133
msgid "Albums deleted"
msgstr "Albums deleted"
#: messages.go:130
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Zip created in %d s"

Binary file not shown.

View file

@ -0,0 +1,278 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-02 23:54-0300\n"
"PO-Revision-Date: 2020-10-07 11:20-0300\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: es_419\n"
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Error inesperado, por favor vuelve a intentarlo"
#: messages.go:72
msgid "Invalid request"
msgstr "Solicitud inválida"
#: messages.go:73
msgid "Changes could not be saved"
msgstr "No se guardaram los cambios"
#: messages.go:74
msgid "Could not be deleted"
msgstr "No se logró borrarlo"
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s ya existe"
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "No encontrado en el servidor, ¿fue borrado?"
#: messages.go:77
msgid "File not found"
msgstr "Archivo no encontrado"
#: messages.go:78
msgid "Selection not found"
msgstr "Selección no encontrada"
#: messages.go:80
msgid "Account not found"
msgstr "Cuenta no encontrada"
#: messages.go:81
msgid "User not found"
msgstr "Usuário no encontrado"
#: messages.go:82
msgid "Label not found"
msgstr "Etiqueta no encontrada"
#: messages.go:83
msgid "Album not found"
msgstr "Álbum no encontrado"
#: messages.go:84
msgid "Not available in public mode"
msgstr "Indisponible en modo público"
#: messages.go:85
msgid "not available in read-only mode"
msgstr "indisponible en modo de solo lectura"
#: messages.go:86
msgid "Please log in and try again"
msgstr "Por favor inicia sesión en su cuenta y vuelve a intentarlo"
#: messages.go:87
msgid "Upload might be offensive"
msgstr "El contenido cargado puede ser ofensivo"
#: messages.go:88
msgid "No items selected"
msgstr "Ningún elemento seleccionado"
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "La creación del archivo falló, por favor revisa los premisos"
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "La creación de la carpeta falló, por favor revisa los premisos"
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "No se puede conectar, por favor vuelve a intentarlo"
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Contraseña inválida, por favor vuelve a intentarlo"
#: messages.go:93
msgid "Feature disabled"
msgstr "Herramienta deshabilitada"
#: messages.go:94
msgid "No labels selected"
msgstr "Ninguna etiqueta seleccionada"
#: messages.go:95
msgid "No albums selected"
msgstr "Ningún álbum seleccionado"
#: messages.go:96
msgid "No files available for download"
msgstr "Ningún archivo disponible para descargar"
#: messages.go:97
msgid "Failed to create zip file"
msgstr "La creación de lo archivo zip falló"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Credenciales no válidas"
#: messages.go:99
msgid "Invalid link"
msgstr "Enlace inválido"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "Cambios guardados con éxito"
#: messages.go:103
msgid "Album created"
msgstr "Álbum creado"
#: messages.go:104
msgid "Album saved"
msgstr "Álbum guardado"
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Álbum %s borrado"
#: messages.go:106
msgid "Album contents cloned"
msgstr "Contenidos del álbum clonados"
#: messages.go:107
msgid "File removed from stack"
msgstr "Archivo eliminado de la pila"
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Selección añadida a %s"
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "Una entrada añadida a %s"
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d entradas añadidas a %s"
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "Una entrada eliminada de %s"
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d entradas eliminadas de %s"
#: messages.go:113
msgid "Account created"
msgstr "Cuenta creada"
#: messages.go:114
msgid "Account saved"
msgstr "Cuenta guardada"
#: messages.go:115
msgid "Account deleted"
msgstr "Cuenta borrada"
#: messages.go:116
msgid "Settings saved"
msgstr "Ajustes guardados"
#: messages.go:117
msgid "Password changed"
msgstr "Contraseña cambiada"
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Importación completada en %d"
#: messages.go:119
msgid "Import canceled"
msgstr "Importación cancelada"
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indexación completada em %d"
#: messages.go:121
msgid "Indexing originals..."
msgstr "Indexando originales..."
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Indexando archivos en %s"
#: messages.go:123
msgid "Indexing canceled"
msgstr "Indexación cancelada"
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Eliminados %d archivos y %d fotos"
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Moviendo achivos desde %s"
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Copiando archivos desde %s"
#: messages.go:127
msgid "Labels deleted"
msgstr "Etiquetas borradas"
#: messages.go:128
msgid "Label saved"
msgstr "Etiqueta guardada"
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d archivos subidos en %d"
#: messages.go:130
msgid "Selection archived"
msgstr "Selección archivada"
#: messages.go:131
msgid "Selection restored"
msgstr "Selección restaurada"
#: messages.go:132
msgid "Selection marked as private"
msgstr "Selección marcada como privada"
#: messages.go:133
msgid "Albums deleted"
msgstr "Álbumes borrados"
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Zip creado en %d"

Binary file not shown.

View file

@ -7,265 +7,272 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-20 09:48+0000\n"
"PO-Revision-Date: 2020-07-21 07:55+0200\n"
"POT-Creation-Date: 2020-10-02 23:54-0300\n"
"PO-Revision-Date: 2020-10-07 09:29-0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3.1\n"
"X-Generator: Poedit 2.4.1\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: messages.go:69
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Erreur imprévue, veuillez recommencer"
#: messages.go:70
#: messages.go:72
msgid "Invalid request"
msgstr "Requête incorrecte"
#: messages.go:71
#: messages.go:73
msgid "Changes could not be saved"
msgstr "Les modifications n'ont pas pu être sauvegardées"
#: messages.go:72
#: messages.go:74
msgid "Could not be deleted"
msgstr "N'a pu être supprimé"
#: messages.go:73
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s existe déjà"
#: messages.go:74 messages.go:77
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "Non trouvé sur le serveur. Supprimé?"
#: messages.go:75
#: messages.go:77
msgid "File not found"
msgstr "Fichier non trouvé"
#: messages.go:76
#: messages.go:78
msgid "Selection not found"
msgstr "Sélection non trouvée"
#: messages.go:78
#: messages.go:80
msgid "Account not found"
msgstr "Compte non trouvé"
#: messages.go:79
#: messages.go:81
msgid "User not found"
msgstr "Utilisateur non trouvé"
#: messages.go:80
#: messages.go:82
msgid "Label not found"
msgstr "Étiquette non trouvée"
#: messages.go:81
#: messages.go:83
msgid "Album not found"
msgstr "Album non trouvé"
#: messages.go:82
#: messages.go:84
msgid "Not available in public mode"
msgstr "Non disponible en mode public"
#: messages.go:83
#: messages.go:85
msgid "not available in read-only mode"
msgstr "non disponible en mode lecture seule"
#: messages.go:84
#: messages.go:86
msgid "Please log in and try again"
msgstr "Veuillez vous identifier et recommencer"
#: messages.go:85
#: messages.go:87
msgid "Upload might be offensive"
msgstr "Le chargement peut être choquant"
#: messages.go:86
#: messages.go:88
msgid "No items selected"
msgstr "Aucun élément sélectionné"
#: messages.go:87
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "Échec lors de la création du fichier, veuillez vérifier les autorisations"
#: messages.go:88
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "Échec lors de la création du dossier, veuillez vérifier les autorisations"
#: messages.go:89
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "Échec lors de la connexion, veuillez réessayer"
#: messages.go:90
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Mot de passe incorrect, veuillez réessayer"
#: messages.go:91
#: messages.go:93
msgid "Feature disabled"
msgstr "Fonctionnalité désactivée"
#: messages.go:92
#: messages.go:94
msgid "No labels selected"
msgstr "Aucune étiquette sélectionnée"
#: messages.go:93
#: messages.go:95
msgid "No albums selected"
msgstr "Aucun album sélectionné"
#: messages.go:94
#: messages.go:96
msgid "No files available for download"
msgstr "Aucun fichier disponible au téléchargement"
#: messages.go:95
#: messages.go:97
msgid "Failed to create zip file"
msgstr "Échec de la création de l'archive zip"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Les informations d'identification sont invalides"
#: messages.go:99
msgid "Invalid link"
msgstr "Lien invalide"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "Les modification ont bien été enregistrées"
#: messages.go:99
#: messages.go:103
msgid "Album created"
msgstr "Album créé"
#: messages.go:100
#: messages.go:104
msgid "Album saved"
msgstr "Album sauvegardé"
#: messages.go:101
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Album %s supprimé"
#: messages.go:102
#: messages.go:106
msgid "Album contents cloned"
msgstr "Le contenu de l'album a été cloné"
#: messages.go:103
#: messages.go:107
msgid "File removed from stack"
msgstr "Fichier supprimé de la pile"
#: messages.go:104
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Sélection ajoutée à %s"
#: messages.go:105
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "Une entrée a été ajoutée à %s"
#: messages.go:106
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d entrées ont été ajoutées à %s"
#: messages.go:107
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "Une entrée a été supprimée de %s"
#: messages.go:108
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d entrées ont été supprimées de %s"
#: messages.go:109
#: messages.go:113
msgid "Account created"
msgstr "Compte créé"
#: messages.go:110
#: messages.go:114
msgid "Account saved"
msgstr "Compte sauvegardé"
#: messages.go:111
#: messages.go:115
msgid "Account deleted"
msgstr "Compte supprimé"
#: messages.go:112
#: messages.go:116
msgid "Settings saved"
msgstr "Paramètres sauvegardés"
#: messages.go:113
#: messages.go:117
msgid "Password changed"
msgstr "Mode de passe changé"
#: messages.go:114
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Importation terminée en %d s"
#: messages.go:115
#: messages.go:119
msgid "Import canceled"
msgstr "Importation annulée"
#: messages.go:116
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indexation terminée en %d s"
#: messages.go:117
#, fuzzy
#: messages.go:121
msgid "Indexing originals..."
msgstr "Indexation des originaux…"
msgstr "Indexage des originaux…"
#: messages.go:118
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Indexation des fichiers de %s"
#: messages.go:119
#: messages.go:123
msgid "Indexing canceled"
msgstr "Indexation annulée"
#: messages.go:120
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Suppression de %d fichiers et %d photos"
#: messages.go:121
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Déplacement de fichiers depuis %s"
#: messages.go:122
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Copie de fichiers depuis %s"
#: messages.go:123
#: messages.go:127
msgid "Labels deleted"
msgstr "Étiquettes supprimées"
#: messages.go:124
#: messages.go:128
msgid "Label saved"
msgstr "Étiquettes sauvegardées"
#: messages.go:125
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d fichiers chargés en %d s"
#: messages.go:126
#: messages.go:130
msgid "Selection archived"
msgstr "Sélection archivée"
#: messages.go:127
#: messages.go:131
msgid "Selection restored"
msgstr "Sélection restaurée"
#: messages.go:128
#: messages.go:132
msgid "Selection marked as private"
msgstr "Sélection marquée comme privée"
#: messages.go:129
#: messages.go:133
msgid "Albums deleted"
msgstr "Albums supprimés"
#: messages.go:130
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Archive zip créée en %d s"

Binary file not shown.

View file

@ -0,0 +1,282 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-15 16:35+0000\n"
"PO-Revision-Date: 2020-10-16 03:34+0530\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr "अप्रत्याशित त्रुटि, कृपया पुनः प्रयास करें"
#: messages.go:73
msgid "Invalid request"
msgstr "अमान्य अनुरोध"
#: messages.go:74
msgid "Changes could not be saved"
msgstr "परिवर्तन सहेजा नहीं जा सका"
#: messages.go:75
msgid "Could not be deleted"
msgstr "हटाया नहीं जा सका"
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr "%s पहले से मौजूद है"
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr "सर्वर पर नहीं मिला, हटाया गया?"
#: messages.go:78
msgid "File not found"
msgstr "फाइल नहीं मिली"
#: messages.go:79
msgid "Selection not found"
msgstr "चयन नहीं मिला"
#: messages.go:81
msgid "Account not found"
msgstr "खता नहीं मिला"
#: messages.go:82
msgid "User not found"
msgstr "उपयोगकर्ता नहीं मिला"
#: messages.go:83
msgid "Label not found"
msgstr "लेबल नहीं मिला"
#: messages.go:84
msgid "Album not found"
msgstr "एल्बम नहीं मिला"
#: messages.go:85
msgid "Not available in public mode"
msgstr "सार्वजनिक मोड में उपलब्ध नहीं है"
#: messages.go:86
msgid "not available in read-only mode"
msgstr "केवल पढ़ने के लिए मोड में उपलब्ध नहीं है"
#: messages.go:87
msgid "Please log in and try again"
msgstr "कृपया पुनः लॉगिन करें और पुनः प्रयास करें"
#: messages.go:88
msgid "Upload might be offensive"
msgstr "अपलोड आक्रामक हो सकता है"
#: messages.go:89
msgid "No items selected"
msgstr "कोई आइटम नहीं चुना गया"
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr "फ़ाइल बनाने में विफल, कृपया अनुमतियां जांचें"
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr "फ़ोल्डर बनाने में विफल, कृपया अनुमतियां जांचें"
#: messages.go:92
msgid "Could not connect, please try again"
msgstr "कनेक्ट नहीं हो सका, कृपया पुनः प्रयास करें"
#: messages.go:93
msgid "Invalid password, please try again"
msgstr "अमान्य पासवर्ड, कृपया पुनः प्रयास करें"
#: messages.go:94
msgid "Feature disabled"
msgstr "सुविधा अक्षम है"
#: messages.go:95
msgid "No labels selected"
msgstr "कोई लेबल नहीं चुना गया"
#: messages.go:96
msgid "No albums selected"
msgstr "कोई एल्बम नहीं चुना गया"
#: messages.go:97
msgid "No files available for download"
msgstr "डाउनलोड के लिए कोई फाइल उपलब्ध नहीं है"
#: messages.go:98
msgid "Failed to create zip file"
msgstr "ज़िप फ़ाइल बनाने में विफल"
#: messages.go:99
msgid "Invalid credentials"
msgstr "अवैध प्रत्यय पत्र"
#: messages.go:100
msgid "Invalid link"
msgstr "अमान्य लिंक"
#: messages.go:103
msgid "Changes successfully saved"
msgstr "परिवर्तन सफलतापूर्वक सहेजे गए"
#: messages.go:104
msgid "Album created"
msgstr "एल्बम बनाया गया"
#: messages.go:105
msgid "Album saved"
msgstr "एल्बम सहेजा गया"
#: messages.go:106
#, c-format
msgid "Album %s deleted"
msgstr "एल्बम %s हटाया गया"
#: messages.go:107
msgid "Album contents cloned"
msgstr "एल्बम सामग्री को क्लोन किया गया"
#: messages.go:108
msgid "File removed from stack"
msgstr "स्टैक से फ़ाइल को निकाला गया"
#: messages.go:109
msgid "File deleted"
msgstr "फ़ाइल हटा दी गई"
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr "चयन %s में जोड़ा गया"
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr "एक प्रविष्टि %s में जोड़ी गई"
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr "%d प्रविष्टियों को %s में जोड़ा गया"
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr "%s से एक प्रविष्टि को हटाया गया"
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr "%d प्रविष्टियों को %s से हटा दिया गया"
#: messages.go:115
msgid "Account created"
msgstr "खाता बन गया"
#: messages.go:116
msgid "Account saved"
msgstr "खाता सहेजा गया"
#: messages.go:117
msgid "Account deleted"
msgstr "खाता हटाया गया"
#: messages.go:118
msgid "Settings saved"
msgstr "सेटिंग्स को सहेजा गया"
#: messages.go:119
msgid "Password changed"
msgstr "पासवर्ड बदला गया"
#: messages.go:120
#, c-format
msgid "Import completed in %d s"
msgstr "%d s में आयात पूरा हुआ"
#: messages.go:121
msgid "Import canceled"
msgstr "आयात रद्द कर दिया गया"
#: messages.go:122
#, c-format
msgid "Indexing completed in %d s"
msgstr "%d s में अनुक्रमण पूरा हुआ"
#: messages.go:123
msgid "Indexing originals..."
msgstr "अनुक्रमण मूल ..."
#: messages.go:124
#, c-format
msgid "Indexing files in %s"
msgstr "%s में फाइलों को अनुक्रमित करना"
#: messages.go:125
msgid "Indexing canceled"
msgstr "अनुक्रमण रद्द किया गया"
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr "%d फ़ाइलों और %d फ़ोटो को हटा दिया गया"
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr "%s से फाइल चल रही है"
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr "%s से फाइल कॉपी कर रहा है"
#: messages.go:129
msgid "Labels deleted"
msgstr "लेबल हटा दिए गए"
#: messages.go:130
msgid "Label saved"
msgstr "लेबल सहेजा गया"
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d फाइलों को %d में अपलोड किया गया"
#: messages.go:132
msgid "Selection archived"
msgstr "चयन को संग्रहीत किया गया"
#: messages.go:133
msgid "Selection restored"
msgstr "चयन बहाल"
#: messages.go:134
msgid "Selection marked as private"
msgstr "चयन निजी के रूप में चिह्नित"
#: messages.go:135
msgid "Albums deleted"
msgstr "एल्बम हटाए गए"
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr "%d s में बनाया गया ज़िप"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-22 13:54+0200\n"
"POT-Creation-Date: 2020-11-09 08:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,253 +17,265 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: messages.go:69
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr ""
#: messages.go:70
#: messages.go:73
msgid "Invalid request"
msgstr ""
#: messages.go:71
#: messages.go:74
msgid "Changes could not be saved"
msgstr ""
#: messages.go:72
#: messages.go:75
msgid "Could not be deleted"
msgstr ""
#: messages.go:73
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr ""
#: messages.go:74 messages.go:77
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr ""
#: messages.go:75
#: messages.go:78
msgid "File not found"
msgstr ""
#: messages.go:76
#: messages.go:79
msgid "Selection not found"
msgstr ""
#: messages.go:78
#: messages.go:81
msgid "Account not found"
msgstr ""
#: messages.go:79
#: messages.go:82
msgid "User not found"
msgstr ""
#: messages.go:80
#: messages.go:83
msgid "Label not found"
msgstr ""
#: messages.go:81
#: messages.go:84
msgid "Album not found"
msgstr ""
#: messages.go:82
#: messages.go:85
msgid "Not available in public mode"
msgstr ""
#: messages.go:83
#: messages.go:86
msgid "not available in read-only mode"
msgstr ""
#: messages.go:84
#: messages.go:87
msgid "Please log in and try again"
msgstr ""
#: messages.go:85
#: messages.go:88
msgid "Upload might be offensive"
msgstr ""
#: messages.go:86
#: messages.go:89
msgid "No items selected"
msgstr ""
#: messages.go:87
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr ""
#: messages.go:88
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr ""
#: messages.go:89
#: messages.go:92
msgid "Could not connect, please try again"
msgstr ""
#: messages.go:90
#: messages.go:93
msgid "Invalid password, please try again"
msgstr ""
#: messages.go:91
#: messages.go:94
msgid "Feature disabled"
msgstr ""
#: messages.go:92
#: messages.go:95
msgid "No labels selected"
msgstr ""
#: messages.go:93
#: messages.go:96
msgid "No albums selected"
msgstr ""
#: messages.go:94
#: messages.go:97
msgid "No files available for download"
msgstr ""
#: messages.go:95
#: messages.go:98
msgid "Failed to create zip file"
msgstr ""
#: messages.go:98
msgid "Changes successfully saved"
msgstr ""
#: messages.go:99
msgid "Album created"
msgid "Invalid credentials"
msgstr ""
#: messages.go:100
msgid "Album saved"
msgstr ""
#: messages.go:101
#, c-format
msgid "Album %s deleted"
msgstr ""
#: messages.go:102
msgid "Album contents cloned"
msgid "Invalid link"
msgstr ""
#: messages.go:103
msgid "File removed from stack"
msgid "Changes successfully saved"
msgstr ""
#: messages.go:104
#, c-format
msgid "Selection added to %s"
msgid "Album created"
msgstr ""
#: messages.go:105
#, c-format
msgid "One entry added to %s"
msgid "Album saved"
msgstr ""
#: messages.go:106
#, c-format
msgid "%d entries added to %s"
msgid "Album %s deleted"
msgstr ""
#: messages.go:107
msgid "Album contents cloned"
msgstr ""
#: messages.go:108
msgid "File removed from stack"
msgstr ""
#: messages.go:109
msgid "File deleted"
msgstr ""
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr ""
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr ""
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr ""
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr ""
#: messages.go:108
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr ""
#: messages.go:109
#: messages.go:115
msgid "Account created"
msgstr ""
#: messages.go:110
#: messages.go:116
msgid "Account saved"
msgstr ""
#: messages.go:111
#: messages.go:117
msgid "Account deleted"
msgstr ""
#: messages.go:112
#: messages.go:118
msgid "Settings saved"
msgstr ""
#: messages.go:113
msgid "Password changed"
msgstr ""
#: messages.go:114
#, c-format
msgid "Import completed in %d s"
msgstr ""
#: messages.go:115
msgid "Import canceled"
msgstr ""
#: messages.go:116
#, c-format
msgid "Indexing completed in %d s"
msgstr ""
#: messages.go:117
msgid "Indexing originals..."
msgstr ""
#: messages.go:118
#, c-format
msgid "Indexing files in %s"
msgstr ""
#: messages.go:119
msgid "Indexing canceled"
msgid "Password changed"
msgstr ""
#: messages.go:120
#, c-format
msgid "Removed %d files and %d photos"
msgid "Import completed in %d s"
msgstr ""
#: messages.go:121
#, c-format
msgid "Moving files from %s"
msgid "Import canceled"
msgstr ""
#: messages.go:122
#, c-format
msgid "Copying files from %s"
msgid "Indexing completed in %d s"
msgstr ""
#: messages.go:123
msgid "Labels deleted"
msgid "Indexing originals..."
msgstr ""
#: messages.go:124
msgid "Label saved"
#, c-format
msgid "Indexing files in %s"
msgstr ""
#: messages.go:125
msgid "Indexing canceled"
msgstr ""
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr ""
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr ""
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr ""
#: messages.go:129
msgid "Labels deleted"
msgstr ""
#: messages.go:130
msgid "Label saved"
msgstr ""
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr ""
#: messages.go:126
#: messages.go:132
msgid "Selection archived"
msgstr ""
#: messages.go:127
#: messages.go:133
msgid "Selection restored"
msgstr ""
#: messages.go:128
#: messages.go:134
msgid "Selection marked as private"
msgstr ""
#: messages.go:129
#: messages.go:135
msgid "Albums deleted"
msgstr ""
#: messages.go:130
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr ""

Binary file not shown.

View file

@ -0,0 +1,282 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-06 07:40+0000\n"
"PO-Revision-Date: 2020-10-07 10:22+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: nb\n"
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr "Uventet feil, prøv på nytt"
#: messages.go:73
msgid "Invalid request"
msgstr "Ugyldig forespørsel"
#: messages.go:74
msgid "Changes could not be saved"
msgstr "Kan ikke lagre endringer"
#: messages.go:75
msgid "Could not be deleted"
msgstr "Kan ikke slettes"
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr "%s eksisterer allerede"
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr "Finnes ikke på serveren, slettet?"
#: messages.go:78
msgid "File not found"
msgstr "Fil ikke funnet"
#: messages.go:79
msgid "Selection not found"
msgstr "Finner ikke utvalg"
#: messages.go:81
msgid "Account not found"
msgstr "Konto ikke funnet"
#: messages.go:82
msgid "User not found"
msgstr "Bruker ikke funnet"
#: messages.go:83
msgid "Label not found"
msgstr "Merkelapp ikke funnet"
#: messages.go:84
msgid "Album not found"
msgstr "Album ikke funnet"
#: messages.go:85
msgid "Not available in public mode"
msgstr "Ikke tilgjengelig i offentlig modus"
#: messages.go:86
msgid "not available in read-only mode"
msgstr "ikke tilgjengelig i skrivebeskyttet modus"
#: messages.go:87
msgid "Please log in and try again"
msgstr "Vennligst logg inn og prøv igjen"
#: messages.go:88
msgid "Upload might be offensive"
msgstr "Opplastingen kan være støtende"
#: messages.go:89
msgid "No items selected"
msgstr "Ingen elementer valgt"
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr "Kunne ikke opprette fil, vennligst sjekk tillatelser"
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr "Kunne ikke opprette mappe, vennligst sjekk tillatelser"
#: messages.go:92
msgid "Could not connect, please try again"
msgstr "Kunne ikke koble til, vennligst prøv igjen"
#: messages.go:93
msgid "Invalid password, please try again"
msgstr "Ugyldig passord, vennligst prøv igjen"
#: messages.go:94
msgid "Feature disabled"
msgstr "Tjeneste deaktivert"
#: messages.go:95
msgid "No labels selected"
msgstr "Ingen merkelapper valgt"
#: messages.go:96
msgid "No albums selected"
msgstr "Ingen albumer valgt"
#: messages.go:97
msgid "No files available for download"
msgstr "Ingen filer tilgjengelig for nedlasting"
#: messages.go:98
msgid "Failed to create zip file"
msgstr "Kunne ikke opprette zip-arkiv"
#: messages.go:99
msgid "Invalid credentials"
msgstr "Ugyldige innloggingsdetaljer"
#: messages.go:100
msgid "Invalid link"
msgstr "Ugyldig lenke"
#: messages.go:103
msgid "Changes successfully saved"
msgstr "Endringene ble lagret"
#: messages.go:104
msgid "Album created"
msgstr "Album opprettet"
#: messages.go:105
msgid "Album saved"
msgstr "Album lagret"
#: messages.go:106
#, c-format
msgid "Album %s deleted"
msgstr "Album %s slettet"
#: messages.go:107
msgid "Album contents cloned"
msgstr "Albuminnhold duplisert"
#: messages.go:108
msgid "File removed from stack"
msgstr "Fil fjernet fra samling"
#: messages.go:109
msgid "File deleted"
msgstr "Fil slettet"
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr "Utvalg lagt til %s"
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr "En oppføring lagt til %s"
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr "%d oppføringer lagt til %s"
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr "En oppføring fjernet fra %s"
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr "%d oppføringer fjernet fra %s"
#: messages.go:115
msgid "Account created"
msgstr "Konto opprettet"
#: messages.go:116
msgid "Account saved"
msgstr "Konto lagret"
#: messages.go:117
msgid "Account deleted"
msgstr "Konto slettet"
#: messages.go:118
msgid "Settings saved"
msgstr "Innstillinger lagret"
#: messages.go:119
msgid "Password changed"
msgstr "Passord endret"
#: messages.go:120
#, c-format
msgid "Import completed in %d s"
msgstr "Import fullført på %d s"
#: messages.go:121
msgid "Import canceled"
msgstr "Import avbrutt"
#: messages.go:122
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indeksering fullført på %d s"
#: messages.go:123
msgid "Indexing originals..."
msgstr "Indekserer originaler…"
#: messages.go:124
#, c-format
msgid "Indexing files in %s"
msgstr "Indekserer filer i %s"
#: messages.go:125
msgid "Indexing canceled"
msgstr "Indeksering avbrutt"
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Fjernet %d filer og %d foto"
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr "Flytter filer fra %s"
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr "Kopierer filer fra %s"
#: messages.go:129
msgid "Labels deleted"
msgstr "Merkelapper slettet"
#: messages.go:130
msgid "Label saved"
msgstr "Merkelapper lagret"
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d filer lastet opp på %d s"
#: messages.go:132
msgid "Selection archived"
msgstr "Utvalg lagret"
#: messages.go:133
msgid "Selection restored"
msgstr "Utvalg gjenopprettet"
#: messages.go:134
msgid "Selection marked as private"
msgstr "Utvalg markert som privat"
#: messages.go:135
msgid "Albums deleted"
msgstr "Albumer slettet"
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr "Zip opprettet på %d s"

Binary file not shown.

View file

@ -0,0 +1,282 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-20 21:13+0200\n"
"PO-Revision-Date: 2020-10-20 21:35+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: nl_NL\n"
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr "Onverwachte fout, probeer het opnieuw"
#: messages.go:73
msgid "Invalid request"
msgstr "Ongeldige aanvraag"
#: messages.go:74
msgid "Changes could not be saved"
msgstr "Wijzigingen kunnen niet worden opgeslagen"
#: messages.go:75
msgid "Could not be deleted"
msgstr "Kan niet verwijderd worden"
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr "%s bestaat al"
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr "Niet gevonden op de server, verwijderd?"
#: messages.go:78
msgid "File not found"
msgstr "Bestand niet gevonden"
#: messages.go:79
msgid "Selection not found"
msgstr "Selectie niet gevonden"
#: messages.go:81
msgid "Account not found"
msgstr "Account niet gevonden"
#: messages.go:82
msgid "User not found"
msgstr "Gebruiker niet gevonden"
#: messages.go:83
msgid "Label not found"
msgstr "Label niet gevonden"
#: messages.go:84
msgid "Album not found"
msgstr "Album niet gevonden"
#: messages.go:85
msgid "Not available in public mode"
msgstr "Niet beschikbaar in publieke modus"
#: messages.go:86
msgid "not available in read-only mode"
msgstr "niet beschikbaar in alleen-lezen modus"
#: messages.go:87
msgid "Please log in and try again"
msgstr "Log in en probeer opnieuw"
#: messages.go:88
msgid "Upload might be offensive"
msgstr "Upload kan aanstootgevend zijn"
#: messages.go:89
msgid "No items selected"
msgstr "Geen items geselecteerd"
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr "Bestand aanmaken mislukt, controleer alstublieft de rechten"
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr "Folder aanmaken mislukt, controleer alstublieft de rechten"
#: messages.go:92
msgid "Could not connect, please try again"
msgstr "Kan niet verbinden, probeer alstublieft opnieuw"
#: messages.go:93
msgid "Invalid password, please try again"
msgstr "Fout wachtwoord, probeer alstublieft opnieuw"
#: messages.go:94
msgid "Feature disabled"
msgstr "Functie uitgeschakeld"
#: messages.go:95
msgid "No labels selected"
msgstr "Geen labels geselecteerd"
#: messages.go:96
msgid "No albums selected"
msgstr "Geen albums geselecteerd"
#: messages.go:97
msgid "No files available for download"
msgstr "Geen bestanden beschikbaar om te downloaden"
#: messages.go:98
msgid "Failed to create zip file"
msgstr "Maken van zip-bestand is mislukt"
#: messages.go:99
msgid "Invalid credentials"
msgstr "Ongeldige inloggegevens"
#: messages.go:100
msgid "Invalid link"
msgstr "Ongeldige link"
#: messages.go:103
msgid "Changes successfully saved"
msgstr "Wijzigingen succesvol opgeslagen"
#: messages.go:104
msgid "Album created"
msgstr "Album gemaakt"
#: messages.go:105
msgid "Album saved"
msgstr "Album opgeslagen"
#: messages.go:106
#, c-format
msgid "Album %s deleted"
msgstr "Album %s verwijderd"
#: messages.go:107
msgid "Album contents cloned"
msgstr "Albuminhoud gekopieerd"
#: messages.go:108
msgid "File removed from stack"
msgstr "Bestand uit stapel verwijderd"
#: messages.go:109
msgid "File deleted"
msgstr "Bestand verwijderd"
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr "Selectie toegevoegd aan %s"
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr "Eén item toegevoegd aan %s"
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr "%d items toegevoegd aan %s"
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr "Eén item verwijderd uit %s"
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr "%d items verwijderd uit %s"
#: messages.go:115
msgid "Account created"
msgstr "Account aangemaakt"
#: messages.go:116
msgid "Account saved"
msgstr "Account opgeslagen"
#: messages.go:117
msgid "Account deleted"
msgstr "Account verwijderd"
#: messages.go:118
msgid "Settings saved"
msgstr "Instellingen opgeslagen"
#: messages.go:119
msgid "Password changed"
msgstr "Wachtwoord aangepast"
#: messages.go:120
#, c-format
msgid "Import completed in %d s"
msgstr "Importeren voltooid in %d s"
#: messages.go:121
msgid "Import canceled"
msgstr "Importeren geannuleerd"
#: messages.go:122
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indexeren voltooid in %d s"
#: messages.go:123
msgid "Indexing originals..."
msgstr "Originelen indexeren…"
#: messages.go:124
#, c-format
msgid "Indexing files in %s"
msgstr "Bestanden indexeren in %s"
#: messages.go:125
msgid "Indexing canceled"
msgstr "Indexeren geannuleerd"
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr "%d bestanden en %d fotos verwijderd"
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr "Bestanden verplaatsen uit %s"
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr "Bestanden kopiëren uit %s"
#: messages.go:129
msgid "Labels deleted"
msgstr "Labels verwijderd"
#: messages.go:130
msgid "Label saved"
msgstr "Labels opgeslagen"
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d bestanden geüpload in %d s"
#: messages.go:132
msgid "Selection archived"
msgstr "Selectie gearchiveerd"
#: messages.go:133
msgid "Selection restored"
msgstr "Selectie hersteld"
#: messages.go:134
msgid "Selection marked as private"
msgstr "Selectie gemarkeerd als privé"
#: messages.go:135
msgid "Albums deleted"
msgstr "Albums verwijderd"
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr "Zip gemaakt in %d s"

Binary file not shown.

View file

@ -7,264 +7,273 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-14 19:44+0000\n"
"PO-Revision-Date: 2020-07-15 00:22+0200\n"
"POT-Creation-Date: 2020-09-21 07:30+0000\n"
"PO-Revision-Date: 2020-10-01 17:13+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"Language: pl\n"
"X-Generator: Poedit 2.4.1\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
"|| n%100>14) ? 1 : 2);\n"
#: messages.go:69
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Nieoczekiwany błąd, spróbuj ponownie"
#: messages.go:70
#: messages.go:72
msgid "Invalid request"
msgstr "Nieprawidłowe żądanie"
#: messages.go:71
#: messages.go:73
msgid "Changes could not be saved"
msgstr "Nie można zapisać zmian"
#: messages.go:72
#: messages.go:74
msgid "Could not be deleted"
msgstr "Nie można usunąć"
#: messages.go:73
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s już istnieje"
#: messages.go:74 messages.go:77
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "Nie znaleziono na serwerze, usunięte?"
#: messages.go:75
#: messages.go:77
msgid "File not found"
msgstr "Nie znaleziono pliku"
#: messages.go:76
#: messages.go:78
msgid "Selection not found"
msgstr "Nie znaleziono wyboru"
#: messages.go:78
#: messages.go:80
msgid "Account not found"
msgstr "Konto nie znalezione"
#: messages.go:79
#: messages.go:81
msgid "User not found"
msgstr "Użytkownik nie znaleziony"
#: messages.go:80
#: messages.go:82
msgid "Label not found"
msgstr "Nie znaleziono etykiety"
#: messages.go:81
#: messages.go:83
msgid "Album not found"
msgstr "Album nie został znaleziony"
#: messages.go:82
#: messages.go:84
msgid "Not available in public mode"
msgstr "Niedostępne w trybie publicznym"
#: messages.go:83
#: messages.go:85
msgid "not available in read-only mode"
msgstr "niedostępne w trybie tylko do odczytu"
#: messages.go:84
#: messages.go:86
msgid "Please log in and try again"
msgstr "Zaloguj się i spróbuj ponownie"
#: messages.go:85
#: messages.go:87
msgid "Upload might be offensive"
msgstr "Przesyłanie może być obraźliwe"
#: messages.go:86
#: messages.go:88
msgid "No items selected"
msgstr "Nie wybrano żadnych elementów"
#: messages.go:87
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "Nie udało się utworzyć pliku, sprawdź uprawnienia"
#: messages.go:88
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "Nie udało się utworzyć folderu, sprawdź uprawnienia"
#: messages.go:89
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "Nie można się połączyć, spróbuj ponownie"
#: messages.go:90
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Hasło nieprawidłowe, spróbuj ponownie"
#: messages.go:91
#: messages.go:93
msgid "Feature disabled"
msgstr "Funkcja wyłączona"
#: messages.go:92
#: messages.go:94
msgid "No labels selected"
msgstr "Nie wybrano żadnych etykiet"
#: messages.go:93
#: messages.go:95
msgid "No albums selected"
msgstr "Nie wybrano albumów"
#: messages.go:94
#: messages.go:96
msgid "No files available for download"
msgstr "Brak plików do pobrania"
#: messages.go:95
#: messages.go:97
msgid "Failed to create zip file"
msgstr "Nie udało się utworzyć pliku zip"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Nieprawidłowe poświadczenia"
#: messages.go:99
msgid "Invalid link"
msgstr "Nieprawidłowy link"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "Zmiany zostały pomyślnie zapisane"
#: messages.go:99
#: messages.go:103
msgid "Album created"
msgstr "Album został utworzony"
#: messages.go:100
#: messages.go:104
msgid "Album saved"
msgstr "Album został zapisany"
#: messages.go:101
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Album %s usunięto"
#: messages.go:102
#: messages.go:106
msgid "Album contents cloned"
msgstr "Sklonowano zawartość albumu"
#: messages.go:103
#: messages.go:107
msgid "File removed from stack"
msgstr "Plik został rozgrupowany"
#: messages.go:104
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Wybór dodany do %s"
#: messages.go:105
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "Dodano jeden wpis do %s"
#: messages.go:106
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d wpisy dodane do %s"
#: messages.go:107
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "Usunięto jeden wpis z %s"
#: messages.go:108
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d wpisy usunięte z %s"
#: messages.go:109
#: messages.go:113
msgid "Account created"
msgstr "Konto utworzone"
#: messages.go:110
#: messages.go:114
msgid "Account saved"
msgstr "Konto zapisane"
#: messages.go:111
#: messages.go:115
msgid "Account deleted"
msgstr "Konto usunięte"
#: messages.go:112
#: messages.go:116
msgid "Settings saved"
msgstr "Ustawienia zapisane"
#: messages.go:113
#: messages.go:117
msgid "Password changed"
msgstr "Hasło zostało zmienione"
#: messages.go:114
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Import zakończony w %d s"
#: messages.go:115
#: messages.go:119
msgid "Import canceled"
msgstr "Import został anulowany"
#: messages.go:116
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indeksowanie zakończone w %d s"
#: messages.go:117
#: messages.go:121
msgid "Indexing originals..."
msgstr "Indeksowanie oryginałów…"
#: messages.go:118
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Indeksowanie plików w %s"
#: messages.go:119
#: messages.go:123
msgid "Indexing canceled"
msgstr "Indeksowanie anulowane"
#: messages.go:120
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Usunięto %d plików i %d zdjęć"
#: messages.go:121
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Przenoszenie plików z %s"
#: messages.go:122
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Kopiowanie plików z %s"
#: messages.go:123
#: messages.go:127
msgid "Labels deleted"
msgstr "Usunięto etykiety"
#: messages.go:124
#: messages.go:128
msgid "Label saved"
msgstr "Etykieta zapisana"
#: messages.go:125
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d files uploaded in %d s"
#: messages.go:126
#: messages.go:130
msgid "Selection archived"
msgstr "Wybór zarchiwizowany"
#: messages.go:127
#: messages.go:131
msgid "Selection restored"
msgstr "Wybór został przywrócony"
#: messages.go:128
#: messages.go:132
msgid "Selection marked as private"
msgstr "Wybór oznaczony jako prywatny"
#: messages.go:129
#: messages.go:133
msgid "Albums deleted"
msgstr "Albumy zostały usunięte"
#: messages.go:130
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Zip utworzony w %d s"

Binary file not shown.

View file

@ -0,0 +1,278 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-02 23:54-0300\n"
"PO-Revision-Date: 2020-10-07 10:41-0300\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Language: pt_BR\n"
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Erro inesperado, por favor tente novamente"
#: messages.go:72
msgid "Invalid request"
msgstr "Solicitação inválida"
#: messages.go:73
msgid "Changes could not be saved"
msgstr "As mudanças não foram salvas"
#: messages.go:74
msgid "Could not be deleted"
msgstr "Não foi possível excluir"
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s já existe"
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "Não foi encontrado no servidor, foi excluído?"
#: messages.go:77
msgid "File not found"
msgstr "Arquivo não encontrado"
#: messages.go:78
msgid "Selection not found"
msgstr "Seleção não encontrada"
#: messages.go:80
msgid "Account not found"
msgstr "Conta não encontrada"
#: messages.go:81
msgid "User not found"
msgstr "Usuário não encontrado"
#: messages.go:82
msgid "Label not found"
msgstr "Etiqueta não encontrada"
#: messages.go:83
msgid "Album not found"
msgstr "Álbum não encontrado"
#: messages.go:84
msgid "Not available in public mode"
msgstr "Indisponível em modo público"
#: messages.go:85
msgid "not available in read-only mode"
msgstr "indisponível em modo somente leitura"
#: messages.go:86
msgid "Please log in and try again"
msgstr "Por favor entre em sua conta e tente novamente"
#: messages.go:87
msgid "Upload might be offensive"
msgstr "Envio pode ser ofensivo"
#: messages.go:88
msgid "No items selected"
msgstr "Sem itens selecionados"
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "Falha ao criar arquivo, por favor cheque as permissões"
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "Falha ao criar pasta, por favor cheque as permissões"
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "Não foi possível conectar, por favor tente novamente"
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Senha inválida, por favor tente novamente"
#: messages.go:93
msgid "Feature disabled"
msgstr "Recurso Desativado"
#: messages.go:94
msgid "No labels selected"
msgstr "Sem etiquetas selecionadas"
#: messages.go:95
msgid "No albums selected"
msgstr "Sem álbuns selecionados"
#: messages.go:96
msgid "No files available for download"
msgstr "Sem arquivos disponíveis para baixar"
#: messages.go:97
msgid "Failed to create zip file"
msgstr "Falha ao criar arquivo zip"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Credenciais inválidas"
#: messages.go:99
msgid "Invalid link"
msgstr "Link inválido"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "As mudanças foram salvas com sucesso"
#: messages.go:103
msgid "Album created"
msgstr "Álbum criado"
#: messages.go:104
msgid "Album saved"
msgstr "Álbum salvo"
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Álbum %s excluído"
#: messages.go:106
msgid "Album contents cloned"
msgstr "Conteúdo do álbum copiado"
#: messages.go:107
msgid "File removed from stack"
msgstr "Arquivo removido da pilha"
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Seleção adicionada a %s"
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "Uma entrada adicionada a %s"
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d entradas adicionadas a %s"
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "Uma entrada removida de %s"
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d entradas removidas de %s"
#: messages.go:113
msgid "Account created"
msgstr "Conta criada"
#: messages.go:114
msgid "Account saved"
msgstr "Conta salva"
#: messages.go:115
msgid "Account deleted"
msgstr "Conta excluída"
#: messages.go:116
msgid "Settings saved"
msgstr "Configurações salvas"
#: messages.go:117
msgid "Password changed"
msgstr "Senha alterada"
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Importação completa em %d"
#: messages.go:119
msgid "Import canceled"
msgstr "Importação cancelada"
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Indexação completa em %d"
#: messages.go:121
msgid "Indexing originals..."
msgstr "Indexando originais..."
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Indexando arquivos em %s"
#: messages.go:123
msgid "Indexing canceled"
msgstr "Indexação cancelada"
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Removidos %d arquivos e %d fotos"
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Movendo arquivos de %s"
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Copiando arquivos de %s"
#: messages.go:127
msgid "Labels deleted"
msgstr "Etiquetas excluídas"
#: messages.go:128
msgid "Label saved"
msgstr "Etiqueta salva"
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d arquivos enviados em %d"
#: messages.go:130
msgid "Selection archived"
msgstr "Seleção arquivada"
#: messages.go:131
msgid "Selection restored"
msgstr "Seleção restaurada"
#: messages.go:132
msgid "Selection marked as private"
msgstr "Seleção marcada como privada"
#: messages.go:133
msgid "Albums deleted"
msgstr "Álbuns excluídos"
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Zip criado em %d"

Binary file not shown.

View file

@ -0,0 +1,278 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-04 17:41+0300\n"
"PO-Revision-Date: 2020-10-04 18:04+0300\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"Language: ru\n"
#: messages.go:71
msgid "Unexpected error, please try again"
msgstr "Неожиданная ошибка попробуйте еще раз"
#: messages.go:72
msgid "Invalid request"
msgstr "Неправильный запрос"
#: messages.go:73
msgid "Changes could not be saved"
msgstr "Изменения не будут сохранены"
#: messages.go:74
msgid "Could not be deleted"
msgstr "Не будет удалено"
#: messages.go:75
#, c-format
msgid "%s already exists"
msgstr "%s уже существует"
#: messages.go:76 messages.go:79
msgid "Not found on server, deleted?"
msgstr "Не найдено на сервере, удалено?"
#: messages.go:77
msgid "File not found"
msgstr "Файл не найден"
#: messages.go:78
msgid "Selection not found"
msgstr "Выделение не найдено"
#: messages.go:80
msgid "Account not found"
msgstr "Учетная запись не найдена"
#: messages.go:81
msgid "User not found"
msgstr "Пользователь не найден"
#: messages.go:82
msgid "Label not found"
msgstr "Метка не найдена"
#: messages.go:83
msgid "Album not found"
msgstr "Альбом не найден"
#: messages.go:84
msgid "Not available in public mode"
msgstr "Не доступно в публичном режиме"
#: messages.go:85
msgid "not available in read-only mode"
msgstr "не доступно в режиме только для чтения"
#: messages.go:86
msgid "Please log in and try again"
msgstr "Пожалуйста войдите и попробуйте еще раз"
#: messages.go:87
msgid "Upload might be offensive"
msgstr "Загрузка может быть оскорбительной"
#: messages.go:88
msgid "No items selected"
msgstr "Нет выделенных элементов"
#: messages.go:89
msgid "Failed creating file, please check permissions"
msgstr "Не удалось создать файл, пожалуйста проверьте права доступа"
#: messages.go:90
msgid "Failed creating folder, please check permissions"
msgstr "Не удалось создать папку, пожалуйста проверьте права доступа"
#: messages.go:91
msgid "Could not connect, please try again"
msgstr "Нет соединения, попробуйте еще раз"
#: messages.go:92
msgid "Invalid password, please try again"
msgstr "Неверный пароль, пожалуйста попробуйте еще раз"
#: messages.go:93
msgid "Feature disabled"
msgstr "Данная возможность отключена"
#: messages.go:94
msgid "No labels selected"
msgstr "Нет выделенных меток"
#: messages.go:95
msgid "No albums selected"
msgstr "Нет выделенных альбомов"
#: messages.go:96
msgid "No files available for download"
msgstr "Нет файлов, доступных для скачивания"
#: messages.go:97
msgid "Failed to create zip file"
msgstr "Не удалось создать zip файл"
#: messages.go:98
msgid "Invalid credentials"
msgstr "Неверные учетные данные"
#: messages.go:99
msgid "Invalid link"
msgstr "Неверная ссылка"
#: messages.go:102
msgid "Changes successfully saved"
msgstr "Изменения сохранены"
#: messages.go:103
msgid "Album created"
msgstr "Альбом создан"
#: messages.go:104
msgid "Album saved"
msgstr "\\альбом сохранен"
#: messages.go:105
#, c-format
msgid "Album %s deleted"
msgstr "Альбом %s удален"
#: messages.go:106
msgid "Album contents cloned"
msgstr "Содержимое альбома скоприровано"
#: messages.go:107
msgid "File removed from stack"
msgstr "Файл удален из очереди"
#: messages.go:108
#, c-format
msgid "Selection added to %s"
msgstr "Выделение добавлено к %s"
#: messages.go:109
#, c-format
msgid "One entry added to %s"
msgstr "Один элемент добавлен к %s"
#: messages.go:110
#, c-format
msgid "%d entries added to %s"
msgstr "%d элементов добавлено к %s"
#: messages.go:111
#, c-format
msgid "One entry removed from %s"
msgstr "Один элемент удален из %s"
#: messages.go:112
#, c-format
msgid "%d entries removed from %s"
msgstr "%d элементов удалено из %s"
#: messages.go:113
msgid "Account created"
msgstr "Учетная запись создана"
#: messages.go:114
msgid "Account saved"
msgstr "Учетная запись сохранена"
#: messages.go:115
msgid "Account deleted"
msgstr "Учетная запись удалена"
#: messages.go:116
msgid "Settings saved"
msgstr "Настройки сохранены"
#: messages.go:117
msgid "Password changed"
msgstr "Пароль изменен"
#: messages.go:118
#, c-format
msgid "Import completed in %d s"
msgstr "Импортирование завершено за %d c"
#: messages.go:119
msgid "Import canceled"
msgstr "Импортирование отменено"
#: messages.go:120
#, c-format
msgid "Indexing completed in %d s"
msgstr "Индексирование завершено за %d с"
#: messages.go:121
msgid "Indexing originals..."
msgstr "Индексирование Оригиналов..."
#: messages.go:122
#, c-format
msgid "Indexing files in %s"
msgstr "Индексирование файлов в %s"
#: messages.go:123
msgid "Indexing canceled"
msgstr "Индексирование отменено"
#: messages.go:124
#, c-format
msgid "Removed %d files and %d photos"
msgstr "Удаление %d файлов и %d фотографий"
#: messages.go:125
#, c-format
msgid "Moving files from %s"
msgstr "Перемещение файлов из %s"
#: messages.go:126
#, c-format
msgid "Copying files from %s"
msgstr "Копирование файлов из %s"
#: messages.go:127
msgid "Labels deleted"
msgstr "Метки удалены"
#: messages.go:128
msgid "Label saved"
msgstr "Метки сохранены"
#: messages.go:129
#, c-format
msgid "%d files uploaded in %d s"
msgstr "%d файлов загружено за %d с"
#: messages.go:130
msgid "Selection archived"
msgstr "Выбранное помещено в архив"
#: messages.go:131
msgid "Selection restored"
msgstr "Выбранное восстановлено"
#: messages.go:132
msgid "Selection marked as private"
msgstr "Выбранное помечено как приватное"
#: messages.go:133
msgid "Albums deleted"
msgstr "Альбом удален"
#: messages.go:134
#, c-format
msgid "Zip created in %d s"
msgstr "Zip архив создан за %d с"

Binary file not shown.

View file

@ -0,0 +1,286 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-26 21:44-0400\n"
"PO-Revision-Date: 2020-10-26 21:46-0400\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: messages.go:72
msgid "Unexpected error, please try again"
msgstr "未知错误, 请重试"
#: messages.go:73
msgid "Invalid request"
msgstr "无效请求"
#: messages.go:74
msgid "Changes could not be saved"
msgstr "无法保存更改"
#: messages.go:75
msgid "Could not be deleted"
msgstr "无法删除"
#: messages.go:76
#, c-format
msgid "%s already exists"
msgstr "%s 已存在"
#: messages.go:77 messages.go:80
msgid "Not found on server, deleted?"
msgstr "服务器上不存在此文件, 或已被删除?"
#: messages.go:78
msgid "File not found"
msgstr "未找到文件"
#: messages.go:79
msgid "Selection not found"
msgstr "未找到所选"
#: messages.go:81
msgid "Account not found"
msgstr "未找到账户"
#: messages.go:82
msgid "User not found"
msgstr "未找到用户"
#: messages.go:83
msgid "Label not found"
msgstr "未找到标签"
#: messages.go:84
msgid "Album not found"
msgstr "未找到相册"
#: messages.go:85
msgid "Not available in public mode"
msgstr "公开模式中不可用"
#: messages.go:86
msgid "not available in read-only mode"
msgstr "只读模式中不可用"
#: messages.go:87
msgid "Please log in and try again"
msgstr "请登陆后重试"
#: messages.go:88
msgid "Upload might be offensive"
msgstr "所上传文件可能会冒犯其他人"
#: messages.go:89
msgid "No items selected"
msgstr "未选择任何项目"
#: messages.go:90
msgid "Failed creating file, please check permissions"
msgstr "无法创建文件, 请检查权限"
#: messages.go:91
msgid "Failed creating folder, please check permissions"
msgstr "无法创建目录, 请检查权限"
#: messages.go:92
msgid "Could not connect, please try again"
msgstr "无法连接, 请重试"
#: messages.go:93
msgid "Invalid password, please try again"
msgstr "无效密码, 请重试"
#: messages.go:94
msgid "Feature disabled"
msgstr "特性已被禁用"
#: messages.go:95
msgid "No labels selected"
msgstr "未选择标签"
#: messages.go:96
msgid "No albums selected"
msgstr "未选择相册"
#: messages.go:97
msgid "No files available for download"
msgstr "没有可供下载的文件"
#: messages.go:98
msgid "Failed to create zip file"
msgstr "创建zip文件失败"
#: messages.go:99
#, fuzzy
#| msgid "Invalid request"
msgid "Invalid credentials"
msgstr "无效请求"
#: messages.go:100
msgid "Invalid link"
msgstr "无效链接"
#: messages.go:103
msgid "Changes successfully saved"
msgstr "更改已保存"
#: messages.go:104
msgid "Album created"
msgstr "相册已创建"
#: messages.go:105
msgid "Album saved"
msgstr "相册已保存"
#: messages.go:106
#, c-format
msgid "Album %s deleted"
msgstr "相册 %s 已被删除"
#: messages.go:107
msgid "Album contents cloned"
msgstr "相册内容已被复制"
#: messages.go:108
msgid "File removed from stack"
msgstr "文件已被移出"
#: messages.go:109
#, fuzzy
#| msgid "Labels deleted"
msgid "File deleted"
msgstr "已删除标签"
#: messages.go:110
#, c-format
msgid "Selection added to %s"
msgstr "所选项目已被加入 %s"
#: messages.go:111
#, c-format
msgid "One entry added to %s"
msgstr "已向 %s 添加一个条目"
#: messages.go:112
#, c-format
msgid "%d entries added to %s"
msgstr "%d个条目已被加入到%s"
#: messages.go:113
#, c-format
msgid "One entry removed from %s"
msgstr "已从 %s 移除一个条目"
#: messages.go:114
#, c-format
msgid "%d entries removed from %s"
msgstr "%d 个条目已被移除于 %s"
#: messages.go:115
msgid "Account created"
msgstr "已创建账户"
#: messages.go:116
msgid "Account saved"
msgstr "已保存账户"
#: messages.go:117
msgid "Account deleted"
msgstr "已删除账户"
#: messages.go:118
msgid "Settings saved"
msgstr "设置已保存"
#: messages.go:119
msgid "Password changed"
msgstr "密码已修改"
#: messages.go:120
#, c-format
msgid "Import completed in %d s"
msgstr "导入成功, 共花费 %d 秒"
#: messages.go:121
msgid "Import canceled"
msgstr "导入已被中止"
#: messages.go:122
#, c-format
msgid "Indexing completed in %d s"
msgstr "索引成功, 共花费 %d 秒"
#: messages.go:123
msgid "Indexing originals..."
msgstr "索引原始文件..."
#: messages.go:124
#, c-format
msgid "Indexing files in %s"
msgstr "为 %s 中的文件创建索引"
#: messages.go:125
msgid "Indexing canceled"
msgstr "索引已被中止"
#: messages.go:126
#, c-format
msgid "Removed %d files and %d photos"
msgstr "删除了 %d 个文件和 %d 张照片"
#: messages.go:127
#, c-format
msgid "Moving files from %s"
msgstr "正在从 %s 中移动文件"
#: messages.go:128
#, c-format
msgid "Copying files from %s"
msgstr "正在从 %s 中复制文件"
#: messages.go:129
msgid "Labels deleted"
msgstr "已删除标签"
#: messages.go:130
msgid "Label saved"
msgstr "已保存标签"
#: messages.go:131
#, c-format
msgid "%d files uploaded in %d s"
msgstr "已上传 %d 个文件, 耗时 %d 秒"
#: messages.go:132
msgid "Selection archived"
msgstr "所选项目已被归档"
#: messages.go:133
msgid "Selection restored"
msgstr "所选项目已被恢复"
#: messages.go:134
msgid "Selection marked as private"
msgstr "所选项目已被设为私有"
#: messages.go:135
msgid "Albums deleted"
msgstr "相册已被删除"
#: messages.go:136
#, c-format
msgid "Zip created in %d s"
msgstr "Zip文件创建成功, 耗时 %d 秒"

45
assets/profiles/raw.pp3 Normal file
View file

@ -0,0 +1,45 @@
[Exposure]
Auto=false
HistogramMatching=true
[HLRecovery]
Enabled=true
Method=Blend
[Directional Pyramid Denoising]
Enabled=true
Enhance=false
Median=false
Luma=0
Ldetail=0
Chroma=0
Method=Lab
LMethod=SLI
CMethod=AUT
C2Method=AUTO
SMethod=shal
MedMethod=55
RGBMethod=soft
MethodMed=Lpab
Redchro=0
Bluechro=0
Gamma=1.7
Passes=1
LCurve=0;
CCCurve=0;
[LensProfile]
LcMode=lfauto
UseDistortion=true
UseVignette=true
UseCA=false
[Color Management]
ToneCurve=false
ApplyLookTable=true
ApplyBaselineExposureOffset=true
ApplyHueSatMap=true
DCPIlluminant=0
[RAW]
CA=true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Some files were not shown because too many files have changed in this diff Show more