Merge branch 'pulsejet:master' into eltos-patch-99

pull/175/head
Philipp Niedermayer 2022-11-19 15:52:58 +01:00 committed by GitHub
commit 1167365f7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
244 changed files with 8849 additions and 1161 deletions

1
.github/FUNDING.yml vendored 100644
View File

@ -0,0 +1 @@
github: [pulsejet]

View File

@ -118,6 +118,7 @@ jobs:
ports:
- 4444:5432/tcp
env:
POSTGRES_DB: nextcloud
POSTGRES_PASSWORD: rootpassword
options: >-
--health-cmd pg_isready

View File

@ -5,18 +5,6 @@ on:
- pull_request
jobs:
xml-linters:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Download schema
run: wget https://apps.nextcloud.com/schema/apps/info.xsd
- name: Lint info.xml
uses: ChristophWurst/xmllint-action@v1
with:
xml-file: ./appinfo/info.xml
xml-schema-file: ./info.xsd
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest

View File

@ -2,6 +2,25 @@
This file is manually updated. Please file an issue if something is missing.
## v4.8.0, v3.8.0
- **Feature**: Timeline path now scans recursively for mounted volumes / shares inside it.
- **Feature**: Multiple timeline paths can be specified.
## v4.7.0, v3.7.0 (2022-11-14)
- **Note**: you must run `occ memories:index -f` to take advantage of new features.
- **Massively improved video performance**
- Memories now comes with a dedicated transcoding server with HLS support.
- Read the documentation [here](https://github.com/pulsejet/memories/wiki/Configuration#video-transcoding) carefully for more details.
- **Feature**: Show EXIF metadata in sidebar ([#68](https://github.com/pulsejet/memories/issues/68))
- **Feature**: Multi-selection with drag (mobile) and shift+click ([#28](https://github.com/pulsejet/memories/issues/28))
- **Feature**: Show duration on video tiles
- **Feature**: Allow editing all image formats (HEIC etc.)
- Fix stretched images in viewer ([#176](https://github.com/pulsejet/memories/issues/176))
- Restore metadata after image edit ([#174](https://github.com/pulsejet/memories/issues/174))
- Fix loss of resolution after image edit
## v4.6.1, v3.6.1 (2022-11-07)
- **Feature**: Native sharing from the viewer (images only)

View File

@ -27,7 +27,8 @@ build-js-production:
rm -f js/* && npm run build
patch-external:
patch -p1 < patches/scroller.patch
patch -p1 < patches/scroller-perf.patch
patch -p1 < patches/scroller-sticky.patch
watch-js:
npm run watch

View File

@ -7,8 +7,9 @@
[![Demo](https://img.shields.io/badge/demo-online-blue)](https://memories-demo.radialapps.com/apps/memories/)
[![Gitter](https://img.shields.io/gitter/room/pulsejet/memories)](https://gitter.im/pulsejet/memories)
[![GitHub issues](https://img.shields.io/github/issues/pulsejet/memories)](https://github.com/pulsejet/memories/issues)
[![GitHub Sponsor](https://img.shields.io/github/sponsors/pulsejet?logo=GitHub)](https://github.com/sponsors/pulsejet)
Memories is a photo management app for Nextcloud with advanced features including:
Memories is a _batteries-included_ photo management solution for Nextcloud with advanced features including:
- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.
- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.
@ -18,7 +19,8 @@ Memories is a photo management app for Nextcloud with advanced features includin
- **📱 Mobile Support**: Works on devices of any shape and size through the web app.
- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.
- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.
- **⚡️ Performance**: Memories is extremely fast.
- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.
- **⚡️ Performance**: In general, Memories is extremely fast.
## 🌐 Online Demo
@ -41,11 +43,20 @@ Memories is a photo management app for Nextcloud with advanced features includin
1. ✅ Enable the app through the app management of your Nextcloud.
1. ⚒️ (Strongly recommended) use VS Code and install Vetur and Prettier.
## How to support development
## Support the project
1. **🌟 Star this repository**: This is the easiest way to support the project and costs nothing.
1. **🪲 Report bugs**: If you find a bug, please report it on the issue tracker.
1. **📝 Contribute**: If you want to contribute, please read file / comment on an issue and ask for guidance.
1. **🌟 Star this repository**: This is the easiest way to support Memories and costs nothing.
1. **🪲 Report bugs**: Report any bugs you find on the issue tracker.
1. **📝 Contribute**: Read and file or comment on an issue and ask for guidance.
1. **🪙 Sponsorship**: You can support the project financially at [GitHub Sponsors](https://github.com/sponsors/pulsejet).
A shout out to the current and past financial backers of Memories! See the sponsors page for a full list.
[<img src="https://github.com/mpodshivalin.png" width="42" />](https://github.com/mpodshivalin)
## Changelog
For the full changelog, see [CHANGELOG.md](CHANGELOG.md).
## Special Thanks

View File

@ -7,7 +7,7 @@
<description><![CDATA[
# Memories
Memories is a photo management app for Nextcloud with advanced features including:
Memories is a *batteries-included* photo management solution for Nextcloud with advanced features including:
- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.
- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.
@ -17,7 +17,8 @@ Memories is a photo management app for Nextcloud with advanced features includin
- **📱 Mobile Support**: Works on devices of any shape and size through the web app.
- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.
- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.
- **⚡️ Performance**: Memories is extremely fast.
- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.
- **⚡️ Performance**: In general, Memories is extremely fast.
## 🌐 Online Demo
@ -32,7 +33,7 @@ Memories is a photo management app for Nextcloud with advanced features includin
1. Run `php ./occ memories:index` to generate metadata indices for existing photos.
1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.
]]></description>
<version>4.6.2</version>
<version>4.7.2</version>
<licence>agpl</licence>
<author mail="radialapps@gmail.com" >Varun Patil</author>
<namespace>Memories</namespace>
@ -46,6 +47,7 @@ Memories is a photo management app for Nextcloud with advanced features includin
</dependencies>
<commands>
<command>OCA\Memories\Command\Index</command>
<command>OCA\Memories\Command\VideoSetup</command>
</commands>
<navigations>
<navigation>
@ -53,4 +55,12 @@ Memories is a photo management app for Nextcloud with advanced features includin
<route>memories.Page.main</route>
</navigation>
</navigations>
<repair-steps>
<post-migration>
<step>OCA\Memories\Migration\Repair</step>
</post-migration>
<install>
<step>OCA\Memories\Migration\Repair</step>
</install>
</repair-steps>
</info>

View File

@ -52,11 +52,14 @@ return [
['name' => 'Faces#faces', 'url' => '/api/faces', 'verb' => 'GET'],
['name' => 'Faces#preview', 'url' => '/api/faces/preview/{id}', 'verb' => 'GET'],
['name' => 'Image#info', 'url' => '/api/info/{id}', 'verb' => 'GET'],
['name' => 'Image#edit', 'url' => '/api/edit/{id}', 'verb' => 'PATCH'],
['name' => 'Image#info', 'url' => '/api/image/info/{id}', 'verb' => 'GET'],
['name' => 'Image#setExif', 'url' => '/api/image/set-exif/{id}', 'verb' => 'PATCH'],
['name' => 'Image#jpeg', 'url' => '/api/image/jpeg/{id}', 'verb' => 'GET'],
['name' => 'Archive#archive', 'url' => '/api/archive/{id}', 'verb' => 'PATCH'],
['name' => 'Video#transcode', 'url' => '/api/video/transcode/{client}/{fileid}/{profile}', 'verb' => 'GET'],
// Config API
['name' => 'Other#setUserConfig', 'url' => '/api/config/{key}', 'verb' => 'PUT'],

19
l10n/af.js vendored
View File

@ -1,18 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Instellings",
"Folders" : "Vouers",
"Favorites" : "Gunstelinge",
"Videos" : "Video's ",
"Archive" : "Argief",
"Tags" : "Etikette",
"Maps" : "Kaarte",
"Settings" : "Instellings",
"Unsaved changes" : "Onbewaarde veranderinge",
"Edit" : "Wysig",
"Loading …" : "Laai …",
"Cancel" : "Kanselleer",
"Delete" : "Skrap",
"Download" : "Laai af",
"Favorite" : "Gunsteling",
"View in folder" : "Vertoon in gids",
"Share" : "Deel",
"Public link" : "Openbare skakel",
"Back" : "Terug",
"Save" : "Bewaar",
@ -22,7 +26,16 @@ OC.L10N.register(
"Hour" : "Uur",
"Name" : "Naam",
"Update" : "Werk by",
"Loading …" : "Laai …",
"Refresh" : "Verfris"
"Refresh" : "Verfris",
"Remove" : "Verwyder",
"Reset" : "Herstel",
"Continue" : "Gaan voort",
"Original" : "Oorspronklik",
"Custom" : "Eie",
"Value" : "Waarde",
"Text" : "Teks",
"Size" : "Grootte",
"Position" : "Posisie",
"Quality" : "Kwaliteit"
},
"nplurals=2; plural=(n != 1);");

19
l10n/af.json vendored
View File

@ -1,16 +1,20 @@
{ "translations": {
"Settings" : "Instellings",
"Folders" : "Vouers",
"Favorites" : "Gunstelinge",
"Videos" : "Video's ",
"Archive" : "Argief",
"Tags" : "Etikette",
"Maps" : "Kaarte",
"Settings" : "Instellings",
"Unsaved changes" : "Onbewaarde veranderinge",
"Edit" : "Wysig",
"Loading …" : "Laai …",
"Cancel" : "Kanselleer",
"Delete" : "Skrap",
"Download" : "Laai af",
"Favorite" : "Gunsteling",
"View in folder" : "Vertoon in gids",
"Share" : "Deel",
"Public link" : "Openbare skakel",
"Back" : "Terug",
"Save" : "Bewaar",
@ -20,7 +24,16 @@
"Hour" : "Uur",
"Name" : "Naam",
"Update" : "Werk by",
"Loading …" : "Laai …",
"Refresh" : "Verfris"
"Refresh" : "Verfris",
"Remove" : "Verwyder",
"Reset" : "Herstel",
"Continue" : "Gaan voort",
"Original" : "Oorspronklik",
"Custom" : "Eie",
"Value" : "Waarde",
"Text" : "Teks",
"Size" : "Grootte",
"Position" : "Posisie",
"Quality" : "Kwaliteit"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

7
l10n/an.js vendored
View File

@ -1,14 +1,17 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configurazión",
"Favorites" : "Favoritos",
"Tags" : "Etiquetas",
"Settings" : "Configurazión",
"Cancel" : "Canzelar",
"Delete" : "Borrar",
"Download" : "Escargar",
"Favorite" : "Favorito",
"Share" : "Compartir",
"Back" : "Ta zaga",
"Name" : "Nombre"
"Name" : "Nombre",
"Continue" : "Continar",
"Size" : "Grandaria"
},
"nplurals=2; plural=(n != 1);");

7
l10n/an.json vendored
View File

@ -1,12 +1,15 @@
{ "translations": {
"Settings" : "Configurazión",
"Favorites" : "Favoritos",
"Tags" : "Etiquetas",
"Settings" : "Configurazión",
"Cancel" : "Canzelar",
"Delete" : "Borrar",
"Download" : "Escargar",
"Favorite" : "Favorito",
"Share" : "Compartir",
"Back" : "Ta zaga",
"Name" : "Nombre"
"Name" : "Nombre",
"Continue" : "Continar",
"Size" : "Grandaria"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

23
l10n/ar.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "الإعدادات",
"Timeline" : "الجدول الزمني",
"Folders" : "المجلدات",
"Favorites" : "المفضلات",
@ -8,12 +9,14 @@ OC.L10N.register(
"Archive" : "الأرشيف",
"Tags" : "الوسوم",
"Maps" : "الخرائط",
"Settings" : "الإعدادات",
"Edit" : "تعديل",
"Loading …" : "جاري التحميل …",
"Cancel" : "إلغاء",
"Delete" : "إزالة",
"Download" : "تنزيل",
"Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Copy public link" : "نسخ الرابط العام",
"Back" : "العودة",
"Save" : "Save",
@ -23,7 +26,21 @@ OC.L10N.register(
"Hour" : "الساعة",
"Name" : "الاسم",
"Update" : "تحديث",
"Loading …" : "جاري التحميل …",
"Refresh" : "إنعاش"
"Refresh" : "إنعاش",
"Remove" : "حذف",
"Reset" : "إعادة الضبط",
"Continue" : "متابعة",
"Undo" : "تراجع",
"Redo" : "إعادة",
"Original" : "أصلي",
"Custom" : "مخصّص",
"Value" : "القيمة",
"Line" : "خط",
"Text" : "نص",
"Size" : "الحجم",
"Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة",
"Auto" : "تلقائي"
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

23
l10n/ar.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "الإعدادات",
"Timeline" : "الجدول الزمني",
"Folders" : "المجلدات",
"Favorites" : "المفضلات",
@ -6,12 +7,14 @@
"Archive" : "الأرشيف",
"Tags" : "الوسوم",
"Maps" : "الخرائط",
"Settings" : "الإعدادات",
"Edit" : "تعديل",
"Loading …" : "جاري التحميل …",
"Cancel" : "إلغاء",
"Delete" : "إزالة",
"Download" : "تنزيل",
"Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Copy public link" : "نسخ الرابط العام",
"Back" : "العودة",
"Save" : "Save",
@ -21,7 +24,21 @@
"Hour" : "الساعة",
"Name" : "الاسم",
"Update" : "تحديث",
"Loading …" : "جاري التحميل …",
"Refresh" : "إنعاش"
"Refresh" : "إنعاش",
"Remove" : "حذف",
"Reset" : "إعادة الضبط",
"Continue" : "متابعة",
"Undo" : "تراجع",
"Redo" : "إعادة",
"Original" : "أصلي",
"Custom" : "مخصّص",
"Value" : "القيمة",
"Line" : "خط",
"Text" : "نص",
"Size" : "الحجم",
"Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة",
"Auto" : "تلقائي"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
}

15
l10n/ast.js vendored
View File

@ -1,18 +1,21 @@
OC.L10N.register(
"memories",
{
"Settings" : "Settings",
"Folders" : "Carpetes",
"Favorites" : "Favorites",
"Videos" : "Vídeos",
"Archive" : "Archivu",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"Settings" : "Settings",
"Edit" : "Editar",
"Loading …" : "Cargando...",
"Cancel" : "Encaboxar",
"Delete" : "Desaniciar",
"Download" : "Baxar",
"Favorite" : "Marcar como favoritu",
"View in folder" : "Ver na carpeta",
"Share" : "Share",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -21,7 +24,13 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nome",
"Update" : "Anovar",
"Loading …" : "Cargando...",
"Refresh" : "Refrescar"
"Refresh" : "Refrescar",
"Remove" : "Desaniciar",
"Continue" : "Siguir",
"Undo" : "Desfacer",
"Custom" : "Personalizáu",
"Text" : "Testu",
"Size" : "Tamañu",
"Position" : "Posición"
},
"nplurals=2; plural=(n != 1);");

15
l10n/ast.json vendored
View File

@ -1,16 +1,19 @@
{ "translations": {
"Settings" : "Settings",
"Folders" : "Carpetes",
"Favorites" : "Favorites",
"Videos" : "Vídeos",
"Archive" : "Archivu",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"Settings" : "Settings",
"Edit" : "Editar",
"Loading …" : "Cargando...",
"Cancel" : "Encaboxar",
"Delete" : "Desaniciar",
"Download" : "Baxar",
"Favorite" : "Marcar como favoritu",
"View in folder" : "Ver na carpeta",
"Share" : "Share",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -19,7 +22,13 @@
"Hour" : "Hora",
"Name" : "Nome",
"Update" : "Anovar",
"Loading …" : "Cargando...",
"Refresh" : "Refrescar"
"Refresh" : "Refrescar",
"Remove" : "Desaniciar",
"Continue" : "Siguir",
"Undo" : "Desfacer",
"Custom" : "Personalizáu",
"Text" : "Testu",
"Size" : "Tamañu",
"Position" : "Posición"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

9
l10n/az.js vendored
View File

@ -1,21 +1,26 @@
OC.L10N.register(
"memories",
{
"Settings" : "Quraşdırmalar",
"Favorites" : "Sevimlilər",
"Archive" : "Arxiv",
"Tags" : "Işarələr",
"Maps" : "Xəritələr",
"Settings" : "Quraşdırmalar",
"Edit" : "Dəyişiklik et",
"Cancel" : "Dayandır",
"Delete" : "Sil",
"Download" : "Yüklə",
"Favorite" : "İstəkli",
"Share" : "Paylaş",
"Save" : "Saxla",
"Month" : "Ay",
"Day" : "Gün",
"Time" : "Vaxt",
"Name" : "Ad",
"Update" : "Yenilənmə",
"Refresh" : "Yenilə"
"Refresh" : "Yenilə",
"Remove" : "Sil",
"Reset" : "Sıfırla",
"Size" : "Həcm"
},
"nplurals=2; plural=(n != 1);");

9
l10n/az.json vendored
View File

@ -1,19 +1,24 @@
{ "translations": {
"Settings" : "Quraşdırmalar",
"Favorites" : "Sevimlilər",
"Archive" : "Arxiv",
"Tags" : "Işarələr",
"Maps" : "Xəritələr",
"Settings" : "Quraşdırmalar",
"Edit" : "Dəyişiklik et",
"Cancel" : "Dayandır",
"Delete" : "Sil",
"Download" : "Yüklə",
"Favorite" : "İstəkli",
"Share" : "Paylaş",
"Save" : "Saxla",
"Month" : "Ay",
"Day" : "Gün",
"Time" : "Vaxt",
"Name" : "Ad",
"Update" : "Yenilənmə",
"Refresh" : "Yenilə"
"Refresh" : "Yenilə",
"Remove" : "Sil",
"Reset" : "Sıfırla",
"Size" : "Həcm"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

106
l10n/bg.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Спомени",
"Yet another photo management app" : "Вече е на разположение още едно приложение за управление на снимки",
"Settings" : "Настройки",
"Timeline" : "Времева линия",
"Folders" : "Папки",
"Favorites" : "Любими",
@ -13,7 +14,7 @@ OC.L10N.register(
"On this day" : "На този ден",
"Tags" : "Етикети",
"Maps" : "Карти",
"Settings" : "Настройки",
"EXIF" : "EXIF стандарт",
"A better photos experience awaits you" : "Очаква ви по-добро изживяване при управлението на снимки",
"Choose the root folder of your timeline to begin" : "Изберете основната папка на вашата времева линия /хронология/, за да започнете",
"If you just installed Memories, run:" : "Ако току-що сте инсталирали приложението Спомени, стартирайте:",
@ -24,6 +25,12 @@ OC.L10N.register(
"Choose the root of your timeline" : "Изберете основата /началото/ на вашата времева линия ",
"The selected folder does not seem to be valid. Try again." : "Избраната папка изглежда не е валидна. Опитайте отново.",
"Found {total} photos in {path}" : "Намерени са {total} снимки в {path}",
"Image saved successfully" : "Успешно запазено изображение",
"Error saving image" : "Грешка при запазване на изображение",
"Unsaved changes" : "Незаписани промени",
"Drop changes" : "Игнориране на промените",
"Edit" : "Редактиране",
"Loading …" : "Зареждане …",
"Cancel" : "Отказ",
"Delete" : "Изтриване",
"Remove from album" : "Премахване от албума",
@ -47,7 +54,10 @@ OC.L10N.register(
"Choose the root for the folders view" : "Изберете основа за изгледа на папките",
"Your Timeline" : "Вашата времева линия",
"Failed to load some photos" : "Неуспешно зареждане на някои снимки",
"Share" : "Споделяне",
"Sidebar" : "Странична лента",
"Video sharing not supported yet" : "Видео споделянето все още не се поддържа",
"Cannot share this type of data" : "Този тип данни не може да се споделят",
"Processing … {n}/{m}" : "Обработва се ... {n}/{m}",
"{n} photos added to album" : "{n} снимки са добавени в албума",
"Search for collaborators" : "Търсене на сътрудници",
@ -104,7 +114,6 @@ OC.L10N.register(
"Rename person" : "Преименуване на лице",
"Update" : "Обновяване",
"Failed to rename {oldName} to {name}." : "Неуспешно преименуване от {oldName} на {name}.",
"Loading …" : "Зареждане …",
"Merge {name} with person" : "Обединяване на {name} с лице",
"Are you sure you want to merge {name} with {newName}?" : "Сигурни ли сте, че искате да обедините {name} с {newName}?",
"Too many failures, aborting" : "Твърде много грешки от общ характер, прекъсване",
@ -112,7 +121,12 @@ OC.L10N.register(
"Failed to move {name}." : "Неуспешно преместване на {name}.",
"Move selected photos to person" : "Преместване на избрани снимки към лице",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Сигурни ли сте, че искате да преместите избраните снимки от {name} в {newName}?",
"Share Folder" : "Споделяне на папка",
"You cannot share the root folder" : "Не можете да споделите основната папка",
"Use the sidebar to share this folder." : "Използвайне на страничната лента, за споделяне на тази папка.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Ако създадете публично споделяне на връзка, щракнете върху Опресняване и съответна връзка към приложението Спомени ще бъде показана по-долу.",
"Refresh" : "Опресняване",
"Remove" : "Премахване",
"Share album" : "Споделяне на албум",
"Delete album" : "Изтриване на албум",
"Merge with different person" : "Обединяване с различно лице",
@ -120,13 +134,101 @@ OC.L10N.register(
"Share folder" : "Споделяне на папка",
"Move left" : "Преместване наляво",
"Move right" : "Преместване надясно",
"Save as" : "Запиши като",
"Reset" : "Възстановяване",
"All changes will be lost." : "Всички промени ще бъдат загубени.",
"Are you sure you want to continue?" : "Сигурни ли сте, че искате да продължите?",
"Continue" : "Продължаване",
"Undo" : "Отмяна",
"Redo" : "Повторение",
"Show original image" : "Показване на оригиналното изображение",
"Zoom in" : "Увеличаване на мащаба",
"Zoom out" : "Намаляване на мащаба",
"Toggle zoom menu" : "Превключване на менюто за мащабиране",
"Adjust" : "Настройване",
"Fine-tune" : "Фина настройка",
"Filters" : "Филтри",
"Watermark" : "Воден знак",
"Draw" : " Рисуване /Чертане/",
"Resize" : "Преоразмеряване",
"Invalid image." : "Невалидно изображение.",
"Error while uploading the image." : "Грешка при качване на изображението.",
"are not images" : "не са изображения",
"is not an image" : "не е изображение",
"to be uploaded" : "да бъдат качени",
"Crop" : "Изрязване",
"Original" : "Оригинал",
"Custom" : "Персонализиран",
"Square" : "Квадрат",
"Landscape" : "Пейзаж",
"Portrait" : "Портрет",
"Ellipse" : "Елипса",
"Classic TV" : "Класическа ТВ",
"CinemaScope" : "КиноЕкран",
"Arrow" : "Стрелка",
"Blur" : "Замъгляване",
"Brightness" : "Яркост",
"Contrast" : "Контраст",
"Un-flip X" : "Отмяна на Х обръщане",
"Flip X" : "Х Обръщане",
"Un-flip Y" : "Отмяна на Y обръщане",
"Flip Y" : "Y Обръщане",
"HSV" : "HSV",
"Hue" : "Нюанс",
"Saturation" : "Насищане",
"Value" : "Стойност",
"Image" : "Изображение",
"Importing …" : "Импортиране.../внасяне/",
"+ Add image" : "+ Добавяне на изображение",
"Line" : "Линия",
"Pen" : "Химилка",
"Polygon" : "Многоъгълник",
"Sides" : "Страни",
"Rectangle" : "Правоъгълник",
"Corner Radius" : "Радиус на ъгъла",
"Width in pixels" : "Ширина в пиксели",
"Height in pixels" : "Височина в пиксели",
"Toggle ratio lock" : "Превключване на заключване на съотношението",
"Reset to original image size" : "Възстановяване на оригиналния размер на изображението",
"Rotate" : "Завъртане",
"Text" : "Текст",
"Text spacing" : "Разредка на текста",
"Text alignment" : "Подравняване на текст",
"Font family" : "Семейство шрифтове",
"Size" : "Размер",
"Letter spacing" : "Разстояние между буквите",
"Line height" : "Височина на линията",
"Warmth" : "Топлина",
"+ Add watermark" : "+ Добавяне на воден знак",
"Choose watermark type" : "Избор на тип воден знак",
"Upload watermark" : "Качване на воден знак",
"Add as text" : "Добавяне като текст",
"Padding" : "Уплътняване",
"Shadow" : "Сянка",
"Horizontal" : "Хоризонтално",
"Vertical" : "Вертикално",
"Opacity" : "Непрозрачност",
"Position" : "Позиция",
"Stroke" : "Щрих, линия",
"Save image as" : "Запазване на изображението като",
"Extension" : "Разширение",
"Name is required." : "Името е задължително/нужно/.",
"Quality" : "Качество ",
"Saved image size (width x height)" : "Размер на запазеното изображение (ширина x височина)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Обърнете внимание, че избраната област за изрязване е по-ниска от приложеното преоразмеряване, което може да доведе до влошаване на качеството",
"Actual size (100%)" : "Действителен размер (100%)",
"Fit size" : "Подходящ размер",
"Auto" : "Автоматично",
"Shared Folder" : "Споделена папка",
"Failed to create {albumName}." : "Неуспешно създаване на {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Неуспешно преименуване от {currentAlbumName} на {newAlbumName}.",
"General Failure" : "Грешка от общ характер",
"Error: {msg}" : "Грешка: {msg}",
"Failed to delete files." : "Неуспешно изтриване на файлове.",
"Failed to delete {fileName}." : "Неуспешно изтриване на {fileName}.",
"Failed to download some files." : "Неуспешно изтегляне на някои файлове.",
"Failed to favorite files." : "Неуспешно добавяне на файлове в любими.",
"Failed to favorite some files." : "Неуспешно добавяне на някой файлове в любими.",
"Failed to favorite {fileName}." : "Неуспешно добавяне на {fileName} в любими."
},
"nplurals=2; plural=(n != 1);");

106
l10n/bg.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Спомени",
"Yet another photo management app" : "Вече е на разположение още едно приложение за управление на снимки",
"Settings" : "Настройки",
"Timeline" : "Времева линия",
"Folders" : "Папки",
"Favorites" : "Любими",
@ -11,7 +12,7 @@
"On this day" : "На този ден",
"Tags" : "Етикети",
"Maps" : "Карти",
"Settings" : "Настройки",
"EXIF" : "EXIF стандарт",
"A better photos experience awaits you" : "Очаква ви по-добро изживяване при управлението на снимки",
"Choose the root folder of your timeline to begin" : "Изберете основната папка на вашата времева линия /хронология/, за да започнете",
"If you just installed Memories, run:" : "Ако току-що сте инсталирали приложението Спомени, стартирайте:",
@ -22,6 +23,12 @@
"Choose the root of your timeline" : "Изберете основата /началото/ на вашата времева линия ",
"The selected folder does not seem to be valid. Try again." : "Избраната папка изглежда не е валидна. Опитайте отново.",
"Found {total} photos in {path}" : "Намерени са {total} снимки в {path}",
"Image saved successfully" : "Успешно запазено изображение",
"Error saving image" : "Грешка при запазване на изображение",
"Unsaved changes" : "Незаписани промени",
"Drop changes" : "Игнориране на промените",
"Edit" : "Редактиране",
"Loading …" : "Зареждане …",
"Cancel" : "Отказ",
"Delete" : "Изтриване",
"Remove from album" : "Премахване от албума",
@ -45,7 +52,10 @@
"Choose the root for the folders view" : "Изберете основа за изгледа на папките",
"Your Timeline" : "Вашата времева линия",
"Failed to load some photos" : "Неуспешно зареждане на някои снимки",
"Share" : "Споделяне",
"Sidebar" : "Странична лента",
"Video sharing not supported yet" : "Видео споделянето все още не се поддържа",
"Cannot share this type of data" : "Този тип данни не може да се споделят",
"Processing … {n}/{m}" : "Обработва се ... {n}/{m}",
"{n} photos added to album" : "{n} снимки са добавени в албума",
"Search for collaborators" : "Търсене на сътрудници",
@ -102,7 +112,6 @@
"Rename person" : "Преименуване на лице",
"Update" : "Обновяване",
"Failed to rename {oldName} to {name}." : "Неуспешно преименуване от {oldName} на {name}.",
"Loading …" : "Зареждане …",
"Merge {name} with person" : "Обединяване на {name} с лице",
"Are you sure you want to merge {name} with {newName}?" : "Сигурни ли сте, че искате да обедините {name} с {newName}?",
"Too many failures, aborting" : "Твърде много грешки от общ характер, прекъсване",
@ -110,7 +119,12 @@
"Failed to move {name}." : "Неуспешно преместване на {name}.",
"Move selected photos to person" : "Преместване на избрани снимки към лице",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Сигурни ли сте, че искате да преместите избраните снимки от {name} в {newName}?",
"Share Folder" : "Споделяне на папка",
"You cannot share the root folder" : "Не можете да споделите основната папка",
"Use the sidebar to share this folder." : "Използвайне на страничната лента, за споделяне на тази папка.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Ако създадете публично споделяне на връзка, щракнете върху Опресняване и съответна връзка към приложението Спомени ще бъде показана по-долу.",
"Refresh" : "Опресняване",
"Remove" : "Премахване",
"Share album" : "Споделяне на албум",
"Delete album" : "Изтриване на албум",
"Merge with different person" : "Обединяване с различно лице",
@ -118,13 +132,101 @@
"Share folder" : "Споделяне на папка",
"Move left" : "Преместване наляво",
"Move right" : "Преместване надясно",
"Save as" : "Запиши като",
"Reset" : "Възстановяване",
"All changes will be lost." : "Всички промени ще бъдат загубени.",
"Are you sure you want to continue?" : "Сигурни ли сте, че искате да продължите?",
"Continue" : "Продължаване",
"Undo" : "Отмяна",
"Redo" : "Повторение",
"Show original image" : "Показване на оригиналното изображение",
"Zoom in" : "Увеличаване на мащаба",
"Zoom out" : "Намаляване на мащаба",
"Toggle zoom menu" : "Превключване на менюто за мащабиране",
"Adjust" : "Настройване",
"Fine-tune" : "Фина настройка",
"Filters" : "Филтри",
"Watermark" : "Воден знак",
"Draw" : " Рисуване /Чертане/",
"Resize" : "Преоразмеряване",
"Invalid image." : "Невалидно изображение.",
"Error while uploading the image." : "Грешка при качване на изображението.",
"are not images" : "не са изображения",
"is not an image" : "не е изображение",
"to be uploaded" : "да бъдат качени",
"Crop" : "Изрязване",
"Original" : "Оригинал",
"Custom" : "Персонализиран",
"Square" : "Квадрат",
"Landscape" : "Пейзаж",
"Portrait" : "Портрет",
"Ellipse" : "Елипса",
"Classic TV" : "Класическа ТВ",
"CinemaScope" : "КиноЕкран",
"Arrow" : "Стрелка",
"Blur" : "Замъгляване",
"Brightness" : "Яркост",
"Contrast" : "Контраст",
"Un-flip X" : "Отмяна на Х обръщане",
"Flip X" : "Х Обръщане",
"Un-flip Y" : "Отмяна на Y обръщане",
"Flip Y" : "Y Обръщане",
"HSV" : "HSV",
"Hue" : "Нюанс",
"Saturation" : "Насищане",
"Value" : "Стойност",
"Image" : "Изображение",
"Importing …" : "Импортиране.../внасяне/",
"+ Add image" : "+ Добавяне на изображение",
"Line" : "Линия",
"Pen" : "Химилка",
"Polygon" : "Многоъгълник",
"Sides" : "Страни",
"Rectangle" : "Правоъгълник",
"Corner Radius" : "Радиус на ъгъла",
"Width in pixels" : "Ширина в пиксели",
"Height in pixels" : "Височина в пиксели",
"Toggle ratio lock" : "Превключване на заключване на съотношението",
"Reset to original image size" : "Възстановяване на оригиналния размер на изображението",
"Rotate" : "Завъртане",
"Text" : "Текст",
"Text spacing" : "Разредка на текста",
"Text alignment" : "Подравняване на текст",
"Font family" : "Семейство шрифтове",
"Size" : "Размер",
"Letter spacing" : "Разстояние между буквите",
"Line height" : "Височина на линията",
"Warmth" : "Топлина",
"+ Add watermark" : "+ Добавяне на воден знак",
"Choose watermark type" : "Избор на тип воден знак",
"Upload watermark" : "Качване на воден знак",
"Add as text" : "Добавяне като текст",
"Padding" : "Уплътняване",
"Shadow" : "Сянка",
"Horizontal" : "Хоризонтално",
"Vertical" : "Вертикално",
"Opacity" : "Непрозрачност",
"Position" : "Позиция",
"Stroke" : "Щрих, линия",
"Save image as" : "Запазване на изображението като",
"Extension" : "Разширение",
"Name is required." : "Името е задължително/нужно/.",
"Quality" : "Качество ",
"Saved image size (width x height)" : "Размер на запазеното изображение (ширина x височина)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Обърнете внимание, че избраната област за изрязване е по-ниска от приложеното преоразмеряване, което може да доведе до влошаване на качеството",
"Actual size (100%)" : "Действителен размер (100%)",
"Fit size" : "Подходящ размер",
"Auto" : "Автоматично",
"Shared Folder" : "Споделена папка",
"Failed to create {albumName}." : "Неуспешно създаване на {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Неуспешно преименуване от {currentAlbumName} на {newAlbumName}.",
"General Failure" : "Грешка от общ характер",
"Error: {msg}" : "Грешка: {msg}",
"Failed to delete files." : "Неуспешно изтриване на файлове.",
"Failed to delete {fileName}." : "Неуспешно изтриване на {fileName}.",
"Failed to download some files." : "Неуспешно изтегляне на някои файлове.",
"Failed to favorite files." : "Неуспешно добавяне на файлове в любими.",
"Failed to favorite some files." : "Неуспешно добавяне на някой файлове в любими.",
"Failed to favorite {fileName}." : "Неуспешно добавяне на {fileName} в любими."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

10
l10n/bn_BD.js vendored
View File

@ -1,14 +1,16 @@
OC.L10N.register(
"memories",
{
"Settings" : "সেটিংস",
"Favorites" : "প্রিয়জন",
"Tags" : "ট্যাগ",
"Maps" : "মানচিত্র",
"Settings" : "সেটিংস",
"Edit" : "সম্পাদনা",
"Cancel" : "বাতির",
"Delete" : "মুছে",
"Download" : "ডাউনলোড",
"Favorite" : "প্রিয়জন",
"Share" : "ভাগাভাগি কর",
"Back" : "পেছনে যাও",
"Save" : "সংরক্ষণ",
"Month" : "মাস",
@ -17,6 +19,10 @@ OC.L10N.register(
"Hour" : "ঘন্টা",
"Name" : "নাম",
"Update" : "পরিবর্ধন",
"Refresh" : "নবোদ্যম"
"Refresh" : "নবোদ্যম",
"Remove" : "অপসারণ",
"Reset" : "পূণঃনির্ধানণ",
"Continue" : "চালিয়ে যাও",
"Size" : "আকার"
},
"nplurals=2; plural=(n != 1);");

10
l10n/bn_BD.json vendored
View File

@ -1,12 +1,14 @@
{ "translations": {
"Settings" : "সেটিংস",
"Favorites" : "প্রিয়জন",
"Tags" : "ট্যাগ",
"Maps" : "মানচিত্র",
"Settings" : "সেটিংস",
"Edit" : "সম্পাদনা",
"Cancel" : "বাতির",
"Delete" : "মুছে",
"Download" : "ডাউনলোড",
"Favorite" : "প্রিয়জন",
"Share" : "ভাগাভাগি কর",
"Back" : "পেছনে যাও",
"Save" : "সংরক্ষণ",
"Month" : "মাস",
@ -15,6 +17,10 @@
"Hour" : "ঘন্টা",
"Name" : "নাম",
"Update" : "পরিবর্ধন",
"Refresh" : "নবোদ্যম"
"Refresh" : "নবোদ্যম",
"Remove" : "অপসারণ",
"Reset" : "পূণঃনির্ধানণ",
"Continue" : "চালিয়ে যাও",
"Size" : "আকার"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

13
l10n/br.js vendored
View File

@ -1,15 +1,19 @@
OC.L10N.register(
"memories",
{
"Settings" : "Arventennoù",
"Favorites" : "Pennrolloù",
"Videos" : "Videoioù",
"Tags" : "Klavioù",
"Settings" : "Arventennoù",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Edit" : "Cheñch",
"Loading …" : "O Kargañ ...",
"Cancel" : "Arrest",
"Delete" : "Lemel",
"Download" : "Pellgargañ",
"Favorite" : "Pennrollañ",
"View in folder" : "Diskwel en teuliad",
"Share" : "Rannan",
"Copy public link" : "Eilañ al liamm foran",
"Public link" : "Liamm publik",
"Back" : "Distro",
@ -18,7 +22,10 @@ OC.L10N.register(
"Day" : "Deiz",
"Name" : "Anv",
"Update" : "Hizivaat",
"Loading …" : "O Kargañ ...",
"Refresh" : "Freskaat"
"Refresh" : "Freskaat",
"Remove" : "Lemel",
"Continue" : "Kendec'hel",
"Original" : "Orin",
"Size" : "Ment"
},
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");

13
l10n/br.json vendored
View File

@ -1,13 +1,17 @@
{ "translations": {
"Settings" : "Arventennoù",
"Favorites" : "Pennrolloù",
"Videos" : "Videoioù",
"Tags" : "Klavioù",
"Settings" : "Arventennoù",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Edit" : "Cheñch",
"Loading …" : "O Kargañ ...",
"Cancel" : "Arrest",
"Delete" : "Lemel",
"Download" : "Pellgargañ",
"Favorite" : "Pennrollañ",
"View in folder" : "Diskwel en teuliad",
"Share" : "Rannan",
"Copy public link" : "Eilañ al liamm foran",
"Public link" : "Liamm publik",
"Back" : "Distro",
@ -16,7 +20,10 @@
"Day" : "Deiz",
"Name" : "Anv",
"Update" : "Hizivaat",
"Loading …" : "O Kargañ ...",
"Refresh" : "Freskaat"
"Refresh" : "Freskaat",
"Remove" : "Lemel",
"Continue" : "Kendec'hel",
"Original" : "Orin",
"Size" : "Ment"
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
}

8
l10n/bs.js vendored
View File

@ -1,16 +1,20 @@
OC.L10N.register(
"memories",
{
"Favorites" : "Favoriti",
"Settings" : "Podešavanje",
"Favorites" : "Favoriti",
"Edit" : "Izmjeni",
"Cancel" : "Otkaži",
"Delete" : "Obriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Share" : "Podjeli",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Name" : "Ime",
"Update" : "Ažuriraj"
"Update" : "Ažuriraj",
"Continue" : "Nastavi",
"Size" : "Veličina"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

8
l10n/bs.json vendored
View File

@ -1,14 +1,18 @@
{ "translations": {
"Favorites" : "Favoriti",
"Settings" : "Podešavanje",
"Favorites" : "Favoriti",
"Edit" : "Izmjeni",
"Cancel" : "Otkaži",
"Delete" : "Obriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Share" : "Podjeli",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Name" : "Ime",
"Update" : "Ažuriraj"
"Update" : "Ažuriraj",
"Continue" : "Nastavi",
"Size" : "Veličina"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
}

97
l10n/ca.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Paràmetres",
"Timeline" : "Línia de temps",
"Folders" : "Carpetes",
"Favorites" : "Preferits",
@ -11,13 +12,18 @@ OC.L10N.register(
"On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"Settings" : "Paràmetres",
"Error saving image" : "S'ha produït un error en desar la imatge",
"Unsaved changes" : "Canvis sense desar",
"Drop changes" : "Elimina els canvis",
"Edit" : "Edita",
"Loading …" : "Carregant …",
"Cancel" : "Cancel·la",
"Delete" : "Suprimeix",
"Download" : "Baixa",
"Favorite" : "Preferit",
"Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic",
"Back" : "Torna",
@ -30,8 +36,93 @@ OC.L10N.register(
"Minute" : "Minut",
"Name" : "Cognom",
"Update" : "Actualitzar",
"Loading …" : "Carregant …",
"Refresh" : "Actualitza",
"Share folder" : "Comparteix la carpeta"
"Remove" : "Elimina",
"Share folder" : "Comparteix la carpeta",
"Save as" : "Anomena i desa",
"Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.",
"Are you sure you want to continue?" : "Esteu segur que voleu continuar?",
"Continue" : "Continua",
"Undo" : "Desfés",
"Redo" : "Refer",
"Show original image" : "Mostra la imatge original",
"Zoom in" : "Ampliació",
"Zoom out" : "Allunya",
"Toggle zoom menu" : "Canvia el menú de zoom",
"Adjust" : "Ajusta",
"Fine-tune" : "Afinar",
"Filters" : "Filtres",
"Watermark" : "Marca d'aigua",
"Draw" : "Dibuixa",
"Resize" : "Redimensiona",
"Invalid image." : "Imatge no vàlida.",
"Error while uploading the image." : "S'ha produït un error en carregar la imatge.",
"are not images" : "no són imatges",
"is not an image" : "no és una imatge",
"to be uploaded" : "per ser carregat",
"Crop" : "Retalla",
"Original" : "Original",
"Custom" : "Personalitzat",
"Square" : "Quadrat",
"Landscape" : "Apaïsat",
"Portrait" : "Vertical",
"Ellipse" : "El·lipse",
"Classic TV" : "TV clàssica",
"CinemaScope" : "CinemaScope",
"Arrow" : "Fletxa",
"Blur" : "Difumina",
"Brightness" : "Brillantor",
"Contrast" : "Contrast",
"Un-flip X" : "Descapgira X",
"Flip X" : "Capgira X",
"Un-flip Y" : "Descapgira Y",
"Flip Y" : "Capgira Y",
"HSV" : "HSV",
"Hue" : "Tonalitat",
"Saturation" : "Saturació",
"Value" : "Valor",
"Image" : "Imatge",
"Importing …" : "S'està important …",
"+ Add image" : "+ Afegeix imatge",
"Line" : "Línia",
"Pen" : "Llapis",
"Polygon" : "Polígon",
"Sides" : "Cares",
"Rectangle" : "Rectangle",
"Corner Radius" : "Radi de la cantonada",
"Width in pixels" : "Amplada en píxels",
"Height in pixels" : "Alçada en píxels",
"Toggle ratio lock" : "Commuta la relació d'aspecte",
"Reset to original image size" : "Restableix la mida de la imatge original",
"Rotate" : "Gira",
"Text" : "Text",
"Text spacing" : "Espaiat del text",
"Text alignment" : "Alineació del text",
"Font family" : "Família tipogràfica",
"Size" : "Mida",
"Letter spacing" : "Espaiat de la lletra",
"Line height" : "Alçada de la línia",
"Warmth" : "Calidesa",
"+ Add watermark" : "+ Afegeix una marca d'aigua",
"Choose watermark type" : "Trieu el tipus de marca d'aigua",
"Upload watermark" : "Carregueu una marca d'aigua",
"Add as text" : "Afegeix com a text",
"Padding" : "Farciment",
"Shadow" : "Ombra",
"Horizontal" : "Horitzontal",
"Vertical" : "Vertical",
"Opacity" : "Opacitat",
"Position" : "Posició",
"Stroke" : "Traç",
"Save image as" : "Anomena i desa la imatge",
"Extension" : "Extensió",
"Name is required." : "Cal el nom.",
"Quality" : "Qualitat",
"Saved image size (width x height)" : "Mida de la imatge desada (amplada x alçada)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Tingueu en compte que l'àrea de retall seleccionada és inferior al canvi de mida aplicat, cosa que pot provocar una disminució de la qualitat",
"Actual size (100%)" : "Mida real (100%)",
"Fit size" : "Talla ajustada",
"Auto" : "Automàtic"
},
"nplurals=2; plural=(n != 1);");

97
l10n/ca.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Paràmetres",
"Timeline" : "Línia de temps",
"Folders" : "Carpetes",
"Favorites" : "Preferits",
@ -9,13 +10,18 @@
"On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"Settings" : "Paràmetres",
"Error saving image" : "S'ha produït un error en desar la imatge",
"Unsaved changes" : "Canvis sense desar",
"Drop changes" : "Elimina els canvis",
"Edit" : "Edita",
"Loading …" : "Carregant …",
"Cancel" : "Cancel·la",
"Delete" : "Suprimeix",
"Download" : "Baixa",
"Favorite" : "Preferit",
"Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic",
"Back" : "Torna",
@ -28,8 +34,93 @@
"Minute" : "Minut",
"Name" : "Cognom",
"Update" : "Actualitzar",
"Loading …" : "Carregant …",
"Refresh" : "Actualitza",
"Share folder" : "Comparteix la carpeta"
"Remove" : "Elimina",
"Share folder" : "Comparteix la carpeta",
"Save as" : "Anomena i desa",
"Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.",
"Are you sure you want to continue?" : "Esteu segur que voleu continuar?",
"Continue" : "Continua",
"Undo" : "Desfés",
"Redo" : "Refer",
"Show original image" : "Mostra la imatge original",
"Zoom in" : "Ampliació",
"Zoom out" : "Allunya",
"Toggle zoom menu" : "Canvia el menú de zoom",
"Adjust" : "Ajusta",
"Fine-tune" : "Afinar",
"Filters" : "Filtres",
"Watermark" : "Marca d'aigua",
"Draw" : "Dibuixa",
"Resize" : "Redimensiona",
"Invalid image." : "Imatge no vàlida.",
"Error while uploading the image." : "S'ha produït un error en carregar la imatge.",
"are not images" : "no són imatges",
"is not an image" : "no és una imatge",
"to be uploaded" : "per ser carregat",
"Crop" : "Retalla",
"Original" : "Original",
"Custom" : "Personalitzat",
"Square" : "Quadrat",
"Landscape" : "Apaïsat",
"Portrait" : "Vertical",
"Ellipse" : "El·lipse",
"Classic TV" : "TV clàssica",
"CinemaScope" : "CinemaScope",
"Arrow" : "Fletxa",
"Blur" : "Difumina",
"Brightness" : "Brillantor",
"Contrast" : "Contrast",
"Un-flip X" : "Descapgira X",
"Flip X" : "Capgira X",
"Un-flip Y" : "Descapgira Y",
"Flip Y" : "Capgira Y",
"HSV" : "HSV",
"Hue" : "Tonalitat",
"Saturation" : "Saturació",
"Value" : "Valor",
"Image" : "Imatge",
"Importing …" : "S'està important …",
"+ Add image" : "+ Afegeix imatge",
"Line" : "Línia",
"Pen" : "Llapis",
"Polygon" : "Polígon",
"Sides" : "Cares",
"Rectangle" : "Rectangle",
"Corner Radius" : "Radi de la cantonada",
"Width in pixels" : "Amplada en píxels",
"Height in pixels" : "Alçada en píxels",
"Toggle ratio lock" : "Commuta la relació d'aspecte",
"Reset to original image size" : "Restableix la mida de la imatge original",
"Rotate" : "Gira",
"Text" : "Text",
"Text spacing" : "Espaiat del text",
"Text alignment" : "Alineació del text",
"Font family" : "Família tipogràfica",
"Size" : "Mida",
"Letter spacing" : "Espaiat de la lletra",
"Line height" : "Alçada de la línia",
"Warmth" : "Calidesa",
"+ Add watermark" : "+ Afegeix una marca d'aigua",
"Choose watermark type" : "Trieu el tipus de marca d'aigua",
"Upload watermark" : "Carregueu una marca d'aigua",
"Add as text" : "Afegeix com a text",
"Padding" : "Farciment",
"Shadow" : "Ombra",
"Horizontal" : "Horitzontal",
"Vertical" : "Vertical",
"Opacity" : "Opacitat",
"Position" : "Posició",
"Stroke" : "Traç",
"Save image as" : "Anomena i desa la imatge",
"Extension" : "Extensió",
"Name is required." : "Cal el nom.",
"Quality" : "Qualitat",
"Saved image size (width x height)" : "Mida de la imatge desada (amplada x alçada)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Tingueu en compte que l'àrea de retall seleccionada és inferior al canvi de mida aplicat, cosa que pot provocar una disminució de la qualitat",
"Actual size (100%)" : "Mida real (100%)",
"Fit size" : "Talla ajustada",
"Auto" : "Automàtic"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

107
l10n/cs.js vendored
View File

@ -3,7 +3,8 @@ OC.L10N.register(
{
"Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Vzpomínky\n\n# Vzpomínky je aplikace pro správu fotek v rámci Nextcloud, nabízející pokročilé funkce jako jsou:\n\n- **📸 Časová osa**: Řadí fotky a videa podle data pořízení, získaného z Exif metadat.\n- **⏪ Převíjení**: Během okamžiku přeskočte na kdykoli v minulosti oživte své vzpomínky.\n- **🤖 Opatřování štítky pomocí strojového učení**: Seskupujte fotky podle lidí a objektů na nich (založeno na aplikaci [Rozpoznat](https://github.com/nextcloud/recognize).\n- **🖼️ Alba**: Vytvářejte alba a seskupujte tak fotky a videa. Pak je sdílejte s ostatními.\n- **🫱🏻‍🫲🏻 Externí sdílení**: Sdílejte fotky a videa s lidmi mimo vámi využívanou instanci Nextcloud.\n- **📱 Podpora mobilních platforem**: Funguje na zařízeních různých podob a velikostí prostřednictvím webové aplikace.\n- **✏️ Úprava metadat**: Pohotově a snadno upravujte data fotek.\n- **📦 Archiv**: Fotky, kterými nechcete znepřehledňovat časovou osu ukládejte do oddělené složky.\n- **⚡️ Výkon**: Aplikace vzpomínky je velmi rychlá.\n\n## 🌐 Ukázka na Internetu\n\n- Pro získání představy jak vzpomínky vypadají a jak se ovládají, podívejte se na [veřejnou ukázku](https://memories-demo.radialapps.com/apps/memories/).\n- Tato ukázka je pouze pro čtení a může být pomalá (je provozováno na virt. stroji v rámci bezplatné úrovně na službě [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotky pocházejí ze služby [Unsplash](https://unsplash.com/) (autorství jednotlivých snímků viz každá ze složek).\n\n## 🚀 Instalace\n\n1. Nainstalujte aplikaci z Nextcloud katalogu aplikací.\n1. Proveďte doporučené [kroky nastavení](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Spusťte příkaz `php ./occ memories:index` a vytvořte tak rejstříky metadat pro stávající fotky.\n1. Otevřete aplikaci 📷 Vzpomínky v Nextcloud a nastavte která složka obsahuje vaše fotky.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Vzpomínky\n\n# Vzpomínky je okamžitě použitelné řešení pro správu fotek v rámci Nextcloud, nabízející pokročilé funkce jako jsou:\n\n- **📸 Časová osa**: Řadí fotky a videa podle data pořízení, získaného z Exif metadat.\n- **⏪ Převíjení**: Během okamžiku přeskočte na kdykoli v minulosti oživte své vzpomínky.\n- **🤖 Opatřování štítky pomocí strojového učení**: Seskupujte fotky podle lidí a objektů na nich (založeno na aplikaci [Rozpoznat](https://github.com/nextcloud/recognize).\n- **🖼️ Alba**: Vytvářejte alba a seskupujte tak fotky a videa. Pak je sdílejte s ostatními.\n- **🫱🏻‍🫲🏻 Externí sdílení**: Sdílejte fotky a videa s lidmi mimo vámi využívanou instanci Nextcloud.\n- **📱 Podpora mobilních platforem**: Funguje na zařízeních různých podob a velikostí prostřednictvím webové aplikace.\n- **✏️ Úprava metadat**: Pohotově a snadno upravujte data fotek.\n- **📦 Archiv**: Fotky, kterými nechcete znepřehledňovat časovou osu ukládejte do oddělené složky.\n-**📹 Překódovávání videa**: Vzpomínky překódovávají videa a pro dosažení nejlepšího výkonu používají HLS\n- **⚡️ Výkon**: Obecně, aplikace vzpomínky je velmi rychlá.\n\n## 🌐 Ukázka na Internetu\n\n- Pro získání představy jak vzpomínky vypadají a jak se ovládají, podívejte se na [veřejnou ukázku](https://memories-demo.radialapps.com/apps/memories/).\n- Tato ukázka je pouze pro čtení a může být pomalá (je provozováno na virt. stroji v rámci bezplatné úrovně na službě [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotky pocházejí ze služby [Unsplash](https://unsplash.com/) (autorství jednotlivých snímků viz každá ze složek).\n\n## 🚀 Instalace\n\n1. Nainstalujte aplikaci z Nextcloud katalogu aplikací.\n1. Proveďte doporučené [kroky nastavení](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Spusťte příkaz `php ./occ memories:index` a vytvořte tak rejstříky metadat pro stávající fotky.\n1. Otevřete aplikaci 📷 Vzpomínky v Nextcloud a nastavte která složka obsahuje vaše fotky.",
"Settings" : "Nastavení",
"Timeline" : "Časová osa",
"Folders" : "Složky",
"Favorites" : "Oblíbené",
@ -14,7 +15,7 @@ OC.L10N.register(
"On this day" : "V tento den",
"Tags" : "Štítky",
"Maps" : "Mapy",
"Settings" : "Nastavení",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Lepší zážitek z fotek na vás čeká",
"Choose the root folder of your timeline to begin" : "Začněte zvolením kořenové složky vaší časové osy",
"If you just installed Memories, run:" : "Pokud jste Vzpomínky právě nainstalovali, spusťte:",
@ -25,6 +26,14 @@ OC.L10N.register(
"Choose the root of your timeline" : "Zvolte kořen vaší časové osy",
"The selected folder does not seem to be valid. Try again." : "Vybraná složka se nezdá být platná. Zkuste to znovu.",
"Found {total} photos in {path}" : "V {path} nalezeno {total} fotek",
"Failed to get Exif data. Metadata may be lost!" : "Nepodařilo se získat Exif metadata může dojít k jejich ztrátě!",
"No Exif data found! Continue?" : "Nenalezena žádná Exif data pokračovat?",
"Image saved successfully" : "Obrázek úspěšně uložen",
"Error saving image" : "Chyb při ukládání obrázku",
"Unsaved changes" : "Neuložené změny",
"Drop changes" : "Zahodit změny",
"Edit" : "Upravit",
"Loading …" : "Načítání…",
"Cancel" : "Storno",
"Delete" : "Smazat",
"Remove from album" : "Odebrat z alba",
@ -45,10 +54,14 @@ OC.L10N.register(
"Folders Path" : "Popis umístění složek",
"Show hidden folders" : "Zobrazit skryté složky",
"Square grid mode" : "Režim se čtvercovou mřížkou",
"Choose Timeline Paths" : "Zvolte trasy časovou osou",
"Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek",
"Your Timeline" : "Vaše časová osa",
"Failed to load some photos" : "Některé fotky se nepodařilo načíst",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Video sharing not supported yet" : "Sdílení videí zatím není podporováno",
"Cannot share this type of data" : "Tento typ dat není možné sdílet",
"Processing … {n}/{m}" : "Zpracovávání… {n}/{m}",
"{n} photos added to album" : "{n} fotek přidáno do alba",
"Search for collaborators" : "Vyhledat spolupracující",
@ -105,7 +118,6 @@ OC.L10N.register(
"Rename person" : "Přejmenovat osobu",
"Update" : "Aktualizovat",
"Failed to rename {oldName} to {name}." : "Nepodařilo se přejmenovat {oldName} na {name}.",
"Loading …" : "Načítání…",
"Merge {name} with person" : "Sloučit {name} s osobou",
"Are you sure you want to merge {name} with {newName}?" : "Opravdu chcete sloučit {name} s {newName}?",
"Too many failures, aborting" : "Příliš mnoho nezdarů přerušuje se",
@ -118,6 +130,9 @@ OC.L10N.register(
"Use the sidebar to share this folder." : "Pokud chcete tuto složku nasdílet, použijte k tomu postranní panel",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Pokud vytváříte odkaz pro veřejné sdílení, klikněte na opětovné načtení a níže se ukáže příslušný odkaz do Vzpomínek.",
"Refresh" : "Znovu načíst",
"Remove" : "Odebrat",
"Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album",
"Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou",
@ -125,6 +140,92 @@ OC.L10N.register(
"Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava",
"Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.",
"Are you sure you want to continue?" : "Opravdu chcete pokračovat?",
"Continue" : "Pokračovat",
"Undo" : "Vrátit zpět",
"Redo" : "Zopakovat",
"Show original image" : "Zobrazit původní obrázek",
"Zoom in" : "Přiblížit",
"Zoom out" : "Oddálit",
"Toggle zoom menu" : "Zobraz/nezobraz. nabídku zvětšení",
"Adjust" : "Přizpůsobit",
"Fine-tune" : "Jemné doladění",
"Filters" : "Filtry",
"Watermark" : "Vodoznak",
"Draw" : "Nakreslit",
"Resize" : "Změnit rozlišení",
"Invalid image." : "Neplatný obrázek.",
"Error while uploading the image." : "Chyba při nahrávání obrázku.",
"are not images" : "nejsou obrázky",
"is not an image" : "není obrázek",
"to be uploaded" : "k nahrání",
"Crop" : "Oříznout",
"Original" : "Původní",
"Custom" : "Uživatelsky určený",
"Square" : "Čtverec",
"Landscape" : "Krajina",
"Portrait" : "Portrét",
"Ellipse" : "Elipsa",
"Classic TV" : "Klasická televize",
"CinemaScope" : "Extrémně širokoúhlé",
"Arrow" : "Šipka",
"Blur" : "Rozmazat",
"Brightness" : "Jas",
"Contrast" : "Kontrast",
"Un-flip X" : "Vzít zpět svisl. převrácení",
"Flip X" : "Převrátit svisle",
"Un-flip Y" : "Vzít zpět vodorov. převrácení",
"Flip Y" : "Převrátit vodorovně",
"HSV" : "HSV",
"Hue" : "Odstín",
"Saturation" : "Saturace",
"Value" : "Hodnota",
"Image" : "Obrázek",
"Importing …" : "Importování…",
"+ Add image" : "+ Přidat obrázek",
"Line" : "Čára",
"Pen" : "Pero",
"Polygon" : "Mnohoúhelník",
"Sides" : "Stran",
"Rectangle" : "Obdélník",
"Corner Radius" : "Zaoblení rohů (poloměr)",
"Width in pixels" : "Šířka v pixelex",
"Height in pixels" : "Výška v pixelech",
"Toggle ratio lock" : "Vyp/zap. zám. poměru stran",
"Reset to original image size" : "Vrátit k původní velikosti obrázku",
"Rotate" : "Otočit",
"Text" : "Text",
"Text spacing" : "Rozestupy textu",
"Text alignment" : "Zarovnání textu",
"Font family" : "Skupina písem",
"Size" : "Velikost",
"Letter spacing" : "Rozestupy znaků",
"Line height" : "Výška řádku",
"Warmth" : "Teplota",
"+ Add watermark" : "+ přidat vodotisk",
"Choose watermark type" : "Zvolte typ vodotisku",
"Upload watermark" : "Nahrát vodotisk",
"Add as text" : "Přidat jako text",
"Padding" : "Doplňování",
"Shadow" : "Stín",
"Horizontal" : "Vodorovné",
"Vertical" : "Svislé",
"Opacity" : "(Ne)průhlednost",
"Position" : "Pozice",
"Stroke" : "Čára",
"Save image as" : "Uložit obrázek jako",
"Extension" : "Přípona",
"Name is required." : "Jméno je povinné.",
"Quality" : "Kvalita",
"Saved image size (width x height)" : "Velikost uloženého obrázku (šířka x výška)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Pozn.: označená oblast ořezu je menší než použitá změna rozlišení, což může způsobit snížení kvality",
"Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.",
"Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Nepodařilo přejmenovat {currentAlbumName} to {newAlbumName}.",

107
l10n/cs.json vendored
View File

@ -1,7 +1,8 @@
{ "translations": {
"Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Vzpomínky\n\n# Vzpomínky je aplikace pro správu fotek v rámci Nextcloud, nabízející pokročilé funkce jako jsou:\n\n- **📸 Časová osa**: Řadí fotky a videa podle data pořízení, získaného z Exif metadat.\n- **⏪ Převíjení**: Během okamžiku přeskočte na kdykoli v minulosti oživte své vzpomínky.\n- **🤖 Opatřování štítky pomocí strojového učení**: Seskupujte fotky podle lidí a objektů na nich (založeno na aplikaci [Rozpoznat](https://github.com/nextcloud/recognize).\n- **🖼️ Alba**: Vytvářejte alba a seskupujte tak fotky a videa. Pak je sdílejte s ostatními.\n- **🫱🏻‍🫲🏻 Externí sdílení**: Sdílejte fotky a videa s lidmi mimo vámi využívanou instanci Nextcloud.\n- **📱 Podpora mobilních platforem**: Funguje na zařízeních různých podob a velikostí prostřednictvím webové aplikace.\n- **✏️ Úprava metadat**: Pohotově a snadno upravujte data fotek.\n- **📦 Archiv**: Fotky, kterými nechcete znepřehledňovat časovou osu ukládejte do oddělené složky.\n- **⚡️ Výkon**: Aplikace vzpomínky je velmi rychlá.\n\n## 🌐 Ukázka na Internetu\n\n- Pro získání představy jak vzpomínky vypadají a jak se ovládají, podívejte se na [veřejnou ukázku](https://memories-demo.radialapps.com/apps/memories/).\n- Tato ukázka je pouze pro čtení a může být pomalá (je provozováno na virt. stroji v rámci bezplatné úrovně na službě [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotky pocházejí ze služby [Unsplash](https://unsplash.com/) (autorství jednotlivých snímků viz každá ze složek).\n\n## 🚀 Instalace\n\n1. Nainstalujte aplikaci z Nextcloud katalogu aplikací.\n1. Proveďte doporučené [kroky nastavení](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Spusťte příkaz `php ./occ memories:index` a vytvořte tak rejstříky metadat pro stávající fotky.\n1. Otevřete aplikaci 📷 Vzpomínky v Nextcloud a nastavte která složka obsahuje vaše fotky.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Vzpomínky\n\n# Vzpomínky je okamžitě použitelné řešení pro správu fotek v rámci Nextcloud, nabízející pokročilé funkce jako jsou:\n\n- **📸 Časová osa**: Řadí fotky a videa podle data pořízení, získaného z Exif metadat.\n- **⏪ Převíjení**: Během okamžiku přeskočte na kdykoli v minulosti oživte své vzpomínky.\n- **🤖 Opatřování štítky pomocí strojového učení**: Seskupujte fotky podle lidí a objektů na nich (založeno na aplikaci [Rozpoznat](https://github.com/nextcloud/recognize).\n- **🖼️ Alba**: Vytvářejte alba a seskupujte tak fotky a videa. Pak je sdílejte s ostatními.\n- **🫱🏻‍🫲🏻 Externí sdílení**: Sdílejte fotky a videa s lidmi mimo vámi využívanou instanci Nextcloud.\n- **📱 Podpora mobilních platforem**: Funguje na zařízeních různých podob a velikostí prostřednictvím webové aplikace.\n- **✏️ Úprava metadat**: Pohotově a snadno upravujte data fotek.\n- **📦 Archiv**: Fotky, kterými nechcete znepřehledňovat časovou osu ukládejte do oddělené složky.\n-**📹 Překódovávání videa**: Vzpomínky překódovávají videa a pro dosažení nejlepšího výkonu používají HLS\n- **⚡️ Výkon**: Obecně, aplikace vzpomínky je velmi rychlá.\n\n## 🌐 Ukázka na Internetu\n\n- Pro získání představy jak vzpomínky vypadají a jak se ovládají, podívejte se na [veřejnou ukázku](https://memories-demo.radialapps.com/apps/memories/).\n- Tato ukázka je pouze pro čtení a může být pomalá (je provozováno na virt. stroji v rámci bezplatné úrovně na službě [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotky pocházejí ze služby [Unsplash](https://unsplash.com/) (autorství jednotlivých snímků viz každá ze složek).\n\n## 🚀 Instalace\n\n1. Nainstalujte aplikaci z Nextcloud katalogu aplikací.\n1. Proveďte doporučené [kroky nastavení](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Spusťte příkaz `php ./occ memories:index` a vytvořte tak rejstříky metadat pro stávající fotky.\n1. Otevřete aplikaci 📷 Vzpomínky v Nextcloud a nastavte která složka obsahuje vaše fotky.",
"Settings" : "Nastavení",
"Timeline" : "Časová osa",
"Folders" : "Složky",
"Favorites" : "Oblíbené",
@ -12,7 +13,7 @@
"On this day" : "V tento den",
"Tags" : "Štítky",
"Maps" : "Mapy",
"Settings" : "Nastavení",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Lepší zážitek z fotek na vás čeká",
"Choose the root folder of your timeline to begin" : "Začněte zvolením kořenové složky vaší časové osy",
"If you just installed Memories, run:" : "Pokud jste Vzpomínky právě nainstalovali, spusťte:",
@ -23,6 +24,14 @@
"Choose the root of your timeline" : "Zvolte kořen vaší časové osy",
"The selected folder does not seem to be valid. Try again." : "Vybraná složka se nezdá být platná. Zkuste to znovu.",
"Found {total} photos in {path}" : "V {path} nalezeno {total} fotek",
"Failed to get Exif data. Metadata may be lost!" : "Nepodařilo se získat Exif metadata může dojít k jejich ztrátě!",
"No Exif data found! Continue?" : "Nenalezena žádná Exif data pokračovat?",
"Image saved successfully" : "Obrázek úspěšně uložen",
"Error saving image" : "Chyb při ukládání obrázku",
"Unsaved changes" : "Neuložené změny",
"Drop changes" : "Zahodit změny",
"Edit" : "Upravit",
"Loading …" : "Načítání…",
"Cancel" : "Storno",
"Delete" : "Smazat",
"Remove from album" : "Odebrat z alba",
@ -43,10 +52,14 @@
"Folders Path" : "Popis umístění složek",
"Show hidden folders" : "Zobrazit skryté složky",
"Square grid mode" : "Režim se čtvercovou mřížkou",
"Choose Timeline Paths" : "Zvolte trasy časovou osou",
"Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek",
"Your Timeline" : "Vaše časová osa",
"Failed to load some photos" : "Některé fotky se nepodařilo načíst",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Video sharing not supported yet" : "Sdílení videí zatím není podporováno",
"Cannot share this type of data" : "Tento typ dat není možné sdílet",
"Processing … {n}/{m}" : "Zpracovávání… {n}/{m}",
"{n} photos added to album" : "{n} fotek přidáno do alba",
"Search for collaborators" : "Vyhledat spolupracující",
@ -103,7 +116,6 @@
"Rename person" : "Přejmenovat osobu",
"Update" : "Aktualizovat",
"Failed to rename {oldName} to {name}." : "Nepodařilo se přejmenovat {oldName} na {name}.",
"Loading …" : "Načítání…",
"Merge {name} with person" : "Sloučit {name} s osobou",
"Are you sure you want to merge {name} with {newName}?" : "Opravdu chcete sloučit {name} s {newName}?",
"Too many failures, aborting" : "Příliš mnoho nezdarů přerušuje se",
@ -116,6 +128,9 @@
"Use the sidebar to share this folder." : "Pokud chcete tuto složku nasdílet, použijte k tomu postranní panel",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Pokud vytváříte odkaz pro veřejné sdílení, klikněte na opětovné načtení a níže se ukáže příslušný odkaz do Vzpomínek.",
"Refresh" : "Znovu načíst",
"Remove" : "Odebrat",
"Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album",
"Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou",
@ -123,6 +138,92 @@
"Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava",
"Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.",
"Are you sure you want to continue?" : "Opravdu chcete pokračovat?",
"Continue" : "Pokračovat",
"Undo" : "Vrátit zpět",
"Redo" : "Zopakovat",
"Show original image" : "Zobrazit původní obrázek",
"Zoom in" : "Přiblížit",
"Zoom out" : "Oddálit",
"Toggle zoom menu" : "Zobraz/nezobraz. nabídku zvětšení",
"Adjust" : "Přizpůsobit",
"Fine-tune" : "Jemné doladění",
"Filters" : "Filtry",
"Watermark" : "Vodoznak",
"Draw" : "Nakreslit",
"Resize" : "Změnit rozlišení",
"Invalid image." : "Neplatný obrázek.",
"Error while uploading the image." : "Chyba při nahrávání obrázku.",
"are not images" : "nejsou obrázky",
"is not an image" : "není obrázek",
"to be uploaded" : "k nahrání",
"Crop" : "Oříznout",
"Original" : "Původní",
"Custom" : "Uživatelsky určený",
"Square" : "Čtverec",
"Landscape" : "Krajina",
"Portrait" : "Portrét",
"Ellipse" : "Elipsa",
"Classic TV" : "Klasická televize",
"CinemaScope" : "Extrémně širokoúhlé",
"Arrow" : "Šipka",
"Blur" : "Rozmazat",
"Brightness" : "Jas",
"Contrast" : "Kontrast",
"Un-flip X" : "Vzít zpět svisl. převrácení",
"Flip X" : "Převrátit svisle",
"Un-flip Y" : "Vzít zpět vodorov. převrácení",
"Flip Y" : "Převrátit vodorovně",
"HSV" : "HSV",
"Hue" : "Odstín",
"Saturation" : "Saturace",
"Value" : "Hodnota",
"Image" : "Obrázek",
"Importing …" : "Importování…",
"+ Add image" : "+ Přidat obrázek",
"Line" : "Čára",
"Pen" : "Pero",
"Polygon" : "Mnohoúhelník",
"Sides" : "Stran",
"Rectangle" : "Obdélník",
"Corner Radius" : "Zaoblení rohů (poloměr)",
"Width in pixels" : "Šířka v pixelex",
"Height in pixels" : "Výška v pixelech",
"Toggle ratio lock" : "Vyp/zap. zám. poměru stran",
"Reset to original image size" : "Vrátit k původní velikosti obrázku",
"Rotate" : "Otočit",
"Text" : "Text",
"Text spacing" : "Rozestupy textu",
"Text alignment" : "Zarovnání textu",
"Font family" : "Skupina písem",
"Size" : "Velikost",
"Letter spacing" : "Rozestupy znaků",
"Line height" : "Výška řádku",
"Warmth" : "Teplota",
"+ Add watermark" : "+ přidat vodotisk",
"Choose watermark type" : "Zvolte typ vodotisku",
"Upload watermark" : "Nahrát vodotisk",
"Add as text" : "Přidat jako text",
"Padding" : "Doplňování",
"Shadow" : "Stín",
"Horizontal" : "Vodorovné",
"Vertical" : "Svislé",
"Opacity" : "(Ne)průhlednost",
"Position" : "Pozice",
"Stroke" : "Čára",
"Save image as" : "Uložit obrázek jako",
"Extension" : "Přípona",
"Name is required." : "Jméno je povinné.",
"Quality" : "Kvalita",
"Saved image size (width x height)" : "Velikost uloženého obrázku (šířka x výška)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Pozn.: označená oblast ořezu je menší než použitá změna rozlišení, což může způsobit snížení kvality",
"Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.",
"Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Nepodařilo přejmenovat {currentAlbumName} to {newAlbumName}.",

13
l10n/cy_GB.js vendored
View File

@ -1,15 +1,18 @@
OC.L10N.register(
"memories",
{
"Settings" : "Gosodiadau",
"Favorites" : "Ffefrynnau",
"Videos" : "Fideos",
"Archive" : "Archif",
"Tags" : "Tagiau",
"Settings" : "Gosodiadau",
"Edit" : "Golygu",
"Loading …" : "Yn llwytho …",
"Cancel" : "Diddymu",
"Delete" : "Dileu",
"Download" : "Llwytho i lawr",
"Favorite" : "Ffefryn",
"Share" : "Rhannu",
"Copy public link" : "Copïo dolen gyhoeddus",
"Back" : "Nôl",
"Save" : "Cadw",
@ -19,7 +22,11 @@ OC.L10N.register(
"Time" : "Amser",
"Name" : "Enw",
"Update" : "Diweddaru",
"Loading …" : "Yn llwytho …",
"Refresh" : "Ail-lwytho"
"Refresh" : "Ail-lwytho",
"Remove" : "Gwaredu",
"Undo" : "Dadwneud",
"Custom" : "Cyfaddas",
"Size" : "Maint",
"Auto" : "Awto"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

13
l10n/cy_GB.json vendored
View File

@ -1,13 +1,16 @@
{ "translations": {
"Settings" : "Gosodiadau",
"Favorites" : "Ffefrynnau",
"Videos" : "Fideos",
"Archive" : "Archif",
"Tags" : "Tagiau",
"Settings" : "Gosodiadau",
"Edit" : "Golygu",
"Loading …" : "Yn llwytho …",
"Cancel" : "Diddymu",
"Delete" : "Dileu",
"Download" : "Llwytho i lawr",
"Favorite" : "Ffefryn",
"Share" : "Rhannu",
"Copy public link" : "Copïo dolen gyhoeddus",
"Back" : "Nôl",
"Save" : "Cadw",
@ -17,7 +20,11 @@
"Time" : "Amser",
"Name" : "Enw",
"Update" : "Diweddaru",
"Loading …" : "Yn llwytho …",
"Refresh" : "Ail-lwytho"
"Refresh" : "Ail-lwytho",
"Remove" : "Gwaredu",
"Undo" : "Dadwneud",
"Custom" : "Cyfaddas",
"Size" : "Maint",
"Auto" : "Awto"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}

23
l10n/da.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Minder",
"Yet another photo management app" : "Endnu en fotostyringsapp",
"Settings" : "Indstillinger",
"Timeline" : "Tidslinje",
"Folders" : "Mapper",
"Favorites" : "Favoritter",
@ -13,7 +14,9 @@ OC.L10N.register(
"On this day" : "På denne dag",
"Tags" : "Mærker",
"Maps" : "Kort",
"Settings" : "Indstillinger",
"Unsaved changes" : "Ikke gemte ændringer",
"Edit" : "Redigér",
"Loading …" : "Loading …",
"Cancel" : "Annuller",
"Delete" : "Slet",
"Download" : "Download",
@ -25,6 +28,7 @@ OC.L10N.register(
"Timeline Path" : "Tidslinjesti",
"Show hidden folders" : "Vis skjulte mapper",
"Failed to load some photos" : "Kunne ikke indlæse nogle billeder",
"Share" : "Del",
"Copy public link" : "Kopier offentligt link",
"Public link" : "Offentligt link",
"New album" : "Nyt album",
@ -46,9 +50,24 @@ OC.L10N.register(
"Hour" : "Time",
"Name" : "Navn",
"Update" : "Opdater",
"Loading …" : "Loading …",
"Refresh" : "Opdater",
"Remove" : "Fjern",
"Share folder" : "Del mappe",
"Reset" : "Nulstil",
"Continue" : "Fortsæt",
"Undo" : "Fortryd",
"Redo" : "Annullér fortryd",
"Original" : "Original",
"Custom" : "Valgfrit",
"Value" : "Værdi",
"Image" : "Billede",
"Line" : "Linje",
"Text" : "Tekst",
"Size" : "Størelse",
"Position" : "Position",
"Extension" : "Filtype",
"Name is required." : "Navn er påkrævet.",
"Auto" : "Auto",
"Failed to delete files." : "Kunne ikke slette filer.",
"Failed to delete {fileName}." : "Kunne ikke slette {fileName}.",
"Failed to favorite files." : "Kunne ikke vælge favorit filer.",

23
l10n/da.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Minder",
"Yet another photo management app" : "Endnu en fotostyringsapp",
"Settings" : "Indstillinger",
"Timeline" : "Tidslinje",
"Folders" : "Mapper",
"Favorites" : "Favoritter",
@ -11,7 +12,9 @@
"On this day" : "På denne dag",
"Tags" : "Mærker",
"Maps" : "Kort",
"Settings" : "Indstillinger",
"Unsaved changes" : "Ikke gemte ændringer",
"Edit" : "Redigér",
"Loading …" : "Loading …",
"Cancel" : "Annuller",
"Delete" : "Slet",
"Download" : "Download",
@ -23,6 +26,7 @@
"Timeline Path" : "Tidslinjesti",
"Show hidden folders" : "Vis skjulte mapper",
"Failed to load some photos" : "Kunne ikke indlæse nogle billeder",
"Share" : "Del",
"Copy public link" : "Kopier offentligt link",
"Public link" : "Offentligt link",
"New album" : "Nyt album",
@ -44,9 +48,24 @@
"Hour" : "Time",
"Name" : "Navn",
"Update" : "Opdater",
"Loading …" : "Loading …",
"Refresh" : "Opdater",
"Remove" : "Fjern",
"Share folder" : "Del mappe",
"Reset" : "Nulstil",
"Continue" : "Fortsæt",
"Undo" : "Fortryd",
"Redo" : "Annullér fortryd",
"Original" : "Original",
"Custom" : "Valgfrit",
"Value" : "Værdi",
"Image" : "Billede",
"Line" : "Linje",
"Text" : "Tekst",
"Size" : "Størelse",
"Position" : "Position",
"Extension" : "Filtype",
"Name is required." : "Navn er påkrævet.",
"Auto" : "Auto",
"Failed to delete files." : "Kunne ikke slette filer.",
"Failed to delete {fileName}." : "Kunne ikke slette {fileName}.",
"Failed to favorite files." : "Kunne ikke vælge favorit filer.",

124
l10n/de.js vendored
View File

@ -3,16 +3,19 @@ OC.L10N.register(
{
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere App zur Verwaltung von Fotos",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nMemories ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, geparst aus Exif-Daten.\n- **⏪ Zurückspulen**: Springe sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erlebe deine Erinnerungen erneut.\n- **🤖 KI-Tagging**: Gruppiere Fotos nach Personen und Objekten mithilfe von KI, unterstützt von der App [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstelle Alben, um Fotos und Videos zu gruppieren. Dann teile diese Alben mit anderen.\n- **📁 Ordner**: Durchsuche deine eigenen und freigegebenen Ordner mit einer ähnlichen, effizienten Zeitleiste.\n- **🎦 Diashow**: Zeige ganz einfach Fotos aus deinerr Chronik und deinen Ordnern an.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeite Exif-Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichere Fotos, die du nicht in deiner Chronik sehen möchtest, in einem separaten Ordner.\n- **📹 Videotranskodierung**: Memories transkodiert Videos und verwendet HLS für maximale Leistung.\n- **📷 RAW-Unterstützung**: Zeige RAW-Fotos von deiner Kamera mit der App [Camera RAW Previews](https://apps.nextcloud.com/apps/camerarawpreviews) an.\n- **⚡️ Schnell**: Memories ist extrem schnell. Zeitraum.\n\nUm eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehe dir die [öffentliche Demo](https://memories-demo.radialapps.com/apps/memories/) an. Beachte, dass die Demo schreibgeschützt ist und möglicherweise langsam ist, da sie in einer von [Oracle Cloud] (https://www.oracle.com/cloud/free/) bereitgestellten Low-End-VM mit kostenlosem Kontingent ausgeführt wird. Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise findest du in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installiere die App aus dem Nextcloud App Store\n1. Führe `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffne die App 📷 Erinnerungen in Nextcloud und lege das Verzeichnis mit deinen Fotos fest. Fotos aus diesem Verzeichnis werden in der Zeitleiste angezeigt, einschließlich aller Fotos in verschachtelten Unterverzeichnissen.\n1. Die Installation des [Vorschaugenerators](https://github.com/rullzer/previewgenerator) zum Vorgenerieren von Miniaturansichten wird dringend empfohlen.",
"Settings" : "Einstellungen",
"Timeline" : "Verlauf",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"Settings" : "Einstellungen",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet dich",
"Choose the root folder of your timeline to begin" : "Wähle das Wurzelverzeichnis deiner Zeitleiste, um zu beginnen",
"If you just installed Memories, run:" : "Wenn du Memorys gerade installiert hast, führe Folgendes aus:",
@ -22,10 +25,20 @@ OC.L10N.register(
"You can always change this later in settings" : "Du kannst das auch noch später in den Einstellungen ändern.",
"Choose the root of your timeline" : "Wähle den Start deiner Zeitleiste aus",
"The selected folder does not seem to be valid. Try again." : "Der ausgewählte Ordner scheint ungültig zu sein. Versuche es nochmal.",
"Found {total} photos in {path}" : "{total} Fotos gefunden in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
"Remove from album" : "Aus dem Album entfernen",
"Download" : "Herunterladen",
"Favorite" : "Favorit",
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"View in folder" : "In Ordner anzeigen",
@ -35,6 +48,7 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien herunterzuladen. Bist du dir sicher?",
"You are about to delete a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien zu löschen. Bist du dir sicher?",
"You are about to touch a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien zu ändern. Bist du dir sicher?",
"Could not remove photos from album" : "Fotos konnten nicht aus dem Album entfernt werden",
"_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitlachse",
"Folders Path" : "Ordnerpfad",
@ -43,8 +57,12 @@ OC.L10N.register(
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Video sharing not supported yet" : "Teilen von Videos wird bislang nicht unterstützt",
"Cannot share this type of data" : "Diese Art von Daten kann nicht geteilt werden",
"Processing … {n}/{m}" : "Verarbeite … {n}/{m}",
"{n} photos added to album" : "{n} Fotos zum Album hinzugefügt",
"Search for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Nach Benutzer oder Gruppen suchen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -63,6 +81,8 @@ OC.L10N.register(
"New album" : "Neues Album",
"Create new album" : "Neues Album erstellen",
"Edit album details" : "Albumdetails bearbeiten",
"Could not load the selected album" : "Gewähltes Album konnte nicht geladen werden",
"Remove Album" : "Album entfernen",
"Failed to delete {name}." : "{name} konnte nicht gelöscht werden.",
"Name of the album" : "Name des Albums",
"Location of the album" : "Ort des Albums",
@ -75,7 +95,10 @@ OC.L10N.register(
"Create album" : "Album erstellen",
"Add selection to album {albumName}" : "Auswahl zum Album {albumName} hinzufügen",
"Create a new album." : "Ein neues Album erstellen",
"_Share with %n user_::_Share with %n users_" : ["Mit %n Benutzer teilen","Mit %n Benutzern telken"],
"_%n item_::_%n items_" : ["%n Element","%n Elemente"],
"Save collaborators for this album." : "Mitbearbeitende für dieses Album speichern.",
"Share Album" : "Album teilen",
"Year" : "Jahr",
"Month" : "Monat",
"Day" : "Tag",
@ -89,31 +112,126 @@ OC.L10N.register(
"Exercise caution and make sure you have backups." : "Sei vorsichtig und stelle sicher, dass du Backups hast.",
"Loading data … {n}/{m}" : "Lade … {n}/{m}",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
"Rename person" : "Person umbenennen",
"Update" : "Aktualisieren",
"Failed to rename {oldName} to {name}." : "{oldName} konnte nicht in {name} umbenannt werden.",
"Loading …" : "Lade …",
"Merge {name} with person" : "{name} mit Person zusammenführen",
"Are you sure you want to merge {name} with {newName}?" : "Bist du sicher, dass du {name} mit {newName} zusammenführen möchtest?",
"Too many failures, aborting" : "Zu viele Fehler, Abbruch",
"Error while moving {basename}" : "Fehler beim Verschieben von {basename}",
"Failed to move {name}." : "{name} konnte nicht verschoben werden.",
"Move selected photos to person" : "Ausgewählte Fotos zu einer Person verschieben",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Möchtest du die ausgewählten Fotos wirklich von {name} nach {newName} verschieben?",
"Share Folder" : "Ordner teilen",
"You cannot share the root folder" : "Du kannst den Wurzelordner nicht teilen",
"Use the sidebar to share this folder." : "Verwende die Seitenleiste, um diesen Ordner zu teilen.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Wenn du eine öffentliche Linkfreigabe erstellst, klicke auf Aktualisieren und ein entsprechender Link zu Memories wird unten angezeigt.",
"Refresh" : "Aktualisieren",
"Share album" : "Album teilen",
"Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben",
"Move right" : "Nach rechts verschieben",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
"Are you sure you want to continue?" : "Bist du dir sicher, dass du fortsetzen möchtest?",
"Continue" : "Fortsetzen",
"Undo" : "Rückgängig",
"Redo" : "Wiederherstellen",
"Show original image" : "Originalbild anzeigen",
"Zoom in" : "Hinein zoomen",
"Zoom out" : "Hinauszoomen",
"Toggle zoom menu" : "Zoom-Menü umschalten",
"Adjust" : "Anpassen",
"Fine-tune" : "Feinabstimmung",
"Filters" : "Filter",
"Watermark" : "Wasserzeichen",
"Draw" : "Zeichnen",
"Resize" : "Größe ändern",
"Invalid image." : "Ungültiges Bild",
"Error while uploading the image." : "Fehler beim Hochladen des Bildes.",
"are not images" : "Sind keine Bilder",
"is not an image" : "Ist kein Bild",
"to be uploaded" : "zum Hochladen",
"Crop" : "Zuschneiden",
"Original" : "Original",
"Custom" : "Benutzerdefiniert",
"Square" : "Quadrat",
"Landscape" : "Landschaft",
"Portrait" : "Porträt",
"Ellipse" : "Ellipse",
"Classic TV" : "Klassisches Fernsehen",
"CinemaScope" : "CinemaScope",
"Arrow" : "Pfeil",
"Blur" : "Verwischen",
"Brightness" : "Helligkeit",
"Contrast" : "Kontrast",
"Un-flip X" : "Spiegeln X rückgängig",
"Flip X" : "Spiegeln X",
"Un-flip Y" : "Spiegeln Y rückgängig",
"Flip Y" : "Spiegeln Y",
"HSV" : "HSV",
"Hue" : "Farbton",
"Saturation" : "Sättigung",
"Value" : "Wert",
"Image" : "Bild",
"Importing …" : "Importiere …",
"+ Add image" : "+ Bild hinzufügen",
"Line" : "Linie",
"Pen" : "Stift",
"Polygon" : "Polygon",
"Sides" : "Seiten",
"Rectangle" : "Rechteck",
"Corner Radius" : "Eckenradius",
"Width in pixels" : "Breite in Pixel",
"Height in pixels" : "Höhe in Pixel",
"Toggle ratio lock" : "Verhältnis-Sperre umschalten",
"Reset to original image size" : "Auf ursprüngliche Bildgröße zurücksetzen",
"Rotate" : "Rotieren",
"Text" : "Text",
"Text spacing" : "Textabstand",
"Text alignment" : "Textausrichtung",
"Font family" : "Schriftenfamilie",
"Size" : "Größe",
"Letter spacing" : "Buchstaben-Abstand",
"Line height" : "Zeilenhöhe",
"Warmth" : "Wärme",
"+ Add watermark" : "+ Wasserzeichen hinzufügen",
"Choose watermark type" : "Typ des Wasserzeichens auswählen",
"Upload watermark" : "Wasserzeichenhochladen",
"Add as text" : "AlsTexthinzufügen",
"Padding" : "Auffüllen",
"Shadow" : "Schatten",
"Horizontal" : "Horizontal",
"Vertical" : "Vertikal",
"Opacity" : "Deckkraft",
"Position" : "Position",
"Stroke" : "Strich",
"Save image as" : "Bild speichern unter",
"Extension" : "Erweiterung",
"Name is required." : "Name ist erforderlich.",
"Quality" : "Qualität",
"Saved image size (width x height)" : "Gespeicherte Bildgröße (Breite x Höhe)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Beachte, dass der ausgewählte Zuschneidebereich kleiner ist als die angewendete Größenänderung, was zu Qualitätseinbußen führen kann.",
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "{currentAlbumName} konnte nicht in {newAlbumName} umbenannt werden.",
"General Failure" : "Allgemeiner Fehler",
"Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.",
"Failed to download some files." : "Einige Dateien konnten nicht heruntergeladen werden.",
"Failed to favorite files." : "Favorisieren von Dateien fehlgeschlagen",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.",
"Failed to favorite {fileName}." : "{fileName} konnte nicht zu den Favoriten hinzugefügt werden."
},
"nplurals=2; plural=(n != 1);");

124
l10n/de.json vendored
View File

@ -1,16 +1,19 @@
{ "translations": {
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere App zur Verwaltung von Fotos",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nMemories ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, geparst aus Exif-Daten.\n- **⏪ Zurückspulen**: Springe sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erlebe deine Erinnerungen erneut.\n- **🤖 KI-Tagging**: Gruppiere Fotos nach Personen und Objekten mithilfe von KI, unterstützt von der App [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstelle Alben, um Fotos und Videos zu gruppieren. Dann teile diese Alben mit anderen.\n- **📁 Ordner**: Durchsuche deine eigenen und freigegebenen Ordner mit einer ähnlichen, effizienten Zeitleiste.\n- **🎦 Diashow**: Zeige ganz einfach Fotos aus deinerr Chronik und deinen Ordnern an.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeite Exif-Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichere Fotos, die du nicht in deiner Chronik sehen möchtest, in einem separaten Ordner.\n- **📹 Videotranskodierung**: Memories transkodiert Videos und verwendet HLS für maximale Leistung.\n- **📷 RAW-Unterstützung**: Zeige RAW-Fotos von deiner Kamera mit der App [Camera RAW Previews](https://apps.nextcloud.com/apps/camerarawpreviews) an.\n- **⚡️ Schnell**: Memories ist extrem schnell. Zeitraum.\n\nUm eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehe dir die [öffentliche Demo](https://memories-demo.radialapps.com/apps/memories/) an. Beachte, dass die Demo schreibgeschützt ist und möglicherweise langsam ist, da sie in einer von [Oracle Cloud] (https://www.oracle.com/cloud/free/) bereitgestellten Low-End-VM mit kostenlosem Kontingent ausgeführt wird. Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise findest du in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installiere die App aus dem Nextcloud App Store\n1. Führe `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffne die App 📷 Erinnerungen in Nextcloud und lege das Verzeichnis mit deinen Fotos fest. Fotos aus diesem Verzeichnis werden in der Zeitleiste angezeigt, einschließlich aller Fotos in verschachtelten Unterverzeichnissen.\n1. Die Installation des [Vorschaugenerators](https://github.com/rullzer/previewgenerator) zum Vorgenerieren von Miniaturansichten wird dringend empfohlen.",
"Settings" : "Einstellungen",
"Timeline" : "Verlauf",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"Settings" : "Einstellungen",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet dich",
"Choose the root folder of your timeline to begin" : "Wähle das Wurzelverzeichnis deiner Zeitleiste, um zu beginnen",
"If you just installed Memories, run:" : "Wenn du Memorys gerade installiert hast, führe Folgendes aus:",
@ -20,10 +23,20 @@
"You can always change this later in settings" : "Du kannst das auch noch später in den Einstellungen ändern.",
"Choose the root of your timeline" : "Wähle den Start deiner Zeitleiste aus",
"The selected folder does not seem to be valid. Try again." : "Der ausgewählte Ordner scheint ungültig zu sein. Versuche es nochmal.",
"Found {total} photos in {path}" : "{total} Fotos gefunden in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
"Remove from album" : "Aus dem Album entfernen",
"Download" : "Herunterladen",
"Favorite" : "Favorit",
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"View in folder" : "In Ordner anzeigen",
@ -33,6 +46,7 @@
"You are about to download a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien herunterzuladen. Bist du dir sicher?",
"You are about to delete a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien zu löschen. Bist du dir sicher?",
"You are about to touch a large number of files. Are you sure?" : "Du bist dabei, eine große Anzahl von Dateien zu ändern. Bist du dir sicher?",
"Could not remove photos from album" : "Fotos konnten nicht aus dem Album entfernt werden",
"_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitlachse",
"Folders Path" : "Ordnerpfad",
@ -41,8 +55,12 @@
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Video sharing not supported yet" : "Teilen von Videos wird bislang nicht unterstützt",
"Cannot share this type of data" : "Diese Art von Daten kann nicht geteilt werden",
"Processing … {n}/{m}" : "Verarbeite … {n}/{m}",
"{n} photos added to album" : "{n} Fotos zum Album hinzugefügt",
"Search for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Nach Benutzer oder Gruppen suchen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -61,6 +79,8 @@
"New album" : "Neues Album",
"Create new album" : "Neues Album erstellen",
"Edit album details" : "Albumdetails bearbeiten",
"Could not load the selected album" : "Gewähltes Album konnte nicht geladen werden",
"Remove Album" : "Album entfernen",
"Failed to delete {name}." : "{name} konnte nicht gelöscht werden.",
"Name of the album" : "Name des Albums",
"Location of the album" : "Ort des Albums",
@ -73,7 +93,10 @@
"Create album" : "Album erstellen",
"Add selection to album {albumName}" : "Auswahl zum Album {albumName} hinzufügen",
"Create a new album." : "Ein neues Album erstellen",
"_Share with %n user_::_Share with %n users_" : ["Mit %n Benutzer teilen","Mit %n Benutzern telken"],
"_%n item_::_%n items_" : ["%n Element","%n Elemente"],
"Save collaborators for this album." : "Mitbearbeitende für dieses Album speichern.",
"Share Album" : "Album teilen",
"Year" : "Jahr",
"Month" : "Monat",
"Day" : "Tag",
@ -87,31 +110,126 @@
"Exercise caution and make sure you have backups." : "Sei vorsichtig und stelle sicher, dass du Backups hast.",
"Loading data … {n}/{m}" : "Lade … {n}/{m}",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
"Rename person" : "Person umbenennen",
"Update" : "Aktualisieren",
"Failed to rename {oldName} to {name}." : "{oldName} konnte nicht in {name} umbenannt werden.",
"Loading …" : "Lade …",
"Merge {name} with person" : "{name} mit Person zusammenführen",
"Are you sure you want to merge {name} with {newName}?" : "Bist du sicher, dass du {name} mit {newName} zusammenführen möchtest?",
"Too many failures, aborting" : "Zu viele Fehler, Abbruch",
"Error while moving {basename}" : "Fehler beim Verschieben von {basename}",
"Failed to move {name}." : "{name} konnte nicht verschoben werden.",
"Move selected photos to person" : "Ausgewählte Fotos zu einer Person verschieben",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Möchtest du die ausgewählten Fotos wirklich von {name} nach {newName} verschieben?",
"Share Folder" : "Ordner teilen",
"You cannot share the root folder" : "Du kannst den Wurzelordner nicht teilen",
"Use the sidebar to share this folder." : "Verwende die Seitenleiste, um diesen Ordner zu teilen.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Wenn du eine öffentliche Linkfreigabe erstellst, klicke auf Aktualisieren und ein entsprechender Link zu Memories wird unten angezeigt.",
"Refresh" : "Aktualisieren",
"Share album" : "Album teilen",
"Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben",
"Move right" : "Nach rechts verschieben",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
"Are you sure you want to continue?" : "Bist du dir sicher, dass du fortsetzen möchtest?",
"Continue" : "Fortsetzen",
"Undo" : "Rückgängig",
"Redo" : "Wiederherstellen",
"Show original image" : "Originalbild anzeigen",
"Zoom in" : "Hinein zoomen",
"Zoom out" : "Hinauszoomen",
"Toggle zoom menu" : "Zoom-Menü umschalten",
"Adjust" : "Anpassen",
"Fine-tune" : "Feinabstimmung",
"Filters" : "Filter",
"Watermark" : "Wasserzeichen",
"Draw" : "Zeichnen",
"Resize" : "Größe ändern",
"Invalid image." : "Ungültiges Bild",
"Error while uploading the image." : "Fehler beim Hochladen des Bildes.",
"are not images" : "Sind keine Bilder",
"is not an image" : "Ist kein Bild",
"to be uploaded" : "zum Hochladen",
"Crop" : "Zuschneiden",
"Original" : "Original",
"Custom" : "Benutzerdefiniert",
"Square" : "Quadrat",
"Landscape" : "Landschaft",
"Portrait" : "Porträt",
"Ellipse" : "Ellipse",
"Classic TV" : "Klassisches Fernsehen",
"CinemaScope" : "CinemaScope",
"Arrow" : "Pfeil",
"Blur" : "Verwischen",
"Brightness" : "Helligkeit",
"Contrast" : "Kontrast",
"Un-flip X" : "Spiegeln X rückgängig",
"Flip X" : "Spiegeln X",
"Un-flip Y" : "Spiegeln Y rückgängig",
"Flip Y" : "Spiegeln Y",
"HSV" : "HSV",
"Hue" : "Farbton",
"Saturation" : "Sättigung",
"Value" : "Wert",
"Image" : "Bild",
"Importing …" : "Importiere …",
"+ Add image" : "+ Bild hinzufügen",
"Line" : "Linie",
"Pen" : "Stift",
"Polygon" : "Polygon",
"Sides" : "Seiten",
"Rectangle" : "Rechteck",
"Corner Radius" : "Eckenradius",
"Width in pixels" : "Breite in Pixel",
"Height in pixels" : "Höhe in Pixel",
"Toggle ratio lock" : "Verhältnis-Sperre umschalten",
"Reset to original image size" : "Auf ursprüngliche Bildgröße zurücksetzen",
"Rotate" : "Rotieren",
"Text" : "Text",
"Text spacing" : "Textabstand",
"Text alignment" : "Textausrichtung",
"Font family" : "Schriftenfamilie",
"Size" : "Größe",
"Letter spacing" : "Buchstaben-Abstand",
"Line height" : "Zeilenhöhe",
"Warmth" : "Wärme",
"+ Add watermark" : "+ Wasserzeichen hinzufügen",
"Choose watermark type" : "Typ des Wasserzeichens auswählen",
"Upload watermark" : "Wasserzeichenhochladen",
"Add as text" : "AlsTexthinzufügen",
"Padding" : "Auffüllen",
"Shadow" : "Schatten",
"Horizontal" : "Horizontal",
"Vertical" : "Vertikal",
"Opacity" : "Deckkraft",
"Position" : "Position",
"Stroke" : "Strich",
"Save image as" : "Bild speichern unter",
"Extension" : "Erweiterung",
"Name is required." : "Name ist erforderlich.",
"Quality" : "Qualität",
"Saved image size (width x height)" : "Gespeicherte Bildgröße (Breite x Höhe)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Beachte, dass der ausgewählte Zuschneidebereich kleiner ist als die angewendete Größenänderung, was zu Qualitätseinbußen führen kann.",
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "{currentAlbumName} konnte nicht in {newAlbumName} umbenannt werden.",
"General Failure" : "Allgemeiner Fehler",
"Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.",
"Failed to download some files." : "Einige Dateien konnten nicht heruntergeladen werden.",
"Failed to favorite files." : "Favorisieren von Dateien fehlgeschlagen",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.",
"Failed to favorite {fileName}." : "{fileName} konnte nicht zu den Favoriten hinzugefügt werden."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

107
l10n/de_DE.js vendored
View File

@ -3,7 +3,8 @@ OC.L10N.register(
{
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nErinnerungen (Memories) ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, ausgelesen aus Exif-Daten.\n- **⏪ Zurückspulen**: Springen Sie sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erleben Sie Ihre Erinnerungen erneut.\n- **🤖 KI-Markierung**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von KI, unterstützt von [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstellen Sie Alben, um Fotos und Videos zu gruppieren. Dann teilen Sie diese Alben mit anderen.\n- **🫱🏻‍🫲🏻 Externes Teilen**: Teilen Sie Fotos und Videos mit Personen außerhalb Ihrer Nextcloud-Instanz.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeiten Sie Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichern Sie Fotos, die Sie nicht in Ihrer Chronik sehen möchten, in einem separaten Ordner.\n- **⚡️ Leistung**: Memories ist extrem schnell.\n\n## 🌐 Online-Demo\n\n- Um eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehen Sie sich die [öffentliche Demo] (https://memories-demo.radialapps.com/apps/memories/) an.\n- Die Demo ist schreibgeschützt und kann langsam sein (kostenlose Kontingent-VM von [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise finden Sie in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installieren Sie die App aus dem Nextcloud App Store.\n1. Führen Sie die empfohlenen [Konfigurationsschritte] durch (https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Führen Sie `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffnen Sie die App 📷 Erinnerungen in Nextcloud und legen Sie das Verzeichnis mit Ihren Fotos fest.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nMemories ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, geparst aus Exif-Daten.\n- **⏪ Zurückspulen**: Springe sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erlebe deine Erinnerungen erneut.\n- **🤖 KI-Tagging**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von KI, unterstützt von der App [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstellen Sie Alben, um Fotos und Videos zu gruppieren. Dann teilen Sie diese Alben mit anderen.\n- **📁 Ordner**: Durchsuchen Sie Ihre eigenen und freigegebenen Ordner mit einer ähnlichen, effizienten Zeitleiste.\n- **🎦 Diashow**: Zeigen Sie ganz einfach Fotos aus Ihrer Chronik und Ihren Ordnern an.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeiten Sie Exif-Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichern Sie Fotos, die Sie nicht in Ihrer Chronik sehen möchten, in einem separaten Ordner.\n- **📹 Videotranskodierung**: Memories transkodiert Videos und verwendet HLS für maximale Leistung.\n- **📷 RAW-Unterstützung**: Zeigen Sie RAW-Fotos von Ihrer Kamera mit der App [Camera RAW Previews](https://apps.nextcloud.com/apps/camerarawpreviews) an.\n- **⚡️ Schnell**: Memories ist extrem schnell. Zeitraum.\n\nUm eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehen Sie sich die [öffentliche Demo](https://memories-demo.radialapps.com/apps/memories/) an. Beachten Sie, dass die Demo schreibgeschützt ist und möglicherweise langsam ist, da sie in einer von [Oracle Cloud] (https://www.oracle.com/cloud/free/) bereitgestellten Low-End-VM mit kostenlosem Kontingent ausgeführt wird. Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise finden Sie in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installieren Sie die App aus dem Nextcloud App Store\n1. Führen Sie `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffnen Sie die App 📷 Erinnerungen in Nextcloud und legen Sie das Verzeichnis mit Ihren Fotos fest. Fotos aus diesem Verzeichnis werden in der Zeitleiste angezeigt, einschließlich aller Fotos in verschachtelten Unterverzeichnissen.\n1. Die Installation des [Vorschaugenerators](https://github.com/rullzer/previewgenerator) zum Vorgenerieren von Miniaturansichten wird dringend empfohlen.",
"Settings" : "Einstellungen",
"Timeline" : "Zeitleiste",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
@ -14,7 +15,7 @@ OC.L10N.register(
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"Settings" : "Einstellungen",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet Sie",
"Choose the root folder of your timeline to begin" : "Wählen Sie das Wurzelverzeichnis Ihrer Zeitleiste um zu beginnen",
"If you just installed Memories, run:" : "Wenn Sie Memorys gerade installiert haben, führen Sie Folgendes aus:",
@ -25,6 +26,14 @@ OC.L10N.register(
"Choose the root of your timeline" : "Start Ihrer Zeitleiste auswählen",
"The selected folder does not seem to be valid. Try again." : "Der ausgewählte Ordner scheint ungültig zu sein. Versuchen Sie es nochmal.",
"Found {total} photos in {path}" : "{total} Fotos gefunden in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
"Remove from album" : "Aus dem Album entfernen",
@ -45,10 +54,14 @@ OC.L10N.register(
"Folders Path" : "Ordnerpfad",
"Show hidden folders" : "Zeige versteckte Ordner",
"Square grid mode" : "Quadratischer Gittermodus",
"Choose Timeline Paths" : "Pfade der Zeitleiste auswählen",
"Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Ihre Zeitleiste",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Video sharing not supported yet" : "Teilen von Videos wird bislang nicht unterstützt",
"Cannot share this type of data" : "Diese Art von Daten kann nicht geteilt werden",
"Processing … {n}/{m}" : "Verarbeite… {n}/{m}",
"{n} photos added to album" : "{n} Fotos zum Album hinzugefügt",
"Search for collaborators" : "Suche nach Mitbearbeitenden",
@ -105,7 +118,6 @@ OC.L10N.register(
"Rename person" : "Person umbenennen",
"Update" : "Aktualisieren",
"Failed to rename {oldName} to {name}." : "Fehler beim Umbenennen von {oldName} in {name}.",
"Loading …" : "Lade …",
"Merge {name} with person" : "{name} mit Person zusammenführen",
"Are you sure you want to merge {name} with {newName}?" : "Sind Sie sicher, dass Sie {name} mit {newName} zusammenführen möchten?",
"Too many failures, aborting" : "Zu viele Fehler, Abbruch",
@ -118,6 +130,9 @@ OC.L10N.register(
"Use the sidebar to share this folder." : "Verwenden Sie die Seitenleiste, um diesen Ordner zu teilen.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Wenn Sie eine öffentliche Linkfreigabe erstellen, klicken Sie auf Aktualisieren und ein entsprechender Link zu Memories wird unten angezeigt.",
"Refresh" : "Aktualisieren",
"Remove" : "Entfernen",
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen",
"Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen",
@ -125,6 +140,92 @@ OC.L10N.register(
"Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben",
"Move right" : "Nach rechts verschieben",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
"Are you sure you want to continue?" : "Sind Sie sich sicher, dass Sie fortsetzen wollen?",
"Continue" : "Fortsetzen",
"Undo" : "Rückgängig",
"Redo" : "Wiederherstellen",
"Show original image" : "Originalbild anzeigen",
"Zoom in" : "Hineinzoomen",
"Zoom out" : "Hinauszoomen",
"Toggle zoom menu" : "Zoom-Menü umschalten",
"Adjust" : "Anpassen",
"Fine-tune" : "Feinabstimmung",
"Filters" : "Filter",
"Watermark" : "Wasserzeichen",
"Draw" : "Zeichnen",
"Resize" : "Größe ändern",
"Invalid image." : "Ungültiges Bild.",
"Error while uploading the image." : "Fehler beim Hochladen des Bildes.",
"are not images" : "Sind keine Bilder",
"is not an image" : "Ist kein Bild",
"to be uploaded" : "zum Hochladen",
"Crop" : "Zuschneiden",
"Original" : "Original",
"Custom" : "Benutzerdefiniert",
"Square" : "Quadrat",
"Landscape" : "Querformat",
"Portrait" : "Hochformat",
"Ellipse" : "Ellipse",
"Classic TV" : "Klassisches Fernsehen",
"CinemaScope" : "CinemaScope",
"Arrow" : "Pfeil",
"Blur" : "Verwischen",
"Brightness" : "Helligkeit",
"Contrast" : "Kontrast",
"Un-flip X" : "Spiegeln X rückgängig",
"Flip X" : "Spiegeln X",
"Un-flip Y" : "Spiegeln Y rückgängig",
"Flip Y" : "Spiegeln Y",
"HSV" : "HSV",
"Hue" : "Farbton",
"Saturation" : "Sättigung",
"Value" : "Wert",
"Image" : "Bild",
"Importing …" : "Importiere…",
"+ Add image" : "+ Bild hinzufügen",
"Line" : "Linie",
"Pen" : "Stift",
"Polygon" : "Polygon",
"Sides" : "Seiten",
"Rectangle" : "Rechteck",
"Corner Radius" : "Eckenradius",
"Width in pixels" : "Breite in Pixel",
"Height in pixels" : "Höhe in Pixel",
"Toggle ratio lock" : "Verhältnis-Sperre umschalten",
"Reset to original image size" : "Auf ursprüngliche Bildgröße zurücksetzen",
"Rotate" : "Drehen",
"Text" : "Text",
"Text spacing" : "Text-Abstand",
"Text alignment" : "Textausrichtung",
"Font family" : "Schriftenfamilie",
"Size" : "Größe",
"Letter spacing" : "Buchstaben-Abstand",
"Line height" : "Zeilenhöhe",
"Warmth" : "Wärme",
"+ Add watermark" : "+ Wasserzeichen hinzufügen",
"Choose watermark type" : "Wasserzeichentyp auswählen",
"Upload watermark" : "Wasserzeichen hochladen",
"Add as text" : "Als Text hinzufügen",
"Padding" : "Auffüllen",
"Shadow" : "Schatten",
"Horizontal" : "Horizontal",
"Vertical" : "Vertikal",
"Opacity" : "Deckkraft",
"Position" : "Position",
"Stroke" : " Strich",
"Save image as" : "Bild speichern als",
"Extension" : "Erweiterung",
"Name is required." : "Name ist erforderlich.",
"Quality" : "Qualität",
"Saved image size (width x height)" : "Gespeicherte Bildgröße (Breite x Höhe)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Beachten Sie, dass der ausgewählte Zuschneidebereich kleiner ist als die angewendete Größenänderung, was zu Qualitätseinbußen führen kann",
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "{currentAlbumName} konnte nicht in {newAlbumName} umbenannt werden.",

107
l10n/de_DE.json vendored
View File

@ -1,7 +1,8 @@
{ "translations": {
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nErinnerungen (Memories) ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, ausgelesen aus Exif-Daten.\n- **⏪ Zurückspulen**: Springen Sie sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erleben Sie Ihre Erinnerungen erneut.\n- **🤖 KI-Markierung**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von KI, unterstützt von [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstellen Sie Alben, um Fotos und Videos zu gruppieren. Dann teilen Sie diese Alben mit anderen.\n- **🫱🏻‍🫲🏻 Externes Teilen**: Teilen Sie Fotos und Videos mit Personen außerhalb Ihrer Nextcloud-Instanz.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeiten Sie Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichern Sie Fotos, die Sie nicht in Ihrer Chronik sehen möchten, in einem separaten Ordner.\n- **⚡️ Leistung**: Memories ist extrem schnell.\n\n## 🌐 Online-Demo\n\n- Um eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehen Sie sich die [öffentliche Demo] (https://memories-demo.radialapps.com/apps/memories/) an.\n- Die Demo ist schreibgeschützt und kann langsam sein (kostenlose Kontingent-VM von [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise finden Sie in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installieren Sie die App aus dem Nextcloud App Store.\n1. Führen Sie die empfohlenen [Konfigurationsschritte] durch (https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Führen Sie `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffnen Sie die App 📷 Erinnerungen in Nextcloud und legen Sie das Verzeichnis mit Ihren Fotos fest.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Erinnerungen\n\nMemories ist eine Fotoverwaltungs-App für Nextcloud mit erweiterten Funktionen, darunter:\n\n- **📸 Zeitleiste**: Fotos und Videos nach Aufnahmedatum sortieren, geparst aus Exif-Daten.\n- **⏪ Zurückspulen**: Springe sofort zu einem beliebigen Zeitpunkt in der Vergangenheit und erlebe deine Erinnerungen erneut.\n- **🤖 KI-Tagging**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von KI, unterstützt von der App [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Alben**: Erstellen Sie Alben, um Fotos und Videos zu gruppieren. Dann teilen Sie diese Alben mit anderen.\n- **📁 Ordner**: Durchsuchen Sie Ihre eigenen und freigegebenen Ordner mit einer ähnlichen, effizienten Zeitleiste.\n- **🎦 Diashow**: Zeigen Sie ganz einfach Fotos aus Ihrer Chronik und Ihren Ordnern an.\n- **📱 Mobiler Support**: Funktioniert auf Geräten jeder Form und Größe über die Web-App.\n- **✏️ Metadaten bearbeiten**: Bearbeiten Sie Exif-Daten auf Fotos schnell und einfach.\n- **📦 Archiv**: Speichern Sie Fotos, die Sie nicht in Ihrer Chronik sehen möchten, in einem separaten Ordner.\n- **📹 Videotranskodierung**: Memories transkodiert Videos und verwendet HLS für maximale Leistung.\n- **📷 RAW-Unterstützung**: Zeigen Sie RAW-Fotos von Ihrer Kamera mit der App [Camera RAW Previews](https://apps.nextcloud.com/apps/camerarawpreviews) an.\n- **⚡️ Schnell**: Memories ist extrem schnell. Zeitraum.\n\nUm eine Vorstellung davon zu bekommen, wie Erinnerungen aussehen und sich anfühlen, sehen Sie sich die [öffentliche Demo](https://memories-demo.radialapps.com/apps/memories/) an. Beachten Sie, dass die Demo schreibgeschützt ist und möglicherweise langsam ist, da sie in einer von [Oracle Cloud] (https://www.oracle.com/cloud/free/) bereitgestellten Low-End-VM mit kostenlosem Kontingent ausgeführt wird. Fotonachweise gehen zu [Unsplash](https://unsplash.com/) (Einzelnachweise finden Sie in jedem Ordner).\n\n## 🚀 Installation\n\n1. Installieren Sie die App aus dem Nextcloud App Store\n1. Führen Sie `php ./occ memory:index` aus, um Metadaten-Indizes für vorhandene Fotos zu generieren.\n1. Öffnen Sie die App 📷 Erinnerungen in Nextcloud und legen Sie das Verzeichnis mit Ihren Fotos fest. Fotos aus diesem Verzeichnis werden in der Zeitleiste angezeigt, einschließlich aller Fotos in verschachtelten Unterverzeichnissen.\n1. Die Installation des [Vorschaugenerators](https://github.com/rullzer/previewgenerator) zum Vorgenerieren von Miniaturansichten wird dringend empfohlen.",
"Settings" : "Einstellungen",
"Timeline" : "Zeitleiste",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
@ -12,7 +13,7 @@
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"Settings" : "Einstellungen",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet Sie",
"Choose the root folder of your timeline to begin" : "Wählen Sie das Wurzelverzeichnis Ihrer Zeitleiste um zu beginnen",
"If you just installed Memories, run:" : "Wenn Sie Memorys gerade installiert haben, führen Sie Folgendes aus:",
@ -23,6 +24,14 @@
"Choose the root of your timeline" : "Start Ihrer Zeitleiste auswählen",
"The selected folder does not seem to be valid. Try again." : "Der ausgewählte Ordner scheint ungültig zu sein. Versuchen Sie es nochmal.",
"Found {total} photos in {path}" : "{total} Fotos gefunden in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
"Remove from album" : "Aus dem Album entfernen",
@ -43,10 +52,14 @@
"Folders Path" : "Ordnerpfad",
"Show hidden folders" : "Zeige versteckte Ordner",
"Square grid mode" : "Quadratischer Gittermodus",
"Choose Timeline Paths" : "Pfade der Zeitleiste auswählen",
"Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Ihre Zeitleiste",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Video sharing not supported yet" : "Teilen von Videos wird bislang nicht unterstützt",
"Cannot share this type of data" : "Diese Art von Daten kann nicht geteilt werden",
"Processing … {n}/{m}" : "Verarbeite… {n}/{m}",
"{n} photos added to album" : "{n} Fotos zum Album hinzugefügt",
"Search for collaborators" : "Suche nach Mitbearbeitenden",
@ -103,7 +116,6 @@
"Rename person" : "Person umbenennen",
"Update" : "Aktualisieren",
"Failed to rename {oldName} to {name}." : "Fehler beim Umbenennen von {oldName} in {name}.",
"Loading …" : "Lade …",
"Merge {name} with person" : "{name} mit Person zusammenführen",
"Are you sure you want to merge {name} with {newName}?" : "Sind Sie sicher, dass Sie {name} mit {newName} zusammenführen möchten?",
"Too many failures, aborting" : "Zu viele Fehler, Abbruch",
@ -116,6 +128,9 @@
"Use the sidebar to share this folder." : "Verwenden Sie die Seitenleiste, um diesen Ordner zu teilen.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Wenn Sie eine öffentliche Linkfreigabe erstellen, klicken Sie auf Aktualisieren und ein entsprechender Link zu Memories wird unten angezeigt.",
"Refresh" : "Aktualisieren",
"Remove" : "Entfernen",
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen",
"Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen",
@ -123,6 +138,92 @@
"Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben",
"Move right" : "Nach rechts verschieben",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
"Are you sure you want to continue?" : "Sind Sie sich sicher, dass Sie fortsetzen wollen?",
"Continue" : "Fortsetzen",
"Undo" : "Rückgängig",
"Redo" : "Wiederherstellen",
"Show original image" : "Originalbild anzeigen",
"Zoom in" : "Hineinzoomen",
"Zoom out" : "Hinauszoomen",
"Toggle zoom menu" : "Zoom-Menü umschalten",
"Adjust" : "Anpassen",
"Fine-tune" : "Feinabstimmung",
"Filters" : "Filter",
"Watermark" : "Wasserzeichen",
"Draw" : "Zeichnen",
"Resize" : "Größe ändern",
"Invalid image." : "Ungültiges Bild.",
"Error while uploading the image." : "Fehler beim Hochladen des Bildes.",
"are not images" : "Sind keine Bilder",
"is not an image" : "Ist kein Bild",
"to be uploaded" : "zum Hochladen",
"Crop" : "Zuschneiden",
"Original" : "Original",
"Custom" : "Benutzerdefiniert",
"Square" : "Quadrat",
"Landscape" : "Querformat",
"Portrait" : "Hochformat",
"Ellipse" : "Ellipse",
"Classic TV" : "Klassisches Fernsehen",
"CinemaScope" : "CinemaScope",
"Arrow" : "Pfeil",
"Blur" : "Verwischen",
"Brightness" : "Helligkeit",
"Contrast" : "Kontrast",
"Un-flip X" : "Spiegeln X rückgängig",
"Flip X" : "Spiegeln X",
"Un-flip Y" : "Spiegeln Y rückgängig",
"Flip Y" : "Spiegeln Y",
"HSV" : "HSV",
"Hue" : "Farbton",
"Saturation" : "Sättigung",
"Value" : "Wert",
"Image" : "Bild",
"Importing …" : "Importiere…",
"+ Add image" : "+ Bild hinzufügen",
"Line" : "Linie",
"Pen" : "Stift",
"Polygon" : "Polygon",
"Sides" : "Seiten",
"Rectangle" : "Rechteck",
"Corner Radius" : "Eckenradius",
"Width in pixels" : "Breite in Pixel",
"Height in pixels" : "Höhe in Pixel",
"Toggle ratio lock" : "Verhältnis-Sperre umschalten",
"Reset to original image size" : "Auf ursprüngliche Bildgröße zurücksetzen",
"Rotate" : "Drehen",
"Text" : "Text",
"Text spacing" : "Text-Abstand",
"Text alignment" : "Textausrichtung",
"Font family" : "Schriftenfamilie",
"Size" : "Größe",
"Letter spacing" : "Buchstaben-Abstand",
"Line height" : "Zeilenhöhe",
"Warmth" : "Wärme",
"+ Add watermark" : "+ Wasserzeichen hinzufügen",
"Choose watermark type" : "Wasserzeichentyp auswählen",
"Upload watermark" : "Wasserzeichen hochladen",
"Add as text" : "Als Text hinzufügen",
"Padding" : "Auffüllen",
"Shadow" : "Schatten",
"Horizontal" : "Horizontal",
"Vertical" : "Vertikal",
"Opacity" : "Deckkraft",
"Position" : "Position",
"Stroke" : " Strich",
"Save image as" : "Bild speichern als",
"Extension" : "Erweiterung",
"Name is required." : "Name ist erforderlich.",
"Quality" : "Qualität",
"Saved image size (width x height)" : "Gespeicherte Bildgröße (Breite x Höhe)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Beachten Sie, dass der ausgewählte Zuschneidebereich kleiner ist als die angewendete Größenänderung, was zu Qualitätseinbußen führen kann",
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "{currentAlbumName} konnte nicht in {newAlbumName} umbenannt werden.",

26
l10n/el.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ρυθμίσεις",
"Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα",
@ -11,13 +12,16 @@ OC.L10N.register(
"On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες",
"Maps" : "Χάρτες",
"Settings" : "Ρυθμίσεις",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση",
"Delete" : "Διαγραφή",
"Download" : "Λήψη",
"Favorite" : "Αγαπημένο",
"Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο",
"Share" : "Διαμοιρασμός",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος",
"Back" : "Πίσω",
@ -30,8 +34,24 @@ OC.L10N.register(
"Minute" : "Λεπτά",
"Name" : "Όνομα",
"Update" : "Ενημέρωση",
"Loading …" : "Φόρτωση …",
"Refresh" : "Ανανέωση",
"Share folder" : "Διαμοιρασμός φακέλου"
"Remove" : "Αφαίρεση",
"Share folder" : "Διαμοιρασμός φακέλου",
"Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας",
"Redo" : "Ξανακάντε",
"Zoom in" : "Εστίαση",
"Original" : "Πρωτότυπο",
"Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή",
"Image" : "Εικόνα",
"Text" : "Κείμενο",
"Size" : "Μέγεθος",
"Position" : "Θέση",
"Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα",
"Auto" : "Αυτόματα"
},
"nplurals=2; plural=(n != 1);");

26
l10n/el.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Ρυθμίσεις",
"Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα",
@ -9,13 +10,16 @@
"On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες",
"Maps" : "Χάρτες",
"Settings" : "Ρυθμίσεις",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση",
"Delete" : "Διαγραφή",
"Download" : "Λήψη",
"Favorite" : "Αγαπημένο",
"Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο",
"Share" : "Διαμοιρασμός",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος",
"Back" : "Πίσω",
@ -28,8 +32,24 @@
"Minute" : "Λεπτά",
"Name" : "Όνομα",
"Update" : "Ενημέρωση",
"Loading …" : "Φόρτωση …",
"Refresh" : "Ανανέωση",
"Share folder" : "Διαμοιρασμός φακέλου"
"Remove" : "Αφαίρεση",
"Share folder" : "Διαμοιρασμός φακέλου",
"Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας",
"Redo" : "Ξανακάντε",
"Zoom in" : "Εστίαση",
"Original" : "Πρωτότυπο",
"Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή",
"Image" : "Εικόνα",
"Text" : "Κείμενο",
"Size" : "Μέγεθος",
"Position" : "Θέση",
"Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα",
"Auto" : "Αυτόματα"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

20
l10n/en_GB.js vendored
View File

@ -1,19 +1,23 @@
OC.L10N.register(
"memories",
{
"Settings" : "Settings",
"Folders" : "Folders",
"Favorites" : "Favourites",
"Videos" : "Videos",
"Archive" : "Archive",
"Tags" : "Tags",
"Maps" : "Maps",
"Settings" : "Settings",
"Unsaved changes" : "Unsaved changes",
"Edit" : "Edit",
"Loading …" : "Loading …",
"Cancel" : "Cancel",
"Delete" : "Delete",
"Download" : "Download",
"Favorite" : "Favourite",
"Unarchive" : "Unarchive",
"View in folder" : "View in folder",
"Share" : "Share",
"Public link" : "Public link",
"Back" : "Back",
"Save" : "Save",
@ -23,7 +27,17 @@ OC.L10N.register(
"Hour" : "Hour",
"Name" : "Surname",
"Update" : "Update",
"Loading …" : "Loading …",
"Refresh" : "Refresh"
"Refresh" : "Refresh",
"Remove" : "Remove",
"Reset" : "Reset",
"Continue" : "Continue",
"Undo" : "Undo",
"Original" : "Original",
"Custom" : "Custom",
"Value" : "Value",
"Image" : "Image",
"Text" : "Text",
"Size" : "Size",
"Position" : "Position"
},
"nplurals=2; plural=(n != 1);");

20
l10n/en_GB.json vendored
View File

@ -1,17 +1,21 @@
{ "translations": {
"Settings" : "Settings",
"Folders" : "Folders",
"Favorites" : "Favourites",
"Videos" : "Videos",
"Archive" : "Archive",
"Tags" : "Tags",
"Maps" : "Maps",
"Settings" : "Settings",
"Unsaved changes" : "Unsaved changes",
"Edit" : "Edit",
"Loading …" : "Loading …",
"Cancel" : "Cancel",
"Delete" : "Delete",
"Download" : "Download",
"Favorite" : "Favourite",
"Unarchive" : "Unarchive",
"View in folder" : "View in folder",
"Share" : "Share",
"Public link" : "Public link",
"Back" : "Back",
"Save" : "Save",
@ -21,7 +25,17 @@
"Hour" : "Hour",
"Name" : "Surname",
"Update" : "Update",
"Loading …" : "Loading …",
"Refresh" : "Refresh"
"Refresh" : "Refresh",
"Remove" : "Remove",
"Reset" : "Reset",
"Continue" : "Continue",
"Undo" : "Undo",
"Original" : "Original",
"Custom" : "Custom",
"Value" : "Value",
"Image" : "Image",
"Text" : "Text",
"Size" : "Size",
"Position" : "Position"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

20
l10n/eo.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Agordoj",
"Timeline" : "Kronologio",
"Folders" : "Dosierujoj",
"Favorites" : "Plej ŝatataj",
@ -8,12 +9,15 @@ OC.L10N.register(
"Archive" : "Arĥivujo",
"Tags" : "Etikedoj",
"Maps" : "Mapoj",
"Settings" : "Agordoj",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Edit" : "Modifi",
"Loading …" : "Ŝargas …",
"Cancel" : "Nuligi",
"Delete" : "Forigi",
"Download" : "Elŝuti",
"Favorite" : "Pliŝatati",
"View in folder" : "Vidi en dosierujo",
"Share" : "Kunhavigi",
"Public link" : "Publika ligilo",
"Back" : "Antaŭen",
"Save" : "Konservi",
@ -23,7 +27,17 @@ OC.L10N.register(
"Hour" : "Horo",
"Name" : "Nomo",
"Update" : "Ĝisdatigi",
"Loading …" : "Ŝargas …",
"Refresh" : "Aktualigi"
"Refresh" : "Aktualigi",
"Remove" : "Forigi",
"Reset" : "Restarigi",
"Continue" : "Daŭrigi",
"Undo" : "Malfari",
"Redo" : "Refari",
"Custom" : "Propra",
"Text" : "Teksto",
"Size" : "Grando",
"Position" : "Loko",
"Extension" : "Dosiersufikso",
"Auto" : "Aŭtomate"
},
"nplurals=2; plural=(n != 1);");

20
l10n/eo.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Agordoj",
"Timeline" : "Kronologio",
"Folders" : "Dosierujoj",
"Favorites" : "Plej ŝatataj",
@ -6,12 +7,15 @@
"Archive" : "Arĥivujo",
"Tags" : "Etikedoj",
"Maps" : "Mapoj",
"Settings" : "Agordoj",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Edit" : "Modifi",
"Loading …" : "Ŝargas …",
"Cancel" : "Nuligi",
"Delete" : "Forigi",
"Download" : "Elŝuti",
"Favorite" : "Pliŝatati",
"View in folder" : "Vidi en dosierujo",
"Share" : "Kunhavigi",
"Public link" : "Publika ligilo",
"Back" : "Antaŭen",
"Save" : "Konservi",
@ -21,7 +25,17 @@
"Hour" : "Horo",
"Name" : "Nomo",
"Update" : "Ĝisdatigi",
"Loading …" : "Ŝargas …",
"Refresh" : "Aktualigi"
"Refresh" : "Aktualigi",
"Remove" : "Forigi",
"Reset" : "Restarigi",
"Continue" : "Daŭrigi",
"Undo" : "Malfari",
"Redo" : "Refari",
"Custom" : "Propra",
"Text" : "Teksto",
"Size" : "Grando",
"Position" : "Loko",
"Extension" : "Dosiersufikso",
"Auto" : "Aŭtomate"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

107
l10n/es.js vendored
View File

@ -3,7 +3,8 @@ OC.L10N.register(
{
"Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Memories\n\nMemories es una aplicación de gestión de fotos para Nextcloud con algunas características avanzadas, incluyendo:\n\n- **📸 Línea de tiempo**: Organice fotos y videos por fecha, analizadas desde los datos Exif.\n- **⏪ Rebobinar**: Navegue a cualquier momento del pasado instantáneamente y reviva sus memorias.\n- **🤖 Etiquetado IA**: Agrupe fotos por persona y objetos utilizando IA, aprovechando las capacidades de la aplicación [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Álbumes**: Cree álbumes para agrupar fotos y videos en conjunto. Podrá entonces compartir estos álbumes con otros.\n **🫱🏻‍🫲🏻 Compartir externamente**: Comparta fotos y videos con personas fuera de su instancia Nextcloud.\n-- **📱 Soporte a Móviles**: Funciona con dispositivos de cualquier tamaño y forma a través de la aplicación web.\n- **✏️ Editar Metadatos**: Edite las fechas Exif en las fotos de forma rápida y sencilla.\n- **📦 Archivar**: Almacene las fotos que no quiere ver en su línea de tiempo en una carpeta separada.\n- **⚡️ Rápida**: Memories es extremadamente rápida.\n\n## 🌐 Demostración en línea\n\n- Para tener una idea de como se siente y se vé Memories, compruebe la [demostración pública](https://memories-demo.radialapps.com/apps/memories/). \n- Tenga en cuenta que la demostración es de sólo lectura y podría ser lenta (se ejecuta en una VM en la nube de la capa gratuita de [Oracle Cloud](https://www.oracle.com/cloud/free/)). \n- Los créditos de las fotos son para [Unsplash](https://unsplash.com/) (para créditos individuales, refiérase a cada carpeta).\n\n## 🚀 Instalación\n\n1. Instale la aplicación desde la tienda de Nextcloud.\n2. Ejecute los [pasos recomendados de configuración](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n3. Ejecute `php ./occ memories:index` para generar los índices de metadatos para las fotos existentes.\n4. Abra la aplicación 📷 Memories en Nextcloud y especifique la carpeta que contiene sus fotos.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Memories\n\nMemories es una solución con *baterías incluídas* para gestión de fotos en Nextcloud con algunas características avanzadas, incluyendo:\n\n- **📸 Línea de tiempo**: Organice fotos y videos por fecha, analizadas desde los datos Exif.\n- **⏪ Rebobinar**: Navegue a cualquier momento del pasado instantáneamente y reviva sus memorias.\n- **🤖 Etiquetado IA**: Agrupe fotos por persona y objetos utilizando IA, aprovechando las capacidades de la aplicación [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Álbumes**: Cree álbumes para agrupar fotos y videos en conjunto. Podrá entonces compartir estos álbumes con otros.\n **🫱🏻‍🫲🏻 Compartir externamente**: Comparta fotos y videos con personas fuera de su instancia Nextcloud.\n-- **📱 Soporte a Móviles**: Funciona con dispositivos de cualquier tamaño y forma a través de la aplicación web.\n- **✏️ Editar Metadatos**: Edite las fechas en las fotos de forma rápida y sencilla.\n- **📦 Archivar**: Almacene las fotos que no quiere ver en su línea de tiempo en una carpeta separada.\n- **📹 Conversión de video**: Memories convierte entre formatos de video y utiliza HLS para máximo rendimiento.\n- **⚡️ Rápida**: En general, Memories es extremadamente rápida.\n\n## 🌐 Demostración en línea\n\n- Para tener una idea de como se siente y se vé Memories, compruebe la [demostración pública](https://memories-demo.radialapps.com/apps/memories/). \n- Tenga en cuenta que la demostración es de sólo lectura y podría ser lenta (se ejecuta en una VM en la nube de la capa gratuita de [Oracle Cloud](https://www.oracle.com/cloud/free/)). \n- Los créditos de las fotos son para [Unsplash](https://unsplash.com/) (para créditos individuales, refiérase a cada carpeta).\n\n## 🚀 Instalación\n\n1. Instale la aplicación desde la tienda de Nextcloud.\n2. Ejecute los [pasos recomendados de configuración](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n3. Ejecute `php ./occ memories:index` para generar los índices de metadatos para las fotos existentes.\n4. Abra la aplicación 📷 Memories en Nextcloud y especifique la carpeta que contiene sus fotos.",
"Settings" : "Ajustes",
"Timeline" : "Línea de tiempo",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
@ -14,7 +15,7 @@ OC.L10N.register(
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Una mejor experiencia de fotos te espera",
"Choose the root folder of your timeline to begin" : "Escoja la carpeta raíz de su línea de tiempo para comenzar",
"If you just installed Memories, run:" : "Si acaba de instalar Memories, ejecute:",
@ -25,6 +26,14 @@ OC.L10N.register(
"Choose the root of your timeline" : "Seleccione la raíz de su línea de tiempo",
"The selected folder does not seem to be valid. Try again." : "La carpeta seleccionada no parece ser válida. Intente de nuevo.",
"Found {total} photos in {path}" : "Se encontraron {total} fotos en {path}",
"Failed to get Exif data. Metadata may be lost!" : "Fallo al obtener los datos Exif. ¡Podrían haberse perdido los metadatos!",
"No Exif data found! Continue?" : "¡No se encontraron datos Exif!, ¿Continuar?",
"Image saved successfully" : "La imagen se guardó exitósamente",
"Error saving image" : "Error guardando imágen",
"Unsaved changes" : "Cambios sin guardar",
"Drop changes" : "Descartar cambios",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Remove from album" : "Quitar del álbum",
@ -45,10 +54,14 @@ OC.L10N.register(
"Folders Path" : "Ruta a las carpetas",
"Show hidden folders" : "Mostrar carpetas ocultas",
"Square grid mode" : "Modo de rejilla cuadrada",
"Choose Timeline Paths" : "Escoga las rutas a la línea de tiempo",
"Choose the root for the folders view" : "Seleccione la raíz de la vista de carpetas",
"Your Timeline" : "Su línea de tiempo",
"Failed to load some photos" : "Fallo al cargar algunas fotos",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Video sharing not supported yet" : "Compartir videos no es soportado todavía",
"Cannot share this type of data" : "No se puede compartir este tipo de datos",
"Processing … {n}/{m}" : "Procesando ... {n}/{m}",
"{n} photos added to album" : "Se agregaron {n} fotos al álbum",
"Search for collaborators" : "Buscar colaboradores",
@ -105,7 +118,6 @@ OC.L10N.register(
"Rename person" : "Renombrar persona",
"Update" : "Actualizar",
"Failed to rename {oldName} to {name}." : "Fallo al renombrar {oldName} a {name}",
"Loading …" : "Cargando …",
"Merge {name} with person" : "Unir {name} con persona",
"Are you sure you want to merge {name} with {newName}?" : "¿Está seguro de quiere unir {name} con {newName}?",
"Too many failures, aborting" : "Demasiados fallos, abortando",
@ -118,6 +130,9 @@ OC.L10N.register(
"Use the sidebar to share this folder." : "Utilice la barra lateral para compartir esta carpeta.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Si crea un enlace público de compartición, haga click en refrescar y se mostrará abajo el enlace correspondiente a Memories.",
"Refresh" : "Actualizar",
"Remove" : "Quitar",
"Add Path" : "Añadir ruta",
"Add a root to your timeline" : "Añadir una raíz a su línea de tiempo",
"Share album" : "Compartir álbum",
"Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente",
@ -125,6 +140,92 @@ OC.L10N.register(
"Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha",
"Save as" : "Guardar como",
"Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.",
"Are you sure you want to continue?" : "¿Está seguro que desea continuar?",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Redo" : "Rehacer",
"Show original image" : "Mostrar mensaje original",
"Zoom in" : "Acercar",
"Zoom out" : "Alejar",
"Toggle zoom menu" : "Conmutar menú de zoom",
"Adjust" : "Ajustar",
"Fine-tune" : "Entonar",
"Filters" : "Filtros",
"Watermark" : "Marca de agua",
"Draw" : "Dibujar",
"Resize" : "Redimensionar",
"Invalid image." : "Imágen inválida",
"Error while uploading the image." : "Se encontró un error al cargar la imagen.",
"are not images" : "no son imágenes",
"is not an image" : "no es una imágen",
"to be uploaded" : "a cargar",
"Crop" : "Recortar",
"Original" : "Original",
"Custom" : "Personalizado",
"Square" : "Cuadrado",
"Landscape" : "Paisaje",
"Portrait" : "Retrato",
"Ellipse" : "Elipse",
"Classic TV" : "TV clásica",
"CinemaScope" : "CinemaScope",
"Arrow" : "Flecha",
"Blur" : "Difuminar",
"Brightness" : "Brillo",
"Contrast" : "Contraste",
"Un-flip X" : "Revertir voltear X",
"Flip X" : "Voltear X",
"Un-flip Y" : "Revertir voltear Y",
"Flip Y" : "Voltear Y",
"HSV" : "HSV",
"Hue" : "Tone",
"Saturation" : "Saturación",
"Value" : "Valor",
"Image" : "Imagen",
"Importing …" : "Importando ...",
"+ Add image" : "+ Añadir imágen",
"Line" : "Línea",
"Pen" : "Pluma",
"Polygon" : "Polígono",
"Sides" : "Lados",
"Rectangle" : "Rectángulo",
"Corner Radius" : "Radio de esquina",
"Width in pixels" : "Ancho en píxeles",
"Height in pixels" : "Altura en píxeles",
"Toggle ratio lock" : "Conmutar bloqueo de proporción",
"Reset to original image size" : "Reajustar a tamaño original de la imágen",
"Rotate" : "Rotar",
"Text" : "Texto",
"Text spacing" : "Espacio del texto",
"Text alignment" : "Alineación del texto",
"Font family" : "Familia de fuente",
"Size" : "Tamaño",
"Letter spacing" : "Espacio entre letras",
"Line height" : "Altura de línea",
"Warmth" : "Calidez",
"+ Add watermark" : "+ Añadir marca de agua",
"Choose watermark type" : "Seleccione el tipo de marca de agua",
"Upload watermark" : "Cargar marca de agua",
"Add as text" : "Añadir como texto",
"Padding" : "Desplazamiento",
"Shadow" : "Sombra",
"Horizontal" : "Horizontal",
"Vertical" : "Vertical",
"Opacity" : "Opacidad",
"Position" : "Posición",
"Stroke" : "Trazo",
"Save image as" : "Guardar imagen como",
"Extension" : "Extensión",
"Name is required." : "Se requiere Nombre.",
"Quality" : "Calidad",
"Saved image size (width x height)" : "Tamaño de la imagen guardada (anchura x altura)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Tenga en cuenta que el área a recortar es menor al redimensionamiento aplicado lo que puede causar pérdida de calidad",
"Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding",
"Auto" : "Auto",
"Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Fallo al renombrar {currentAlbumName} a {newAlbumName}.",

107
l10n/es.json vendored
View File

@ -1,7 +1,8 @@
{ "translations": {
"Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas",
"# Memories\n\nMemories is a photo management app for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **⚡️ Performance**: Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Memories\n\nMemories es una aplicación de gestión de fotos para Nextcloud con algunas características avanzadas, incluyendo:\n\n- **📸 Línea de tiempo**: Organice fotos y videos por fecha, analizadas desde los datos Exif.\n- **⏪ Rebobinar**: Navegue a cualquier momento del pasado instantáneamente y reviva sus memorias.\n- **🤖 Etiquetado IA**: Agrupe fotos por persona y objetos utilizando IA, aprovechando las capacidades de la aplicación [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Álbumes**: Cree álbumes para agrupar fotos y videos en conjunto. Podrá entonces compartir estos álbumes con otros.\n **🫱🏻‍🫲🏻 Compartir externamente**: Comparta fotos y videos con personas fuera de su instancia Nextcloud.\n-- **📱 Soporte a Móviles**: Funciona con dispositivos de cualquier tamaño y forma a través de la aplicación web.\n- **✏️ Editar Metadatos**: Edite las fechas Exif en las fotos de forma rápida y sencilla.\n- **📦 Archivar**: Almacene las fotos que no quiere ver en su línea de tiempo en una carpeta separada.\n- **⚡️ Rápida**: Memories es extremadamente rápida.\n\n## 🌐 Demostración en línea\n\n- Para tener una idea de como se siente y se vé Memories, compruebe la [demostración pública](https://memories-demo.radialapps.com/apps/memories/). \n- Tenga en cuenta que la demostración es de sólo lectura y podría ser lenta (se ejecuta en una VM en la nube de la capa gratuita de [Oracle Cloud](https://www.oracle.com/cloud/free/)). \n- Los créditos de las fotos son para [Unsplash](https://unsplash.com/) (para créditos individuales, refiérase a cada carpeta).\n\n## 🚀 Instalación\n\n1. Instale la aplicación desde la tienda de Nextcloud.\n2. Ejecute los [pasos recomendados de configuración](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n3. Ejecute `php ./occ memories:index` para generar los índices de metadatos para las fotos existentes.\n4. Abra la aplicación 📷 Memories en Nextcloud y especifique la carpeta que contiene sus fotos.",
"# Memories\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Works on devices of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates on photos quickly and easily.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Memories transcodes videos and uses HLS for maximal performance.\n- **⚡️ Performance**: In general, Memories is extremely fast.\n\n## 🌐 Online Demo\n\n- To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/).\n- The demo is read-only and may be slow (free tier VM from [Oracle Cloud](https://www.oracle.com/cloud/free/)).\n- Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store.\n1. Perform the recommended [configuration steps](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Run `php ./occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos." : "# Memories\n\nMemories es una solución con *baterías incluídas* para gestión de fotos en Nextcloud con algunas características avanzadas, incluyendo:\n\n- **📸 Línea de tiempo**: Organice fotos y videos por fecha, analizadas desde los datos Exif.\n- **⏪ Rebobinar**: Navegue a cualquier momento del pasado instantáneamente y reviva sus memorias.\n- **🤖 Etiquetado IA**: Agrupe fotos por persona y objetos utilizando IA, aprovechando las capacidades de la aplicación [recognize](https://github.com/nextcloud/recognize).\n- **🖼️ Álbumes**: Cree álbumes para agrupar fotos y videos en conjunto. Podrá entonces compartir estos álbumes con otros.\n **🫱🏻‍🫲🏻 Compartir externamente**: Comparta fotos y videos con personas fuera de su instancia Nextcloud.\n-- **📱 Soporte a Móviles**: Funciona con dispositivos de cualquier tamaño y forma a través de la aplicación web.\n- **✏️ Editar Metadatos**: Edite las fechas en las fotos de forma rápida y sencilla.\n- **📦 Archivar**: Almacene las fotos que no quiere ver en su línea de tiempo en una carpeta separada.\n- **📹 Conversión de video**: Memories convierte entre formatos de video y utiliza HLS para máximo rendimiento.\n- **⚡️ Rápida**: En general, Memories es extremadamente rápida.\n\n## 🌐 Demostración en línea\n\n- Para tener una idea de como se siente y se vé Memories, compruebe la [demostración pública](https://memories-demo.radialapps.com/apps/memories/). \n- Tenga en cuenta que la demostración es de sólo lectura y podría ser lenta (se ejecuta en una VM en la nube de la capa gratuita de [Oracle Cloud](https://www.oracle.com/cloud/free/)). \n- Los créditos de las fotos son para [Unsplash](https://unsplash.com/) (para créditos individuales, refiérase a cada carpeta).\n\n## 🚀 Instalación\n\n1. Instale la aplicación desde la tienda de Nextcloud.\n2. Ejecute los [pasos recomendados de configuración](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n3. Ejecute `php ./occ memories:index` para generar los índices de metadatos para las fotos existentes.\n4. Abra la aplicación 📷 Memories en Nextcloud y especifique la carpeta que contiene sus fotos.",
"Settings" : "Ajustes",
"Timeline" : "Línea de tiempo",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
@ -12,7 +13,7 @@
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Una mejor experiencia de fotos te espera",
"Choose the root folder of your timeline to begin" : "Escoja la carpeta raíz de su línea de tiempo para comenzar",
"If you just installed Memories, run:" : "Si acaba de instalar Memories, ejecute:",
@ -23,6 +24,14 @@
"Choose the root of your timeline" : "Seleccione la raíz de su línea de tiempo",
"The selected folder does not seem to be valid. Try again." : "La carpeta seleccionada no parece ser válida. Intente de nuevo.",
"Found {total} photos in {path}" : "Se encontraron {total} fotos en {path}",
"Failed to get Exif data. Metadata may be lost!" : "Fallo al obtener los datos Exif. ¡Podrían haberse perdido los metadatos!",
"No Exif data found! Continue?" : "¡No se encontraron datos Exif!, ¿Continuar?",
"Image saved successfully" : "La imagen se guardó exitósamente",
"Error saving image" : "Error guardando imágen",
"Unsaved changes" : "Cambios sin guardar",
"Drop changes" : "Descartar cambios",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Remove from album" : "Quitar del álbum",
@ -43,10 +52,14 @@
"Folders Path" : "Ruta a las carpetas",
"Show hidden folders" : "Mostrar carpetas ocultas",
"Square grid mode" : "Modo de rejilla cuadrada",
"Choose Timeline Paths" : "Escoga las rutas a la línea de tiempo",
"Choose the root for the folders view" : "Seleccione la raíz de la vista de carpetas",
"Your Timeline" : "Su línea de tiempo",
"Failed to load some photos" : "Fallo al cargar algunas fotos",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Video sharing not supported yet" : "Compartir videos no es soportado todavía",
"Cannot share this type of data" : "No se puede compartir este tipo de datos",
"Processing … {n}/{m}" : "Procesando ... {n}/{m}",
"{n} photos added to album" : "Se agregaron {n} fotos al álbum",
"Search for collaborators" : "Buscar colaboradores",
@ -103,7 +116,6 @@
"Rename person" : "Renombrar persona",
"Update" : "Actualizar",
"Failed to rename {oldName} to {name}." : "Fallo al renombrar {oldName} a {name}",
"Loading …" : "Cargando …",
"Merge {name} with person" : "Unir {name} con persona",
"Are you sure you want to merge {name} with {newName}?" : "¿Está seguro de quiere unir {name} con {newName}?",
"Too many failures, aborting" : "Demasiados fallos, abortando",
@ -116,6 +128,9 @@
"Use the sidebar to share this folder." : "Utilice la barra lateral para compartir esta carpeta.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Si crea un enlace público de compartición, haga click en refrescar y se mostrará abajo el enlace correspondiente a Memories.",
"Refresh" : "Actualizar",
"Remove" : "Quitar",
"Add Path" : "Añadir ruta",
"Add a root to your timeline" : "Añadir una raíz a su línea de tiempo",
"Share album" : "Compartir álbum",
"Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente",
@ -123,6 +138,92 @@
"Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha",
"Save as" : "Guardar como",
"Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.",
"Are you sure you want to continue?" : "¿Está seguro que desea continuar?",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Redo" : "Rehacer",
"Show original image" : "Mostrar mensaje original",
"Zoom in" : "Acercar",
"Zoom out" : "Alejar",
"Toggle zoom menu" : "Conmutar menú de zoom",
"Adjust" : "Ajustar",
"Fine-tune" : "Entonar",
"Filters" : "Filtros",
"Watermark" : "Marca de agua",
"Draw" : "Dibujar",
"Resize" : "Redimensionar",
"Invalid image." : "Imágen inválida",
"Error while uploading the image." : "Se encontró un error al cargar la imagen.",
"are not images" : "no son imágenes",
"is not an image" : "no es una imágen",
"to be uploaded" : "a cargar",
"Crop" : "Recortar",
"Original" : "Original",
"Custom" : "Personalizado",
"Square" : "Cuadrado",
"Landscape" : "Paisaje",
"Portrait" : "Retrato",
"Ellipse" : "Elipse",
"Classic TV" : "TV clásica",
"CinemaScope" : "CinemaScope",
"Arrow" : "Flecha",
"Blur" : "Difuminar",
"Brightness" : "Brillo",
"Contrast" : "Contraste",
"Un-flip X" : "Revertir voltear X",
"Flip X" : "Voltear X",
"Un-flip Y" : "Revertir voltear Y",
"Flip Y" : "Voltear Y",
"HSV" : "HSV",
"Hue" : "Tone",
"Saturation" : "Saturación",
"Value" : "Valor",
"Image" : "Imagen",
"Importing …" : "Importando ...",
"+ Add image" : "+ Añadir imágen",
"Line" : "Línea",
"Pen" : "Pluma",
"Polygon" : "Polígono",
"Sides" : "Lados",
"Rectangle" : "Rectángulo",
"Corner Radius" : "Radio de esquina",
"Width in pixels" : "Ancho en píxeles",
"Height in pixels" : "Altura en píxeles",
"Toggle ratio lock" : "Conmutar bloqueo de proporción",
"Reset to original image size" : "Reajustar a tamaño original de la imágen",
"Rotate" : "Rotar",
"Text" : "Texto",
"Text spacing" : "Espacio del texto",
"Text alignment" : "Alineación del texto",
"Font family" : "Familia de fuente",
"Size" : "Tamaño",
"Letter spacing" : "Espacio entre letras",
"Line height" : "Altura de línea",
"Warmth" : "Calidez",
"+ Add watermark" : "+ Añadir marca de agua",
"Choose watermark type" : "Seleccione el tipo de marca de agua",
"Upload watermark" : "Cargar marca de agua",
"Add as text" : "Añadir como texto",
"Padding" : "Desplazamiento",
"Shadow" : "Sombra",
"Horizontal" : "Horizontal",
"Vertical" : "Vertical",
"Opacity" : "Opacidad",
"Position" : "Posición",
"Stroke" : "Trazo",
"Save image as" : "Guardar imagen como",
"Extension" : "Extensión",
"Name is required." : "Se requiere Nombre.",
"Quality" : "Calidad",
"Saved image size (width x height)" : "Tamaño de la imagen guardada (anchura x altura)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Tenga en cuenta que el área a recortar es menor al redimensionamiento aplicado lo que puede causar pérdida de calidad",
"Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding",
"Auto" : "Auto",
"Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Fallo al renombrar {currentAlbumName} a {newAlbumName}.",

16
l10n/es_419.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restaurar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_419.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restaurar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

17
l10n/es_AR.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
@ -8,13 +9,15 @@ OC.L10N.register(
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copiar link publico",
"Back" : "Atrás",
"Save" : "Guardar",
@ -24,7 +27,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Loading …" : "Cargando …",
"Refresh" : "Recargar"
"Refresh" : "Recargar",
"Remove" : "Borrar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

17
l10n/es_AR.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
@ -6,13 +7,15 @@
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copiar link publico",
"Back" : "Atrás",
"Save" : "Guardar",
@ -22,7 +25,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Loading …" : "Cargando …",
"Refresh" : "Recargar"
"Refresh" : "Recargar",
"Remove" : "Borrar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

18
l10n/es_CL.js vendored
View File

@ -1,19 +1,23 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,7 +27,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Loading …" : "Cargando …",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

18
l10n/es_CL.json vendored
View File

@ -1,17 +1,21 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,7 +25,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Loading …" : "Cargando …",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_CO.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_CO.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_CR.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_CR.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_DO.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_DO.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_EC.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_EC.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

17
l10n/es_GT.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,16 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición",
"Auto" : "Auto"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

17
l10n/es_GT.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,16 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición",
"Auto" : "Auto"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_HN.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_HN.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

18
l10n/es_MX.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copiar enlace público",
"Public link" : "Liga pública",
"Back" : "Atrás",
@ -24,6 +27,17 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Redo" : "Rehacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición",
"Name is required." : "Nombre es requerido."
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

18
l10n/es_MX.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Copy public link" : "Copiar enlace público",
"Public link" : "Liga pública",
"Back" : "Atrás",
@ -22,6 +25,17 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Redo" : "Rehacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición",
"Name is required." : "Nombre es requerido."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_NI.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_NI.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_PA.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_PA.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_PE.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_PE.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Ajustes",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Ajustes",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_PR.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_PR.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_PY.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_PY.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_SV.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -23,6 +26,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_SV.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -21,6 +24,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

16
l10n/es_UY.js vendored
View File

@ -1,19 +1,22 @@
OC.L10N.register(
"memories",
{
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -22,6 +25,15 @@ OC.L10N.register(
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

16
l10n/es_UY.json vendored
View File

@ -1,17 +1,20 @@
{ "translations": {
"Settings" : "Configuraciones ",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Videos",
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Configuraciones ",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
"Download" : "Descargar",
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
@ -20,6 +23,15 @@
"Hour" : "Hora",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
"Custom" : "Personalizado",
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

13
l10n/et_EE.js vendored
View File

@ -1,18 +1,21 @@
OC.L10N.register(
"memories",
{
"Settings" : "Seaded",
"Folders" : "Kaustad",
"Favorites" : "Lemmikud",
"Videos" : "Videod",
"Archive" : "Arhiiv",
"Tags" : "Sildid",
"Maps" : "Kaardid",
"Settings" : "Seaded",
"Unsaved changes" : "Salvestamata muutused",
"Edit" : "Redigeeri",
"Cancel" : "Loobu",
"Delete" : "Kustuta",
"Download" : "Lae alla",
"Favorite" : "Lemmik",
"View in folder" : "Vaata kaustas",
"Share" : "Jaga",
"Copy public link" : "Kopeeri avalik link",
"Public link" : "Avalik link",
"Back" : "Tagasi",
@ -23,6 +26,12 @@ OC.L10N.register(
"Hour" : "Tund",
"Name" : "Nimi",
"Update" : "Uuenda",
"Refresh" : "Värskenda"
"Refresh" : "Värskenda",
"Remove" : "Eemalda",
"Reset" : "Lähtesta",
"Continue" : "Jätka",
"Custom" : "Kohandatud",
"Size" : "Suurus",
"Position" : "Asukoht"
},
"nplurals=2; plural=(n != 1);");

13
l10n/et_EE.json vendored
View File

@ -1,16 +1,19 @@
{ "translations": {
"Settings" : "Seaded",
"Folders" : "Kaustad",
"Favorites" : "Lemmikud",
"Videos" : "Videod",
"Archive" : "Arhiiv",
"Tags" : "Sildid",
"Maps" : "Kaardid",
"Settings" : "Seaded",
"Unsaved changes" : "Salvestamata muutused",
"Edit" : "Redigeeri",
"Cancel" : "Loobu",
"Delete" : "Kustuta",
"Download" : "Lae alla",
"Favorite" : "Lemmik",
"View in folder" : "Vaata kaustas",
"Share" : "Jaga",
"Copy public link" : "Kopeeri avalik link",
"Public link" : "Avalik link",
"Back" : "Tagasi",
@ -21,6 +24,12 @@
"Hour" : "Tund",
"Name" : "Nimi",
"Update" : "Uuenda",
"Refresh" : "Värskenda"
"Refresh" : "Värskenda",
"Remove" : "Eemalda",
"Reset" : "Lähtesta",
"Continue" : "Jätka",
"Custom" : "Kohandatud",
"Size" : "Suurus",
"Position" : "Asukoht"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

95
l10n/eu.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak",
"Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak",
"Favorites" : "Gogokoak",
@ -13,7 +14,11 @@ OC.L10N.register(
"On this day" : "Egun honetan",
"Tags" : "Etiketak",
"Maps" : "Mapak",
"Settings" : "Ezarpenak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu",
"Loading …" : "Kargatzen …",
"Cancel" : "Utzi",
"Delete" : "Ezabatu",
"Download" : "Deskargatu",
@ -31,6 +36,7 @@ OC.L10N.register(
"Show hidden folders" : "Erakutsi ezkutuko karpetak",
"Your Timeline" : "Zure denbora-lerroa",
"Failed to load some photos" : "Argazki batzuk kargatzeak huts egin du",
"Share" : "Partekatu",
"Sidebar" : "Alboko barra",
"Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak",
@ -81,12 +87,97 @@ OC.L10N.register(
"Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena",
"Update" : "Eguneratu",
"Loading …" : "Kargatzen …",
"Failed to move {name}." : "{name} mugitzeak huts egin du.",
"Refresh" : "Freskatu",
"Remove" : "Kendu",
"Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta",
"Save as" : "Gorde honela",
"Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.",
"Are you sure you want to continue?" : "Ziur zaude jarraitu nahi duzula?",
"Continue" : "Jarraitu",
"Undo" : "Desegin",
"Redo" : "Berregin",
"Show original image" : "Erakutsi jatorrizko irudia",
"Zoom in" : "Hurbildu",
"Zoom out" : "Txikiagotu",
"Toggle zoom menu" : "Aldatu zoom menua",
"Adjust" : "Egokitu",
"Fine-tune" : "Doitu",
"Filters" : "Iragazkiak",
"Watermark" : "Ur-marka",
"Draw" : "Margotu",
"Resize" : "Tamaina aldatu",
"Invalid image." : "Irudi baliogabea.",
"Error while uploading the image." : "Errorea irudia kargatzean.",
"are not images" : "ez da irudirik",
"is not an image" : "ez da irudi bat",
"to be uploaded" : "igotzeko",
"Crop" : "Moztu",
"Original" : "Jatorrizkoa",
"Custom" : "Pertsonalizatua",
"Square" : "Karratua",
"Landscape" : "Paisaia",
"Portrait" : "Erretratua",
"Ellipse" : "Elipsea",
"Classic TV" : "Telebista klasikoa",
"CinemaScope" : "CinemaScope",
"Arrow" : "Gezia",
"Blur" : "Lausotu",
"Brightness" : "Distira",
"Contrast" : "Kontrastea",
"Un-flip X" : "Desegin X irauli",
"Flip X" : "Irauli X",
"Un-flip Y" : "Desegin Y irauli",
"Flip Y" : "Irauli Y",
"HSV" : "HSV",
"Hue" : "Ñabardura",
"Saturation" : "Saturazioa",
"Value" : "Balioa",
"Image" : "Irudia",
"Importing …" : "Inportatzen ...",
"+ Add image" : "+ Gehitu irudia",
"Line" : "Lerro",
"Pen" : "Boligrafoa",
"Polygon" : "Poligonoa",
"Sides" : "Aldeak",
"Rectangle" : "Laukizuzena",
"Corner Radius" : "Izkinako erradioa",
"Width in pixels" : "Zabalera pixeletan",
"Height in pixels" : "Altuera pixeletan",
"Toggle ratio lock" : "Etengabeko erlazioaren blokeoa",
"Reset to original image size" : "Berrezarri jatorrizko irudiaren tamainara",
"Rotate" : "Biratu",
"Text" : "Testua",
"Text spacing" : "Testu-tarteak",
"Text alignment" : "Testuaren lerrokatzea",
"Font family" : "Letra-tipoen familia",
"Size" : "Tamaina",
"Letter spacing" : "Letren tartea",
"Line height" : "Lerroaren altuera",
"Warmth" : "Epeltasuna",
"+ Add watermark" : "+ Gehitu ur-marka",
"Choose watermark type" : "Aukeratu ur-marka mota",
"Upload watermark" : "Kargatu ur-marka",
"Add as text" : "Gehitu testu gisa",
"Padding" : "Betegarria",
"Shadow" : "Itzala",
"Horizontal" : "Horizontala",
"Vertical" : "Bertikala",
"Opacity" : "Opakotasuna",
"Position" : "Kokalekua",
"Stroke" : "Trazua",
"Save image as" : "Gorde irudia honela:",
"Extension" : "Hedapena",
"Name is required." : "Izena beharrezkoa da",
"Quality" : "Kalitatea",
"Saved image size (width x height)" : "Gordetako irudiaren tamaina (zabalera x altuera)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Kontuan izan hautatutako mozte-eremua aplikatutako tamaina baino txikiagoa dela eta horrek kalitatea gutxitzea eragin dezakeela",
"Actual size (100%)" : "Benetako tamaina (% 100)",
"Fit size" : "Egokitu tamaina",
"Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.",
"General Failure" : "Hutsegite orokorra",

95
l10n/eu.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak",
"Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak",
"Favorites" : "Gogokoak",
@ -11,7 +12,11 @@
"On this day" : "Egun honetan",
"Tags" : "Etiketak",
"Maps" : "Mapak",
"Settings" : "Ezarpenak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu",
"Loading …" : "Kargatzen …",
"Cancel" : "Utzi",
"Delete" : "Ezabatu",
"Download" : "Deskargatu",
@ -29,6 +34,7 @@
"Show hidden folders" : "Erakutsi ezkutuko karpetak",
"Your Timeline" : "Zure denbora-lerroa",
"Failed to load some photos" : "Argazki batzuk kargatzeak huts egin du",
"Share" : "Partekatu",
"Sidebar" : "Alboko barra",
"Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak",
@ -79,12 +85,97 @@
"Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena",
"Update" : "Eguneratu",
"Loading …" : "Kargatzen …",
"Failed to move {name}." : "{name} mugitzeak huts egin du.",
"Refresh" : "Freskatu",
"Remove" : "Kendu",
"Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta",
"Save as" : "Gorde honela",
"Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.",
"Are you sure you want to continue?" : "Ziur zaude jarraitu nahi duzula?",
"Continue" : "Jarraitu",
"Undo" : "Desegin",
"Redo" : "Berregin",
"Show original image" : "Erakutsi jatorrizko irudia",
"Zoom in" : "Hurbildu",
"Zoom out" : "Txikiagotu",
"Toggle zoom menu" : "Aldatu zoom menua",
"Adjust" : "Egokitu",
"Fine-tune" : "Doitu",
"Filters" : "Iragazkiak",
"Watermark" : "Ur-marka",
"Draw" : "Margotu",
"Resize" : "Tamaina aldatu",
"Invalid image." : "Irudi baliogabea.",
"Error while uploading the image." : "Errorea irudia kargatzean.",
"are not images" : "ez da irudirik",
"is not an image" : "ez da irudi bat",
"to be uploaded" : "igotzeko",
"Crop" : "Moztu",
"Original" : "Jatorrizkoa",
"Custom" : "Pertsonalizatua",
"Square" : "Karratua",
"Landscape" : "Paisaia",
"Portrait" : "Erretratua",
"Ellipse" : "Elipsea",
"Classic TV" : "Telebista klasikoa",
"CinemaScope" : "CinemaScope",
"Arrow" : "Gezia",
"Blur" : "Lausotu",
"Brightness" : "Distira",
"Contrast" : "Kontrastea",
"Un-flip X" : "Desegin X irauli",
"Flip X" : "Irauli X",
"Un-flip Y" : "Desegin Y irauli",
"Flip Y" : "Irauli Y",
"HSV" : "HSV",
"Hue" : "Ñabardura",
"Saturation" : "Saturazioa",
"Value" : "Balioa",
"Image" : "Irudia",
"Importing …" : "Inportatzen ...",
"+ Add image" : "+ Gehitu irudia",
"Line" : "Lerro",
"Pen" : "Boligrafoa",
"Polygon" : "Poligonoa",
"Sides" : "Aldeak",
"Rectangle" : "Laukizuzena",
"Corner Radius" : "Izkinako erradioa",
"Width in pixels" : "Zabalera pixeletan",
"Height in pixels" : "Altuera pixeletan",
"Toggle ratio lock" : "Etengabeko erlazioaren blokeoa",
"Reset to original image size" : "Berrezarri jatorrizko irudiaren tamainara",
"Rotate" : "Biratu",
"Text" : "Testua",
"Text spacing" : "Testu-tarteak",
"Text alignment" : "Testuaren lerrokatzea",
"Font family" : "Letra-tipoen familia",
"Size" : "Tamaina",
"Letter spacing" : "Letren tartea",
"Line height" : "Lerroaren altuera",
"Warmth" : "Epeltasuna",
"+ Add watermark" : "+ Gehitu ur-marka",
"Choose watermark type" : "Aukeratu ur-marka mota",
"Upload watermark" : "Kargatu ur-marka",
"Add as text" : "Gehitu testu gisa",
"Padding" : "Betegarria",
"Shadow" : "Itzala",
"Horizontal" : "Horizontala",
"Vertical" : "Bertikala",
"Opacity" : "Opakotasuna",
"Position" : "Kokalekua",
"Stroke" : "Trazua",
"Save image as" : "Gorde irudia honela:",
"Extension" : "Hedapena",
"Name is required." : "Izena beharrezkoa da",
"Quality" : "Kalitatea",
"Saved image size (width x height)" : "Gordetako irudiaren tamaina (zabalera x altuera)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Kontuan izan hautatutako mozte-eremua aplikatutako tamaina baino txikiagoa dela eta horrek kalitatea gutxitzea eragin dezakeela",
"Actual size (100%)" : "Benetako tamaina (% 100)",
"Fit size" : "Egokitu tamaina",
"Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.",
"General Failure" : "Hutsegite orokorra",

18
l10n/fa.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "تنظیمات",
"Timeline" : "خط زمانی",
"Folders" : "پوشه ها",
"Favorites" : "مورد علاقه‌ها",
@ -9,12 +10,14 @@ OC.L10N.register(
"Archive" : "بایگانی",
"Tags" : "برچسب ها",
"Maps" : "نقشه‌ها",
"Settings" : "تنظیمات",
"Edit" : "ویرایش",
"Loading …" : "بارگذاری …",
"Cancel" : "لغو",
"Delete" : "حذف",
"Download" : "بارگیری",
"Favorite" : "مورد‌ ‌علاقه‌",
"View in folder" : "مشاهده در پوشه",
"Share" : "هم‌رسانی",
"Copy public link" : "پیوند عمومی را کپی کنید",
"Public link" : "پیوند عمومی",
"Back" : "بازگشت",
@ -25,8 +28,17 @@ OC.L10N.register(
"Time" : "زمان",
"Name" : "نام",
"Update" : "یه‌روزرسانی",
"Loading …" : "بارگذاری …",
"Refresh" : "تازه‌سازی",
"Share folder" : "اشتراک‌گذاری پوشه"
"Remove" : "حذف",
"Share folder" : "اشتراک‌گذاری پوشه",
"Reset" : "بازنشاندن",
"Continue" : "ادامه دادن",
"Undo" : "برگرداندن",
"Original" : "اصلی",
"Value" : "مقدار",
"Text" : "متن",
"Size" : "اندازه",
"Extension" : "گسترش",
"Auto" : "خودکار"
},
"nplurals=2; plural=(n > 1);");

18
l10n/fa.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "تنظیمات",
"Timeline" : "خط زمانی",
"Folders" : "پوشه ها",
"Favorites" : "مورد علاقه‌ها",
@ -7,12 +8,14 @@
"Archive" : "بایگانی",
"Tags" : "برچسب ها",
"Maps" : "نقشه‌ها",
"Settings" : "تنظیمات",
"Edit" : "ویرایش",
"Loading …" : "بارگذاری …",
"Cancel" : "لغو",
"Delete" : "حذف",
"Download" : "بارگیری",
"Favorite" : "مورد‌ ‌علاقه‌",
"View in folder" : "مشاهده در پوشه",
"Share" : "هم‌رسانی",
"Copy public link" : "پیوند عمومی را کپی کنید",
"Public link" : "پیوند عمومی",
"Back" : "بازگشت",
@ -23,8 +26,17 @@
"Time" : "زمان",
"Name" : "نام",
"Update" : "یه‌روزرسانی",
"Loading …" : "بارگذاری …",
"Refresh" : "تازه‌سازی",
"Share folder" : "اشتراک‌گذاری پوشه"
"Remove" : "حذف",
"Share folder" : "اشتراک‌گذاری پوشه",
"Reset" : "بازنشاندن",
"Continue" : "ادامه دادن",
"Undo" : "برگرداندن",
"Original" : "اصلی",
"Value" : "مقدار",
"Text" : "متن",
"Size" : "اندازه",
"Extension" : "گسترش",
"Auto" : "خودکار"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

57
l10n/fi.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset",
"Timeline" : "Aikajana",
"Folders" : "Kansiot",
"Favorites" : "Suosikit",
@ -13,7 +14,7 @@ OC.L10N.register(
"On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet",
"Maps" : "Kartat",
"Settings" : "Asetukset",
"A better photos experience awaits you" : "Parempi kuvakokemus odottaa sinua",
"Choose the root folder of your timeline to begin" : "Valitse aikajanan juurihakemisto aloittaaksesi",
"If you just installed Memories, run:" : "Jos olet juuri asentanut Muistot, suorita:",
"Continue to Memories" : "Jatka Muistoihin",
@ -23,6 +24,10 @@ OC.L10N.register(
"Choose the root of your timeline" : "Valitse aikajanan juurihakemisto",
"The selected folder does not seem to be valid. Try again." : "Valittu hakemisto ei ole kelvollinen. Yritä uudelleen.",
"Found {total} photos in {path}" : "{total} kuvaa löytyi polusta {path}",
"Error saving image" : "Virhe kuvaa tallentaessa",
"Unsaved changes" : "Tallentamattomia muutoksia",
"Edit" : "Muokkaa",
"Loading …" : "Ladataan…",
"Cancel" : "Peruuta",
"Delete" : "Poista",
"Remove from album" : "Poista albumista",
@ -46,6 +51,7 @@ OC.L10N.register(
"Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto",
"Your Timeline" : "Aikajanasi",
"Failed to load some photos" : "Joidenkin kuvien lataus epäonnistui",
"Share" : "Jaa",
"Sidebar" : "Sivupalkki",
"Processing … {n}/{m}" : "Käsitellään… {n}/{m}",
"{n} photos added to album" : "{n} kuvaa lisätty albumiin",
@ -75,6 +81,7 @@ OC.L10N.register(
"Create album" : "Luo albumi",
"Add selection to album {albumName}" : "Lisää valinta albumiin {albumName}",
"Create a new album." : "Luo uusi albumi.",
"_Share with %n user_::_Share with %n users_" : ["Jaa %n käyttäjän kanssa","Jaa %n käyttäjän kanssa"],
"_%n item_::_%n items_" : ["%n kohde","%n kohdetta"],
"Share Album" : "Jaa albumi",
"Year" : "Vuosi",
@ -95,18 +102,64 @@ OC.L10N.register(
"Rename person" : "Nimeä henkilö uudelleen",
"Update" : "Päivitä",
"Failed to rename {oldName} to {name}." : "Uudelleen nimeäminen nimestä {oldName} nimeen {name} epäonnistui.",
"Loading …" : "Ladataan…",
"Too many failures, aborting" : "Liian monta epäonnistumista, lopetetaan",
"Share Folder" : "Jaa kansio",
"You cannot share the root folder" : "Et voi jakaa juurikansiota",
"Use the sidebar to share this folder." : "Käytä sivupalkkia jakaaksesi tämän kansion.",
"Refresh" : "Päivitä",
"Remove" : "Poista",
"Share album" : "Jaa albumi",
"Delete album" : "Poista albumi",
"Merge with different person" : "Yhdistä toisen henkilön kanssa",
"Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle",
"Save as" : "Tallenna nimellä",
"Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.",
"Are you sure you want to continue?" : "Haluatko varmasti jatkaa?",
"Continue" : "Jatka",
"Undo" : "Kumoa",
"Redo" : "Tee uudelleen",
"Show original image" : "Näytä alkuperäinen kuva",
"Zoom in" : "Lähennä",
"Zoom out" : "Loitonna",
"Adjust" : "Säädä",
"Fine-tune" : "Hienosäädä",
"Filters" : "Suodattimet",
"Watermark" : "Vesileima",
"Resize" : "Muuta kokoa",
"Invalid image." : "Virheellinen kuva.",
"Crop" : "Rajaa",
"Original" : "Alkuperäinen",
"Custom" : "Omavalintainen",
"Landscape" : "Maisema",
"Portrait" : "Muotokuva",
"Blur" : "Sumennus",
"Brightness" : "Kirkkaus",
"Contrast" : "Kontrasti",
"Value" : "Arvo",
"Image" : "Kuva",
"Importing …" : "Tuodaan…",
"+ Add image" : "+ Lisää kuva",
"Line" : "Viiva",
"Width in pixels" : "Leveys kuvapisteinä",
"Height in pixels" : "Korkeus kuvapisteinä",
"Toggle ratio lock" : "Suhdelukitus päälle/pois",
"Rotate" : "Kierrä",
"Text" : "Teksti",
"Size" : "Koko",
"+ Add watermark" : "+ Lisää vesileima",
"Choose watermark type" : "Valitse vesileiman tyyppi",
"Upload watermark" : "Lähetä vesileima",
"Add as text" : "Lisää tekstinä",
"Position" : "Sijainti",
"Extension" : "Tiedostopääte",
"Name is required." : "Nimi vaaditaan.",
"Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko",
"Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Albumin {currentAlbumName} nimen muuttaminen muotoon {newAlbumName} epäonnistui.",

57
l10n/fi.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset",
"Timeline" : "Aikajana",
"Folders" : "Kansiot",
"Favorites" : "Suosikit",
@ -11,7 +12,7 @@
"On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet",
"Maps" : "Kartat",
"Settings" : "Asetukset",
"A better photos experience awaits you" : "Parempi kuvakokemus odottaa sinua",
"Choose the root folder of your timeline to begin" : "Valitse aikajanan juurihakemisto aloittaaksesi",
"If you just installed Memories, run:" : "Jos olet juuri asentanut Muistot, suorita:",
"Continue to Memories" : "Jatka Muistoihin",
@ -21,6 +22,10 @@
"Choose the root of your timeline" : "Valitse aikajanan juurihakemisto",
"The selected folder does not seem to be valid. Try again." : "Valittu hakemisto ei ole kelvollinen. Yritä uudelleen.",
"Found {total} photos in {path}" : "{total} kuvaa löytyi polusta {path}",
"Error saving image" : "Virhe kuvaa tallentaessa",
"Unsaved changes" : "Tallentamattomia muutoksia",
"Edit" : "Muokkaa",
"Loading …" : "Ladataan…",
"Cancel" : "Peruuta",
"Delete" : "Poista",
"Remove from album" : "Poista albumista",
@ -44,6 +49,7 @@
"Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto",
"Your Timeline" : "Aikajanasi",
"Failed to load some photos" : "Joidenkin kuvien lataus epäonnistui",
"Share" : "Jaa",
"Sidebar" : "Sivupalkki",
"Processing … {n}/{m}" : "Käsitellään… {n}/{m}",
"{n} photos added to album" : "{n} kuvaa lisätty albumiin",
@ -73,6 +79,7 @@
"Create album" : "Luo albumi",
"Add selection to album {albumName}" : "Lisää valinta albumiin {albumName}",
"Create a new album." : "Luo uusi albumi.",
"_Share with %n user_::_Share with %n users_" : ["Jaa %n käyttäjän kanssa","Jaa %n käyttäjän kanssa"],
"_%n item_::_%n items_" : ["%n kohde","%n kohdetta"],
"Share Album" : "Jaa albumi",
"Year" : "Vuosi",
@ -93,18 +100,64 @@
"Rename person" : "Nimeä henkilö uudelleen",
"Update" : "Päivitä",
"Failed to rename {oldName} to {name}." : "Uudelleen nimeäminen nimestä {oldName} nimeen {name} epäonnistui.",
"Loading …" : "Ladataan…",
"Too many failures, aborting" : "Liian monta epäonnistumista, lopetetaan",
"Share Folder" : "Jaa kansio",
"You cannot share the root folder" : "Et voi jakaa juurikansiota",
"Use the sidebar to share this folder." : "Käytä sivupalkkia jakaaksesi tämän kansion.",
"Refresh" : "Päivitä",
"Remove" : "Poista",
"Share album" : "Jaa albumi",
"Delete album" : "Poista albumi",
"Merge with different person" : "Yhdistä toisen henkilön kanssa",
"Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle",
"Save as" : "Tallenna nimellä",
"Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.",
"Are you sure you want to continue?" : "Haluatko varmasti jatkaa?",
"Continue" : "Jatka",
"Undo" : "Kumoa",
"Redo" : "Tee uudelleen",
"Show original image" : "Näytä alkuperäinen kuva",
"Zoom in" : "Lähennä",
"Zoom out" : "Loitonna",
"Adjust" : "Säädä",
"Fine-tune" : "Hienosäädä",
"Filters" : "Suodattimet",
"Watermark" : "Vesileima",
"Resize" : "Muuta kokoa",
"Invalid image." : "Virheellinen kuva.",
"Crop" : "Rajaa",
"Original" : "Alkuperäinen",
"Custom" : "Omavalintainen",
"Landscape" : "Maisema",
"Portrait" : "Muotokuva",
"Blur" : "Sumennus",
"Brightness" : "Kirkkaus",
"Contrast" : "Kontrasti",
"Value" : "Arvo",
"Image" : "Kuva",
"Importing …" : "Tuodaan…",
"+ Add image" : "+ Lisää kuva",
"Line" : "Viiva",
"Width in pixels" : "Leveys kuvapisteinä",
"Height in pixels" : "Korkeus kuvapisteinä",
"Toggle ratio lock" : "Suhdelukitus päälle/pois",
"Rotate" : "Kierrä",
"Text" : "Teksti",
"Size" : "Koko",
"+ Add watermark" : "+ Lisää vesileima",
"Choose watermark type" : "Valitse vesileiman tyyppi",
"Upload watermark" : "Lähetä vesileima",
"Add as text" : "Lisää tekstinä",
"Position" : "Sijainti",
"Extension" : "Tiedostopääte",
"Name is required." : "Nimi vaaditaan.",
"Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko",
"Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Albumin {currentAlbumName} nimen muuttaminen muotoon {newAlbumName} epäonnistui.",

119
l10n/fr.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Souvenirs",
"Yet another photo management app" : "Une nouvelle application de gestion des photos",
"Settings" : "Paramètres",
"Timeline" : "Fil chronologique",
"Folders" : "Dossiers",
"Favorites" : "Favoris",
@ -13,7 +14,20 @@ OC.L10N.register(
"On this day" : "Ce même jour",
"Tags" : "Étiquettes",
"Maps" : "Cartes",
"Settings" : "Paramètres",
"Choose the root folder of your timeline to begin" : "Choisissez le dossier racine de votre fil chronologique pour commencer",
"If you just installed Memories, run:" : "Si vous venez d'installer Souvenirs, exécuter :",
"Continue to Memories" : "Continuer vers Souvenirs",
"Choose again" : "Choisir à nouveau",
"Click here to start" : "Cliquer ici pour commencer",
"You can always change this later in settings" : "Vous pouvez toujours changer cela ultérieurement dans les paramètres",
"Choose the root of your timeline" : "Choisissez le début de votre fil chronologique",
"The selected folder does not seem to be valid. Try again." : "Le dossier sélectionné ne semble pas être valide. Essayer à nouveau.",
"Image saved successfully" : "Image enregistrée avec succès",
"Error saving image" : "Erreur lors de l'enregistrement de l'image",
"Unsaved changes" : "Modifications non enregistrées",
"Drop changes" : "Abandonner les changements",
"Edit" : "Modifier",
"Loading …" : "Chargement …",
"Cancel" : "Annuler",
"Delete" : "Supprimer",
"Download" : "Télécharger",
@ -22,15 +36,22 @@ OC.L10N.register(
"Edit Date/Time" : "Éditer la Date/Heure",
"View in folder" : "Afficher dans le dossier",
"Add to album" : "Ajouter à l'album",
"Move to another person" : "Déplacer vers une autre personne",
"Remove from person" : "Retirer de la personne",
"You are about to download a large number of files. Are you sure?" : "Vous êtes sur le point de télécharger un grand nombre de fichiers. Êtes-vous certain de vouloir le faire ?",
"You are about to delete a large number of files. Are you sure?" : "Vous êtes sur le point de supprimer un grand nombre de fichiers. Êtes-vous certain⋅e de vouloir le faire ?",
"You are about to touch a large number of files. Are you sure?" : "Vous êtes sur le point de modifier un grand nombre de fichiers. Êtes-vous sûr(e) ?",
"_{n} selected_::_{n} selected_" : ["{n} sélectionné","{n} sélectionnés","{n} sélectionnés"],
"Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés",
"Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Video sharing not supported yet" : "Le partage de vidéo n'est pas encore disponible",
"Cannot share this type of data" : "Impossible de partager ce type de données",
"Processing … {n}/{m}" : "En cours de traitement … {n}/{m}",
"Search for collaborators" : "Rechercher des collaborateurs",
"Search people or groups" : "Recherche des personnes ou des groupes",
"Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs",
@ -75,22 +96,116 @@ OC.L10N.register(
"Exercise caution and make sure you have backups." : "Faites preuve de prudence et assurez-vous que vous disposez de sauvegardes.",
"Loading data … {n}/{m}" : "Chargement des données… {n}/{m}",
"Remove person" : "Retirer la personne",
"Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?",
"Name" : "Nom",
"Rename person" : "Renommer la personne",
"Update" : "Mise à jour",
"Failed to rename {oldName} to {name}." : "Échec du renommage de {oldName} en {name}.",
"Loading …" : "Chargement …",
"You cannot share the root folder" : "Vous ne pouvez pas partager le dossier racine",
"Use the sidebar to share this folder." : "Utiliser la barre latérale pour partager ce dossier.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Si vous créez un partage de lien public, cliquez sur rafraîchir et un lien correspondant à Souvenirs sera visible ci-dessous.",
"Refresh" : "Actualiser",
"Remove" : "Retirer",
"Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne",
"Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche",
"Move right" : "Vers la droite",
"Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.",
"Are you sure you want to continue?" : "Êtes-vous sûr de vouloir continuer ?",
"Continue" : "Continuer",
"Undo" : "Annuler",
"Redo" : "Rétablir",
"Show original image" : "Afficher l'image originale",
"Zoom in" : "Zoomer",
"Zoom out" : "Dézoomer",
"Toggle zoom menu" : "Afficher/Masquer le menu de zoom",
"Adjust" : "Ajuster",
"Fine-tune" : "Réglages fins",
"Filters" : "Filtres",
"Watermark" : "Filigrane",
"Draw" : "Dessiner",
"Resize" : "Redimensionner",
"Invalid image." : "Image invalide.",
"Error while uploading the image." : "Erreur lors du téléversement de l'image",
"are not images" : "ne sont pas des images",
"is not an image" : "n'est pas une image",
"to be uploaded" : "à téléverser",
"Crop" : "Recadrer",
"Original" : "Original",
"Custom" : "Personnalisé",
"Square" : "Carré",
"Landscape" : "Paysage",
"Portrait" : "Portrait",
"Ellipse" : "Ellipse",
"Classic TV" : "Télévision Classique",
"CinemaScope" : "CinemaScope",
"Arrow" : "Flèche",
"Blur" : "Flou",
"Brightness" : "Luminosité",
"Contrast" : "Contraste",
"Un-flip X" : "Suppr. miroir horiz.",
"Flip X" : "Miroir horiz.",
"Un-flip Y" : "Suppr. miroir vertic.",
"Flip Y" : "Miroir vertic.",
"HSV" : "TSV",
"Hue" : "Teinte",
"Saturation" : "Saturation",
"Value" : "Valeur",
"Image" : "Image",
"Importing …" : "Importation...",
"+ Add image" : "+ Ajouter une image",
"Line" : "Ligne",
"Pen" : "Stylo",
"Polygon" : "Polygone",
"Sides" : "Diapositives",
"Rectangle" : "Rectangle",
"Corner Radius" : "Rayon d'angle",
"Width in pixels" : "Largeur en pixels",
"Height in pixels" : "Hauteur en pixels",
"Toggle ratio lock" : "Activer/Désactiver la conservation des proportions",
"Reset to original image size" : "Rétablir la taille originale de l'image",
"Rotate" : "Faire pivoter",
"Text" : "Texte",
"Text spacing" : "Espacement du texte",
"Text alignment" : "Alignement du texte",
"Font family" : "Police de caractère",
"Size" : "Taille",
"Letter spacing" : "Espacement des caractères",
"Line height" : "Hauteur de ligne",
"Warmth" : "Température",
"+ Add watermark" : "+ Ajouter un filigrane",
"Choose watermark type" : "Choisir un type de filigrane",
"Upload watermark" : "Téléverser un filigrane",
"Add as text" : "Ajouter comme texte",
"Padding" : "Marge interne",
"Shadow" : "Ombre",
"Horizontal" : "Horizontal",
"Vertical" : "Vertical",
"Opacity" : "Opacité",
"Position" : "Position",
"Stroke" : "Coutour",
"Save image as" : "Enregistrer l'image sous",
"Extension" : "Extension",
"Name is required." : "Le nom est obligatoire.",
"Quality" : "Qualité",
"Saved image size (width x height)" : "Taille de l'image sauvegardée (largeur x hauteur)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Notez que la zone de recadrage sélectionnée est inférieure au redimensionnement appliqué, ce qui peut entraîner une baisse de qualité.",
"Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.",
"Auto" : "Auto",
"Failed to create {albumName}." : "Échec de la création de {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.",
"General Failure" : "Échec général",
"Error: {msg}" : "Erreur : {msg}",
"Failed to delete files." : "Échec de la suppression des fichiers.",
"Failed to delete {fileName}." : "Échec de la suppression de {fileName}.",
"Failed to download some files." : "Échec du téléchargement de certains fichiers.",
"Failed to favorite files." : "Échec de la mise en favoris des fichiers.",
"Failed to favorite some files." : "Échec de l'ajout en favoris de certains fichiers.",
"Failed to favorite {fileName}." : "Échec de l'ajout aux favoris de {fileName}."
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

119
l10n/fr.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Souvenirs",
"Yet another photo management app" : "Une nouvelle application de gestion des photos",
"Settings" : "Paramètres",
"Timeline" : "Fil chronologique",
"Folders" : "Dossiers",
"Favorites" : "Favoris",
@ -11,7 +12,20 @@
"On this day" : "Ce même jour",
"Tags" : "Étiquettes",
"Maps" : "Cartes",
"Settings" : "Paramètres",
"Choose the root folder of your timeline to begin" : "Choisissez le dossier racine de votre fil chronologique pour commencer",
"If you just installed Memories, run:" : "Si vous venez d'installer Souvenirs, exécuter :",
"Continue to Memories" : "Continuer vers Souvenirs",
"Choose again" : "Choisir à nouveau",
"Click here to start" : "Cliquer ici pour commencer",
"You can always change this later in settings" : "Vous pouvez toujours changer cela ultérieurement dans les paramètres",
"Choose the root of your timeline" : "Choisissez le début de votre fil chronologique",
"The selected folder does not seem to be valid. Try again." : "Le dossier sélectionné ne semble pas être valide. Essayer à nouveau.",
"Image saved successfully" : "Image enregistrée avec succès",
"Error saving image" : "Erreur lors de l'enregistrement de l'image",
"Unsaved changes" : "Modifications non enregistrées",
"Drop changes" : "Abandonner les changements",
"Edit" : "Modifier",
"Loading …" : "Chargement …",
"Cancel" : "Annuler",
"Delete" : "Supprimer",
"Download" : "Télécharger",
@ -20,15 +34,22 @@
"Edit Date/Time" : "Éditer la Date/Heure",
"View in folder" : "Afficher dans le dossier",
"Add to album" : "Ajouter à l'album",
"Move to another person" : "Déplacer vers une autre personne",
"Remove from person" : "Retirer de la personne",
"You are about to download a large number of files. Are you sure?" : "Vous êtes sur le point de télécharger un grand nombre de fichiers. Êtes-vous certain de vouloir le faire ?",
"You are about to delete a large number of files. Are you sure?" : "Vous êtes sur le point de supprimer un grand nombre de fichiers. Êtes-vous certain⋅e de vouloir le faire ?",
"You are about to touch a large number of files. Are you sure?" : "Vous êtes sur le point de modifier un grand nombre de fichiers. Êtes-vous sûr(e) ?",
"_{n} selected_::_{n} selected_" : ["{n} sélectionné","{n} sélectionnés","{n} sélectionnés"],
"Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés",
"Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Video sharing not supported yet" : "Le partage de vidéo n'est pas encore disponible",
"Cannot share this type of data" : "Impossible de partager ce type de données",
"Processing … {n}/{m}" : "En cours de traitement … {n}/{m}",
"Search for collaborators" : "Rechercher des collaborateurs",
"Search people or groups" : "Recherche des personnes ou des groupes",
"Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs",
@ -73,22 +94,116 @@
"Exercise caution and make sure you have backups." : "Faites preuve de prudence et assurez-vous que vous disposez de sauvegardes.",
"Loading data … {n}/{m}" : "Chargement des données… {n}/{m}",
"Remove person" : "Retirer la personne",
"Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?",
"Name" : "Nom",
"Rename person" : "Renommer la personne",
"Update" : "Mise à jour",
"Failed to rename {oldName} to {name}." : "Échec du renommage de {oldName} en {name}.",
"Loading …" : "Chargement …",
"You cannot share the root folder" : "Vous ne pouvez pas partager le dossier racine",
"Use the sidebar to share this folder." : "Utiliser la barre latérale pour partager ce dossier.",
"If you create a public link share, click on refresh and a corresponding link to Memories will be shown below." : "Si vous créez un partage de lien public, cliquez sur rafraîchir et un lien correspondant à Souvenirs sera visible ci-dessous.",
"Refresh" : "Actualiser",
"Remove" : "Retirer",
"Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne",
"Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche",
"Move right" : "Vers la droite",
"Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.",
"Are you sure you want to continue?" : "Êtes-vous sûr de vouloir continuer ?",
"Continue" : "Continuer",
"Undo" : "Annuler",
"Redo" : "Rétablir",
"Show original image" : "Afficher l'image originale",
"Zoom in" : "Zoomer",
"Zoom out" : "Dézoomer",
"Toggle zoom menu" : "Afficher/Masquer le menu de zoom",
"Adjust" : "Ajuster",
"Fine-tune" : "Réglages fins",
"Filters" : "Filtres",
"Watermark" : "Filigrane",
"Draw" : "Dessiner",
"Resize" : "Redimensionner",
"Invalid image." : "Image invalide.",
"Error while uploading the image." : "Erreur lors du téléversement de l'image",
"are not images" : "ne sont pas des images",
"is not an image" : "n'est pas une image",
"to be uploaded" : "à téléverser",
"Crop" : "Recadrer",
"Original" : "Original",
"Custom" : "Personnalisé",
"Square" : "Carré",
"Landscape" : "Paysage",
"Portrait" : "Portrait",
"Ellipse" : "Ellipse",
"Classic TV" : "Télévision Classique",
"CinemaScope" : "CinemaScope",
"Arrow" : "Flèche",
"Blur" : "Flou",
"Brightness" : "Luminosité",
"Contrast" : "Contraste",
"Un-flip X" : "Suppr. miroir horiz.",
"Flip X" : "Miroir horiz.",
"Un-flip Y" : "Suppr. miroir vertic.",
"Flip Y" : "Miroir vertic.",
"HSV" : "TSV",
"Hue" : "Teinte",
"Saturation" : "Saturation",
"Value" : "Valeur",
"Image" : "Image",
"Importing …" : "Importation...",
"+ Add image" : "+ Ajouter une image",
"Line" : "Ligne",
"Pen" : "Stylo",
"Polygon" : "Polygone",
"Sides" : "Diapositives",
"Rectangle" : "Rectangle",
"Corner Radius" : "Rayon d'angle",
"Width in pixels" : "Largeur en pixels",
"Height in pixels" : "Hauteur en pixels",
"Toggle ratio lock" : "Activer/Désactiver la conservation des proportions",
"Reset to original image size" : "Rétablir la taille originale de l'image",
"Rotate" : "Faire pivoter",
"Text" : "Texte",
"Text spacing" : "Espacement du texte",
"Text alignment" : "Alignement du texte",
"Font family" : "Police de caractère",
"Size" : "Taille",
"Letter spacing" : "Espacement des caractères",
"Line height" : "Hauteur de ligne",
"Warmth" : "Température",
"+ Add watermark" : "+ Ajouter un filigrane",
"Choose watermark type" : "Choisir un type de filigrane",
"Upload watermark" : "Téléverser un filigrane",
"Add as text" : "Ajouter comme texte",
"Padding" : "Marge interne",
"Shadow" : "Ombre",
"Horizontal" : "Horizontal",
"Vertical" : "Vertical",
"Opacity" : "Opacité",
"Position" : "Position",
"Stroke" : "Coutour",
"Save image as" : "Enregistrer l'image sous",
"Extension" : "Extension",
"Name is required." : "Le nom est obligatoire.",
"Quality" : "Qualité",
"Saved image size (width x height)" : "Taille de l'image sauvegardée (largeur x hauteur)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Notez que la zone de recadrage sélectionnée est inférieure au redimensionnement appliqué, ce qui peut entraîner une baisse de qualité.",
"Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.",
"Auto" : "Auto",
"Failed to create {albumName}." : "Échec de la création de {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.",
"General Failure" : "Échec général",
"Error: {msg}" : "Erreur : {msg}",
"Failed to delete files." : "Échec de la suppression des fichiers.",
"Failed to delete {fileName}." : "Échec de la suppression de {fileName}.",
"Failed to download some files." : "Échec du téléchargement de certains fichiers.",
"Failed to favorite files." : "Échec de la mise en favoris des fichiers.",
"Failed to favorite some files." : "Échec de l'ajout en favoris de certains fichiers.",
"Failed to favorite {fileName}." : "Échec de l'ajout aux favoris de {fileName}."
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

8
l10n/gd.js vendored
View File

@ -1,17 +1,21 @@
OC.L10N.register(
"memories",
{
"Settings" : "Roghainnean",
"Favorites" : "Annsachdan",
"Videos" : "Videothan",
"Tags" : "Tagaichean",
"Settings" : "Roghainnean",
"Edit" : "Deasaich",
"Cancel" : "Sguir dheth",
"Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Back" : "Air ais",
"Save" : "Sàbhail",
"Name" : "Ainm",
"Refresh" : "Ath-nuadhaich"
"Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh",
"Undo" : "Neo-dhèan"
},
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");

8
l10n/gd.json vendored
View File

@ -1,15 +1,19 @@
{ "translations": {
"Settings" : "Roghainnean",
"Favorites" : "Annsachdan",
"Videos" : "Videothan",
"Tags" : "Tagaichean",
"Settings" : "Roghainnean",
"Edit" : "Deasaich",
"Cancel" : "Sguir dheth",
"Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Back" : "Air ais",
"Save" : "Sàbhail",
"Name" : "Ainm",
"Refresh" : "Ath-nuadhaich"
"Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh",
"Undo" : "Neo-dhèan"
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
}

27
l10n/gl.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Axustes",
"Timeline" : "Liña temporal",
"Folders" : "Cartafoles",
"Favorites" : "Favoritos",
@ -9,13 +10,16 @@ OC.L10N.register(
"Archive" : "Aquivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Axustes",
"Unsaved changes" : "Cambios sen gardar",
"Edit" : "Editar",
"Loading …" : "Cargando…",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarquivar",
"View in folder" : "Ver no cartafol",
"Share" : "Compartir",
"Copy public link" : "Copiar a ligazón pública",
"Public link" : "Ligazón pública",
"Back" : "Atrás",
@ -28,7 +32,24 @@ OC.L10N.register(
"Minute" : "Minuto",
"Name" : "Nome",
"Update" : "Actualizar",
"Loading …" : "Cargando…",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Retirar",
"Reset" : "Restabelecer",
"Continue" : "Continuar",
"Undo" : "Desfacer",
"Redo" : "Refacer",
"Zoom in" : "Achegar",
"Original" : "Orixinal",
"Custom" : "Personalizado",
"Value" : "Valor",
"Image" : "Imaxe",
"Line" : "Liña",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posicion",
"Extension" : "Extensión",
"Name is required." : "É obrigatorio o nome.",
"Quality" : "Calidade",
"Auto" : "Automático"
},
"nplurals=2; plural=(n != 1);");

27
l10n/gl.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Axustes",
"Timeline" : "Liña temporal",
"Folders" : "Cartafoles",
"Favorites" : "Favoritos",
@ -7,13 +8,16 @@
"Archive" : "Aquivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Settings" : "Axustes",
"Unsaved changes" : "Cambios sen gardar",
"Edit" : "Editar",
"Loading …" : "Cargando…",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
"Download" : "Descargar",
"Favorite" : "Favorito",
"Unarchive" : "Desarquivar",
"View in folder" : "Ver no cartafol",
"Share" : "Compartir",
"Copy public link" : "Copiar a ligazón pública",
"Public link" : "Ligazón pública",
"Back" : "Atrás",
@ -26,7 +30,24 @@
"Minute" : "Minuto",
"Name" : "Nome",
"Update" : "Actualizar",
"Loading …" : "Cargando…",
"Refresh" : "Actualizar"
"Refresh" : "Actualizar",
"Remove" : "Retirar",
"Reset" : "Restabelecer",
"Continue" : "Continuar",
"Undo" : "Desfacer",
"Redo" : "Refacer",
"Zoom in" : "Achegar",
"Original" : "Orixinal",
"Custom" : "Personalizado",
"Value" : "Valor",
"Image" : "Imaxe",
"Line" : "Liña",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posicion",
"Extension" : "Extensión",
"Name is required." : "É obrigatorio o nome.",
"Quality" : "Calidade",
"Auto" : "Automático"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

25
l10n/he.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "הגדרות",
"Timeline" : "ציר זמן",
"Folders" : "תיקייה",
"Favorites" : "מועדפים",
@ -8,13 +9,16 @@ OC.L10N.register(
"Archive" : "לארכיון",
"Tags" : "תגיות",
"Maps" : "מפות",
"Settings" : "הגדרות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה",
"Loading …" : "בטעינה…",
"Cancel" : "ביטול",
"Delete" : "מחיקה",
"Download" : "הורדה",
"Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי",
"Back" : "חזרה",
@ -27,7 +31,22 @@ OC.L10N.register(
"Minute" : "דקה",
"Name" : "שם",
"Update" : "עדכון",
"Loading …" : "בטעינה…",
"Refresh" : "רענון"
"Refresh" : "רענון",
"Remove" : "הסרה",
"Reset" : "איפוס",
"Continue" : "להמשך",
"Undo" : "ביטול",
"Redo" : "שחזור",
"Zoom in" : "התקרבות",
"Custom" : "מותאם אישית",
"Value" : "ערך",
"Image" : "תמונה",
"Text" : "טקסט",
"Size" : "גודל",
"Position" : "מיקום",
"Extension" : "הרחבה",
"Name is required." : "נדרש שם.",
"Quality" : "איכות",
"Auto" : "אוטומטי"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

25
l10n/he.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "הגדרות",
"Timeline" : "ציר זמן",
"Folders" : "תיקייה",
"Favorites" : "מועדפים",
@ -6,13 +7,16 @@
"Archive" : "לארכיון",
"Tags" : "תגיות",
"Maps" : "מפות",
"Settings" : "הגדרות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה",
"Loading …" : "בטעינה…",
"Cancel" : "ביטול",
"Delete" : "מחיקה",
"Download" : "הורדה",
"Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי",
"Back" : "חזרה",
@ -25,7 +29,22 @@
"Minute" : "דקה",
"Name" : "שם",
"Update" : "עדכון",
"Loading …" : "בטעינה…",
"Refresh" : "רענון"
"Refresh" : "רענון",
"Remove" : "הסרה",
"Reset" : "איפוס",
"Continue" : "להמשך",
"Undo" : "ביטול",
"Redo" : "שחזור",
"Zoom in" : "התקרבות",
"Custom" : "מותאם אישית",
"Value" : "ערך",
"Image" : "תמונה",
"Text" : "טקסט",
"Size" : "גודל",
"Position" : "מיקום",
"Extension" : "הרחבה",
"Name is required." : "נדרש שם.",
"Quality" : "איכות",
"Auto" : "אוטומטי"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
}

26
l10n/hr.js vendored
View File

@ -1,6 +1,7 @@
OC.L10N.register(
"memories",
{
"Settings" : "Postavke",
"Timeline" : "Vremenska crta",
"Folders" : "Mape",
"Favorites" : "Favoriti",
@ -9,13 +10,16 @@ OC.L10N.register(
"Archive" : "Arhiva",
"Tags" : "Oznake",
"Maps" : "Karte",
"Settings" : "Postavke",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi",
"Loading …" : "Učitavanje…",
"Cancel" : "Odustani",
"Delete" : "Izbriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica",
"Back" : "Natrag",
@ -28,8 +32,24 @@ OC.L10N.register(
"Minute" : "Minuta",
"Name" : "Naziv",
"Update" : "Ažuriraj",
"Loading …" : "Učitavanje…",
"Refresh" : "Osvježi",
"Share folder" : "Dijeli mapu"
"Remove" : "Ukloni",
"Share folder" : "Dijeli mapu",
"Reset" : "Resetiraj",
"Continue" : "Nastavi",
"Undo" : "Poništi",
"Redo" : "Ponovno",
"Zoom in" : "Uvećaj",
"Original" : "Izvornik",
"Custom" : "Prilagođeno",
"Value" : "Vrijednost",
"Image" : "Slika",
"Text" : "Tekst",
"Size" : "Veličina",
"Position" : "Položaj",
"Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta",
"Auto" : "Auto"
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

26
l10n/hr.json vendored
View File

@ -1,4 +1,5 @@
{ "translations": {
"Settings" : "Postavke",
"Timeline" : "Vremenska crta",
"Folders" : "Mape",
"Favorites" : "Favoriti",
@ -7,13 +8,16 @@
"Archive" : "Arhiva",
"Tags" : "Oznake",
"Maps" : "Karte",
"Settings" : "Postavke",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi",
"Loading …" : "Učitavanje…",
"Cancel" : "Odustani",
"Delete" : "Izbriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica",
"Back" : "Natrag",
@ -26,8 +30,24 @@
"Minute" : "Minuta",
"Name" : "Naziv",
"Update" : "Ažuriraj",
"Loading …" : "Učitavanje…",
"Refresh" : "Osvježi",
"Share folder" : "Dijeli mapu"
"Remove" : "Ukloni",
"Share folder" : "Dijeli mapu",
"Reset" : "Resetiraj",
"Continue" : "Nastavi",
"Undo" : "Poništi",
"Redo" : "Ponovno",
"Zoom in" : "Uvećaj",
"Original" : "Izvornik",
"Custom" : "Prilagođeno",
"Value" : "Vrijednost",
"Image" : "Slika",
"Text" : "Tekst",
"Size" : "Veličina",
"Position" : "Položaj",
"Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta",
"Auto" : "Auto"
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
}

97
l10n/hu.js vendored
View File

@ -3,6 +3,7 @@ OC.L10N.register(
{
"Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás",
"Settings" : "Beállítások",
"Timeline" : "Idővonal",
"Folders" : "Mappák",
"Favorites" : "Kedvencek",
@ -13,7 +14,12 @@ OC.L10N.register(
"On this day" : "A mai napon",
"Tags" : "Címkék",
"Maps" : "Térképek",
"Settings" : "Beállítások",
"EXIF" : "EXIF",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"Edit" : "Szerkesztés",
"Loading …" : "Betöltés…",
"Cancel" : "Mégse",
"Delete" : "Törlés",
"Download" : "Letöltés",
@ -32,6 +38,7 @@ OC.L10N.register(
"Show hidden folders" : "Rejtett mappák megjelenítése",
"Your Timeline" : "Saját idővonal",
"Failed to load some photos" : "Nem sikerült betölteni néhány fényképet",
"Share" : "Megosztás",
"Sidebar" : "Oldalsáv",
"Processing … {n}/{m}" : "Feldolgozás… {n}/{m}",
"Search for collaborators" : "Közreműködők keresése",
@ -61,6 +68,7 @@ OC.L10N.register(
"Add collaborators" : "Közreműködők hozzáadása",
"Save" : "Mentés",
"Create album" : "Album létrehozása",
"Add selection to album {albumName}" : "Kiválasztás hozzáadása a(z) {albumName} albumhoz",
"Create a new album." : "Új album létrehozása.",
"Save collaborators for this album." : "Közreműködők mentése ehhez az albumhoz.",
"Year" : "Év",
@ -76,11 +84,96 @@ OC.L10N.register(
"Name" : "Név",
"Rename person" : "Személy átnevezése",
"Update" : "Frissítés",
"Loading …" : "Betöltés…",
"Refresh" : "Frissítés",
"Remove" : "Eltávolítás",
"Delete album" : "Album törlése",
"Merge with different person" : "Összevonás egy másik személlyel",
"Share folder" : "Mappa megosztása",
"Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.",
"Are you sure you want to continue?" : "Biztos, hogy folytatja?",
"Continue" : "Folytatás",
"Undo" : "Visszavonás",
"Redo" : "Újra",
"Show original image" : "Eredeti kép megjelenítése",
"Zoom in" : "Nagyítás",
"Zoom out" : "Kicsinyítés",
"Toggle zoom menu" : "Nagyítási menü be/ki",
"Adjust" : "Igazítás",
"Fine-tune" : "Finomhangolás",
"Filters" : "Szűrők",
"Watermark" : "Vízjel",
"Draw" : "Rajzolás",
"Resize" : "Átméretezés",
"Invalid image." : "Érvénytelen kép.",
"Error while uploading the image." : "Hiba történt a kép feltöltése során.",
"are not images" : "nem képek",
"is not an image" : "nem kép",
"to be uploaded" : "feltöltendő",
"Crop" : "Levágás",
"Original" : "Eredeti",
"Custom" : "Egyéni",
"Square" : "Négyzetes",
"Landscape" : "Fekvő",
"Portrait" : "Álló",
"Ellipse" : "Ellipszis",
"Classic TV" : "Klasszikus TV",
"CinemaScope" : "CinemaScope",
"Arrow" : "Nyíl",
"Blur" : "Elmosás",
"Brightness" : "Fényerő",
"Contrast" : "Kontraszt",
"Un-flip X" : "X-tengelyre tükrözés visszavonása",
"Flip X" : "X-tengelyre tükrözés",
"Un-flip Y" : "Y-tengelyre tükrözés visszavonása",
"Flip Y" : "Y-tengelyre tükrözés",
"HSV" : "HSV",
"Hue" : "Fényerő",
"Saturation" : "Telítettség",
"Value" : "Érték",
"Image" : "Kép",
"Importing …" : "Importálás…",
"+ Add image" : "+ Kép hozzáadása",
"Line" : "Vonal",
"Pen" : "Toll",
"Polygon" : "Sokszög",
"Sides" : "Oldalak",
"Rectangle" : "Téglalap",
"Corner Radius" : "Saroklekerekítés sugara",
"Width in pixels" : "Szélesség képpontokban",
"Height in pixels" : "Magasság képpontokban",
"Toggle ratio lock" : "Arányzárolás be/ki",
"Reset to original image size" : "Visszaállítás az eredeti képméretre",
"Rotate" : "Forgatás",
"Text" : "Szöveg",
"Text spacing" : "Szövegtávolság",
"Text alignment" : "Szöveg igazítása",
"Font family" : "Betűkészletcsalád",
"Size" : "Méret",
"Letter spacing" : "Betűköz",
"Line height" : "Sormagasság",
"Warmth" : "Melegség",
"+ Add watermark" : "+ Vízjel hozzáadása",
"Choose watermark type" : "Válasszon vízjeltípust",
"Upload watermark" : "Vízjel feltöltése",
"Add as text" : "Hozzáadás szövegként",
"Padding" : "Helykitöltés",
"Shadow" : "Árnyék",
"Horizontal" : "Vízszintes",
"Vertical" : "Függőleges",
"Opacity" : "Átlátszatlanság",
"Position" : "Pozíció",
"Stroke" : "Körberajzolás",
"Save image as" : "Kép mentése másként",
"Extension" : "Kiterjesztés",
"Name is required." : "A név kötelező.",
"Quality" : "Minőség",
"Saved image size (width x height)" : "Mentett kép mérete (szélesség×magasság)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Vegye figyelembe, hogy a kijelölt levágási terület kisebb mint az alkalmazott átméretezés, amely minőségcsökkenést okozhat",
"Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret",
"Auto" : "Automatikus",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "A(z) {currentAlbumName} átnevezése a következőre sikertelen: {newAlbumName}.",
"Failed to delete files." : "A fájlok törlése sikertelen.",

97
l10n/hu.json vendored
View File

@ -1,6 +1,7 @@
{ "translations": {
"Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás",
"Settings" : "Beállítások",
"Timeline" : "Idővonal",
"Folders" : "Mappák",
"Favorites" : "Kedvencek",
@ -11,7 +12,12 @@
"On this day" : "A mai napon",
"Tags" : "Címkék",
"Maps" : "Térképek",
"Settings" : "Beállítások",
"EXIF" : "EXIF",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"Edit" : "Szerkesztés",
"Loading …" : "Betöltés…",
"Cancel" : "Mégse",
"Delete" : "Törlés",
"Download" : "Letöltés",
@ -30,6 +36,7 @@
"Show hidden folders" : "Rejtett mappák megjelenítése",
"Your Timeline" : "Saját idővonal",
"Failed to load some photos" : "Nem sikerült betölteni néhány fényképet",
"Share" : "Megosztás",
"Sidebar" : "Oldalsáv",
"Processing … {n}/{m}" : "Feldolgozás… {n}/{m}",
"Search for collaborators" : "Közreműködők keresése",
@ -59,6 +66,7 @@
"Add collaborators" : "Közreműködők hozzáadása",
"Save" : "Mentés",
"Create album" : "Album létrehozása",
"Add selection to album {albumName}" : "Kiválasztás hozzáadása a(z) {albumName} albumhoz",
"Create a new album." : "Új album létrehozása.",
"Save collaborators for this album." : "Közreműködők mentése ehhez az albumhoz.",
"Year" : "Év",
@ -74,11 +82,96 @@
"Name" : "Név",
"Rename person" : "Személy átnevezése",
"Update" : "Frissítés",
"Loading …" : "Betöltés…",
"Refresh" : "Frissítés",
"Remove" : "Eltávolítás",
"Delete album" : "Album törlése",
"Merge with different person" : "Összevonás egy másik személlyel",
"Share folder" : "Mappa megosztása",
"Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.",
"Are you sure you want to continue?" : "Biztos, hogy folytatja?",
"Continue" : "Folytatás",
"Undo" : "Visszavonás",
"Redo" : "Újra",
"Show original image" : "Eredeti kép megjelenítése",
"Zoom in" : "Nagyítás",
"Zoom out" : "Kicsinyítés",
"Toggle zoom menu" : "Nagyítási menü be/ki",
"Adjust" : "Igazítás",
"Fine-tune" : "Finomhangolás",
"Filters" : "Szűrők",
"Watermark" : "Vízjel",
"Draw" : "Rajzolás",
"Resize" : "Átméretezés",
"Invalid image." : "Érvénytelen kép.",
"Error while uploading the image." : "Hiba történt a kép feltöltése során.",
"are not images" : "nem képek",
"is not an image" : "nem kép",
"to be uploaded" : "feltöltendő",
"Crop" : "Levágás",
"Original" : "Eredeti",
"Custom" : "Egyéni",
"Square" : "Négyzetes",
"Landscape" : "Fekvő",
"Portrait" : "Álló",
"Ellipse" : "Ellipszis",
"Classic TV" : "Klasszikus TV",
"CinemaScope" : "CinemaScope",
"Arrow" : "Nyíl",
"Blur" : "Elmosás",
"Brightness" : "Fényerő",
"Contrast" : "Kontraszt",
"Un-flip X" : "X-tengelyre tükrözés visszavonása",
"Flip X" : "X-tengelyre tükrözés",
"Un-flip Y" : "Y-tengelyre tükrözés visszavonása",
"Flip Y" : "Y-tengelyre tükrözés",
"HSV" : "HSV",
"Hue" : "Fényerő",
"Saturation" : "Telítettség",
"Value" : "Érték",
"Image" : "Kép",
"Importing …" : "Importálás…",
"+ Add image" : "+ Kép hozzáadása",
"Line" : "Vonal",
"Pen" : "Toll",
"Polygon" : "Sokszög",
"Sides" : "Oldalak",
"Rectangle" : "Téglalap",
"Corner Radius" : "Saroklekerekítés sugara",
"Width in pixels" : "Szélesség képpontokban",
"Height in pixels" : "Magasság képpontokban",
"Toggle ratio lock" : "Arányzárolás be/ki",
"Reset to original image size" : "Visszaállítás az eredeti képméretre",
"Rotate" : "Forgatás",
"Text" : "Szöveg",
"Text spacing" : "Szövegtávolság",
"Text alignment" : "Szöveg igazítása",
"Font family" : "Betűkészletcsalád",
"Size" : "Méret",
"Letter spacing" : "Betűköz",
"Line height" : "Sormagasság",
"Warmth" : "Melegség",
"+ Add watermark" : "+ Vízjel hozzáadása",
"Choose watermark type" : "Válasszon vízjeltípust",
"Upload watermark" : "Vízjel feltöltése",
"Add as text" : "Hozzáadás szövegként",
"Padding" : "Helykitöltés",
"Shadow" : "Árnyék",
"Horizontal" : "Vízszintes",
"Vertical" : "Függőleges",
"Opacity" : "Átlátszatlanság",
"Position" : "Pozíció",
"Stroke" : "Körberajzolás",
"Save image as" : "Kép mentése másként",
"Extension" : "Kiterjesztés",
"Name is required." : "A név kötelező.",
"Quality" : "Minőség",
"Saved image size (width x height)" : "Mentett kép mérete (szélesség×magasság)",
"Note that the selected crop area is lower than the applied resize which might cause quality decrease" : "Vegye figyelembe, hogy a kijelölt levágási terület kisebb mint az alkalmazott átméretezés, amely minőségcsökkenést okozhat",
"Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret",
"Auto" : "Automatikus",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "A(z) {currentAlbumName} átnevezése a következőre sikertelen: {newAlbumName}.",
"Failed to delete files." : "A fájlok törlése sikertelen.",

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