Merge branch 'master' into feat/recursive-folder

pull/260/head
Kevin Yeh 2023-01-05 09:51:16 -08:00
commit c42825daad
288 changed files with 11417 additions and 8246 deletions

View File

@ -2,6 +2,19 @@
This file is manually updated. Please file an issue if something is missing.
## v4.9.0, v3.9.0 (2022-12-08)
- **Important**: v4.9.0 comes with an optimization that greatly reduces CPU usage for preview serving. However, for best experience, the preview generator app is now **required** to be configured properly. Please install it from the app store.
- **Feature**: Slideshow for photos and videos ([#217](https://github.com/pulsejet/memories/issues/217))
- **Feature**: Support for GPU transcoding ([#194](https://github.com/pulsejet/memories/issues/194))
- **Feature**: Allow downloading entire albums
- **Feature**: Allow editing more EXIF fields ([#169](https://github.com/pulsejet/memories/issues/169))
- **Feature**: Alpha integration with the face recognition app ([#146](https://github.com/pulsejet/memories/issues/146))
- Fix downloading from albums ([#259](https://github.com/pulsejet/memories/issues/259))
- Fix support for HEVC live photos ([#234](https://github.com/pulsejet/memories/issues/234))
- Fix native photo sharing ([#254](https://github.com/pulsejet/memories/issues/254), [#263](https://github.com/pulsejet/memories/issues/263))
- Use larger previews in viewer (please see [these docs](https://github.com/pulsejet/memories/wiki/Configuration#preview-storage-considerations)) ([#226](https://github.com/pulsejet/memories/issues/226))
## v4.8.0, v3.8.0 (2022-11-22)
- **Feature**: Support for Live Photos ([#124](https://github.com/pulsejet/memories/issues/124))

View File

@ -7,7 +7,7 @@ exiftool:
sh scripts/get-exiftool.sh
php-cs-fixer:
mkdir --parents tools/php-cs-fixer
mkdir -p tools/php-cs-fixer
composer require --working-dir=tools/php-cs-fixer friendsofphp/php-cs-fixer
php-lint:

View File

@ -13,7 +13,7 @@ Memories is a _batteries-included_ photo management solution for Nextcloud with
- **📸 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.
- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).
- **🤖 AI Tagging**: Group photos by people and objects, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).
- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.
- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.
- **📱 Mobile Support**: Works on devices of any shape and size through the web app.

View File

@ -3,7 +3,7 @@
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>memories</id>
<name>Memories</name>
<summary>Yet another photo management app</summary>
<summary>Fast, modern and advanced photo management suite</summary>
<description><![CDATA[
# Memories
@ -11,7 +11,7 @@ Memories is a *batteries-included* photo management solution for Nextcloud with
- **📸 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.
- **🤖 AI Tagging**: Group photos by people and objects using AI, powered by [recognize](https://github.com/nextcloud/recognize).
- **🤖 AI Tagging**: Group photos by people and objects, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).
- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.
- **🫱🏻‍🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.
- **📱 Mobile Support**: Works on devices of any shape and size through the web app.
@ -33,7 +33,7 @@ Memories is a *batteries-included* photo management solution for Nextcloud with
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.8.2</version>
<version>4.9.3</version>
<licence>agpl</licence>
<author mail="radialapps@gmail.com" >Varun Patil</author>
<namespace>Memories</namespace>

View File

@ -23,7 +23,8 @@ return [
// Routes with params
w(['name' => 'Page#folder', 'url' => '/folders/{path}', 'verb' => 'GET'], 'path'),
w(['name' => 'Page#albums', 'url' => '/albums/{id}', 'verb' => 'GET'], 'id'),
w(['name' => 'Page#people', 'url' => '/people/{name}', 'verb' => 'GET'], 'name'),
w(['name' => 'Page#recognize', 'url' => '/recognize/{name}', 'verb' => 'GET'], 'name'),
w(['name' => 'Page#facerecognition', 'url' => '/facerecognition/{name}', 'verb' => 'GET'], 'name'),
w(['name' => 'Page#tags', 'url' => '/tags/{name}', 'verb' => 'GET'], 'name'),
// Public folder share
@ -44,23 +45,31 @@ return [
['name' => 'Days#day', 'url' => '/api/days/{id}', 'verb' => 'GET'],
['name' => 'Days#dayPost', 'url' => '/api/days', 'verb' => 'POST'],
['name' => 'Tags#tags', 'url' => '/api/tags', 'verb' => 'GET'],
['name' => 'Tags#previews', 'url' => '/api/tag-previews', 'verb' => 'GET'],
['name' => 'Albums#albums', 'url' => '/api/albums', 'verb' => 'GET'],
['name' => 'Albums#download', 'url' => '/api/albums/download', 'verb' => 'POST'],
['name' => 'Faces#faces', 'url' => '/api/faces', 'verb' => 'GET'],
['name' => 'Faces#preview', 'url' => '/api/faces/preview/{id}', 'verb' => 'GET'],
['name' => 'Tags#tags', 'url' => '/api/tags', 'verb' => 'GET'],
['name' => 'Tags#preview', 'url' => '/api/tags/preview/{tag}', 'verb' => 'GET'],
['name' => 'People#recognizePeople', 'url' => '/api/recognize/people', 'verb' => 'GET'],
['name' => 'People#recognizePeoplePreview', 'url' => '/api/recognize/people/preview/{id}', 'verb' => 'GET'],
['name' => 'People#facerecognitionPeople', 'url' => '/api/facerecognition/people', 'verb' => 'GET'],
['name' => 'People#facerecognitionPeoplePreview', 'url' => '/api/facerecognition/people/preview/{id}', 'verb' => 'GET'],
['name' => 'Archive#archive', 'url' => '/api/archive/{id}', 'verb' => 'PATCH'],
['name' => 'Image#preview', 'url' => '/api/image/preview/{id}', 'verb' => 'GET'],
['name' => 'Image#multipreview', 'url' => '/api/image/multipreview', 'verb' => 'POST'],
['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'],
['name' => 'Video#livephoto', 'url' => '/api/video/livephoto/{fileid}', 'verb' => 'GET'],
['name' => 'Download#request', 'url' => '/api/download', 'verb' => 'POST'],
['name' => 'Download#file', 'url' => '/api/download/{handle}', 'verb' => 'GET'],
// Config API
['name' => 'Other#setUserConfig', 'url' => '/api/config/{key}', 'verb' => 'PUT'],

View File

@ -12,6 +12,6 @@ test.describe("Open", () => {
test("Open folder", async ({ page }) => {
await page.locator("text=Local").click();
await page.waitForSelector('img[src*="core/preview"]');
await page.waitForSelector('img[src*="api/image/preview"]');
});
});

View File

@ -13,6 +13,6 @@ export function login(route: string) {
await expect(page).toHaveURL(
"http://localhost:8080/index.php/apps/memories" + route
);
await page.waitForSelector('img[src*="core/preview"]');
await page.waitForSelector('img[src*="api/image/preview"]');
};
}

View File

@ -6,7 +6,7 @@ test.beforeEach(login("/"));
test.describe("Open", () => {
test("Look for Images", async ({ page }) => {
expect(
await page.locator('img[src*="core/preview"]').count(),
await page.locator('img[src*="api/image/preview"]').count(),
"Number of previews"
).toBeGreaterThan(4);
await page.waitForTimeout(1000);
@ -50,7 +50,9 @@ test.describe("Open", () => {
// refresh page
await page.reload();
await page.waitForTimeout(4000); // cache
await page.waitForSelector('img[src*="core/preview"]');
await page.reload(); // prevent stale cache issues
await page.waitForTimeout(4000); // cache
await page.waitForSelector('img[src*="api/image/preview"]');
expect(await page.locator(`img[src="${src1}"]`).count()).toBe(0);
expect(await page.locator(`img[src="${src2}"]`).count()).toBe(0);
});

13
l10n/af.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Argief",
"Tags" : "Etikette",
"Maps" : "Kaarte",
"Unsaved changes" : "Onbewaarde veranderinge",
"Edit" : "Wysig",
"Loading …" : "Laai …",
"Cancel" : "Kanselleer",
@ -16,10 +15,6 @@ OC.L10N.register(
"Download" : "Laai af",
"Favorite" : "Gunsteling",
"View in folder" : "Vertoon in gids",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Public link" : "Openbare skakel",
"Back" : "Terug",
"Save" : "Bewaar",
@ -27,10 +22,18 @@ OC.L10N.register(
"Day" : "Dag",
"Time" : "Tyd",
"Hour" : "Uur",
"Title" : "Titel",
"Description" : "Beskrywing",
"Label" : "Etiket",
"Name" : "Naam",
"Update" : "Werk by",
"Refresh" : "Verfris",
"Remove" : "Verwyder",
"Unsaved changes" : "Onbewaarde veranderinge",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Reset" : "Herstel",
"Continue" : "Gaan voort",
"Original" : "Oorspronklik",

13
l10n/af.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Argief",
"Tags" : "Etikette",
"Maps" : "Kaarte",
"Unsaved changes" : "Onbewaarde veranderinge",
"Edit" : "Wysig",
"Loading …" : "Laai …",
"Cancel" : "Kanselleer",
@ -14,10 +13,6 @@
"Download" : "Laai af",
"Favorite" : "Gunsteling",
"View in folder" : "Vertoon in gids",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Public link" : "Openbare skakel",
"Back" : "Terug",
"Save" : "Bewaar",
@ -25,10 +20,18 @@
"Day" : "Dag",
"Time" : "Tyd",
"Hour" : "Uur",
"Title" : "Titel",
"Description" : "Beskrywing",
"Label" : "Etiket",
"Name" : "Naam",
"Update" : "Werk by",
"Refresh" : "Verfris",
"Remove" : "Verwyder",
"Unsaved changes" : "Onbewaarde veranderinge",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Reset" : "Herstel",
"Continue" : "Gaan voort",
"Original" : "Oorspronklik",

4
l10n/an.js vendored
View File

@ -8,10 +8,10 @@ OC.L10N.register(
"Delete" : "Borrar",
"Download" : "Escargar",
"Favorite" : "Favorito",
"Share" : "Compartir",
"Close" : "Zarrar",
"Back" : "Ta zaga",
"Name" : "Nombre",
"Share" : "Compartir",
"Close" : "Zarrar",
"Continue" : "Continar",
"Size" : "Grandaria"
},

4
l10n/an.json vendored
View File

@ -6,10 +6,10 @@
"Delete" : "Borrar",
"Download" : "Escargar",
"Favorite" : "Favorito",
"Share" : "Compartir",
"Close" : "Zarrar",
"Back" : "Ta zaga",
"Name" : "Nombre",
"Share" : "Compartir",
"Close" : "Zarrar",
"Continue" : "Continar",
"Size" : "Grandaria"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

13
l10n/ar.js vendored
View File

@ -16,10 +16,6 @@ OC.L10N.register(
"Download" : "تنزيل",
"Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Copy public link" : "نسخ الرابط العام",
"Back" : "العودة",
"Save" : "Save",
@ -27,10 +23,18 @@ OC.L10N.register(
"Day" : "اليوم",
"Time" : "إلى وقت",
"Hour" : "الساعة",
"Title" : "العنوان",
"Description" : "الوصف",
"Label" : "تسمية",
"Copyright" : "حقوق التأليف",
"Name" : "الاسم",
"Update" : "تحديث",
"Refresh" : "إنعاش",
"Remove" : "حذف",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Reset" : "إعادة الضبط",
"Continue" : "متابعة",
"Undo" : "تراجع",
@ -44,6 +48,7 @@ OC.L10N.register(
"Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة",
"Direct" : "مباشر",
"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;");

13
l10n/ar.json vendored
View File

@ -14,10 +14,6 @@
"Download" : "تنزيل",
"Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Copy public link" : "نسخ الرابط العام",
"Back" : "العودة",
"Save" : "Save",
@ -25,10 +21,18 @@
"Day" : "اليوم",
"Time" : "إلى وقت",
"Hour" : "الساعة",
"Title" : "العنوان",
"Description" : "الوصف",
"Label" : "تسمية",
"Copyright" : "حقوق التأليف",
"Name" : "الاسم",
"Update" : "تحديث",
"Refresh" : "إنعاش",
"Remove" : "حذف",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Reset" : "إعادة الضبط",
"Continue" : "متابعة",
"Undo" : "تراجع",
@ -42,6 +46,7 @@
"Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة",
"Direct" : "مباشر",
"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;"
}

12
l10n/ast.js vendored
View File

@ -15,20 +15,24 @@ OC.L10N.register(
"Download" : "Baxar",
"Favorite" : "Marcar como favoritu",
"View in folder" : "Ver na carpeta",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Títulu",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome",
"Update" : "Anovar",
"Refresh" : "Refrescar",
"Remove" : "Desaniciar",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Continue" : "Siguir",
"Undo" : "Desfacer",
"Custom" : "Personalizáu",

12
l10n/ast.json vendored
View File

@ -13,20 +13,24 @@
"Download" : "Baxar",
"Favorite" : "Marcar como favoritu",
"View in folder" : "Ver na carpeta",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Títulu",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome",
"Update" : "Anovar",
"Refresh" : "Refrescar",
"Remove" : "Desaniciar",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Continue" : "Siguir",
"Undo" : "Desfacer",
"Custom" : "Personalizáu",

10
l10n/az.js vendored
View File

@ -11,18 +11,20 @@ OC.L10N.register(
"Delete" : "Sil",
"Download" : "Yüklə",
"Favorite" : "İstəkli",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Save" : "Saxla",
"Month" : "Ay",
"Day" : "Gün",
"Time" : "Vaxt",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Name" : "Ad",
"Update" : "Yenilənmə",
"Refresh" : "Yenilə",
"Remove" : "Sil",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Reset" : "Sıfırla",
"Size" : "Həcm"
},

10
l10n/az.json vendored
View File

@ -9,18 +9,20 @@
"Delete" : "Sil",
"Download" : "Yüklə",
"Favorite" : "İstəkli",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Save" : "Saxla",
"Month" : "Ay",
"Day" : "Gün",
"Time" : "Vaxt",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Name" : "Ad",
"Update" : "Yenilənmə",
"Refresh" : "Yenilə",
"Remove" : "Sil",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Reset" : "Sıfırla",
"Size" : "Həcm"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

63
l10n/bg.js vendored

File diff suppressed because one or more lines are too long

63
l10n/bg.json vendored

File diff suppressed because one or more lines are too long

10
l10n/bn_BD.js vendored
View File

@ -10,20 +10,22 @@ OC.L10N.register(
"Delete" : "মুছে",
"Download" : "ডাউনলোড",
"Favorite" : "প্রিয়জন",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Back" : "পেছনে যাও",
"Save" : "সংরক্ষণ",
"Month" : "মাস",
"Day" : "দিবস",
"Time" : "সময়",
"Hour" : "ঘন্টা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Name" : "নাম",
"Update" : "পরিবর্ধন",
"Refresh" : "নবোদ্যম",
"Remove" : "অপসারণ",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Reset" : "পূণঃনির্ধানণ",
"Continue" : "চালিয়ে যাও",
"Size" : "আকার"

10
l10n/bn_BD.json vendored
View File

@ -8,20 +8,22 @@
"Delete" : "মুছে",
"Download" : "ডাউনলোড",
"Favorite" : "প্রিয়জন",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Back" : "পেছনে যাও",
"Save" : "সংরক্ষণ",
"Month" : "মাস",
"Day" : "দিবস",
"Time" : "সময়",
"Hour" : "ঘন্টা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Name" : "নাম",
"Update" : "পরিবর্ধন",
"Refresh" : "নবোদ্যম",
"Remove" : "অপসারণ",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Reset" : "পূণঃনির্ধানণ",
"Continue" : "চালিয়ে যাও",
"Size" : "আকার"

11
l10n/br.js vendored
View File

@ -5,7 +5,6 @@ OC.L10N.register(
"Favorites" : "Pennrolloù",
"Videos" : "Videoioù",
"Tags" : "Klavioù",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Edit" : "Cheñch",
"Loading …" : "O Kargañ ...",
"Cancel" : "Arrest",
@ -13,19 +12,23 @@ OC.L10N.register(
"Download" : "Pellgargañ",
"Favorite" : "Pennrollañ",
"View in folder" : "Diskwel en teuliad",
"Share" : "Rannan",
"Close" : "Seriñ",
"Next" : "Da heul",
"Copy public link" : "Eilañ al liamm foran",
"Public link" : "Liamm publik",
"Back" : "Distro",
"Save" : "Enrollañ",
"Month" : "Miz",
"Day" : "Deiz",
"Title" : "Titl",
"Description" : "Deskrivadur",
"Label" : "Tiketenn",
"Name" : "Anv",
"Update" : "Hizivaat",
"Refresh" : "Freskaat",
"Remove" : "Lemel",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Share" : "Rannan",
"Close" : "Seriñ",
"Next" : "Da heul",
"Continue" : "Kendec'hel",
"Original" : "Orin",
"Size" : "Ment"

11
l10n/br.json vendored
View File

@ -3,7 +3,6 @@
"Favorites" : "Pennrolloù",
"Videos" : "Videoioù",
"Tags" : "Klavioù",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Edit" : "Cheñch",
"Loading …" : "O Kargañ ...",
"Cancel" : "Arrest",
@ -11,19 +10,23 @@
"Download" : "Pellgargañ",
"Favorite" : "Pennrollañ",
"View in folder" : "Diskwel en teuliad",
"Share" : "Rannan",
"Close" : "Seriñ",
"Next" : "Da heul",
"Copy public link" : "Eilañ al liamm foran",
"Public link" : "Liamm publik",
"Back" : "Distro",
"Save" : "Enrollañ",
"Month" : "Miz",
"Day" : "Deiz",
"Title" : "Titl",
"Description" : "Deskrivadur",
"Label" : "Tiketenn",
"Name" : "Anv",
"Update" : "Hizivaat",
"Refresh" : "Freskaat",
"Remove" : "Lemel",
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
"Share" : "Rannan",
"Close" : "Seriñ",
"Next" : "Da heul",
"Continue" : "Kendec'hel",
"Original" : "Orin",
"Size" : "Ment"

12
l10n/bs.js vendored
View File

@ -8,15 +8,17 @@ OC.L10N.register(
"Delete" : "Obriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Title" : "Naslov",
"Description" : "Opis",
"Name" : "Ime",
"Update" : "Ažuriraj",
"Share" : "Podjeli",
"Close" : "Zatvori",
"Previous" : "Prethodno",
"Next" : "Sljedeće",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Name" : "Ime",
"Update" : "Ažuriraj",
"Continue" : "Nastavi",
"Size" : "Veličina"
},

12
l10n/bs.json vendored
View File

@ -6,15 +6,17 @@
"Delete" : "Obriši",
"Download" : "Preuzmi",
"Favorite" : "Favorit",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Title" : "Naslov",
"Description" : "Opis",
"Name" : "Ime",
"Update" : "Ažuriraj",
"Share" : "Podjeli",
"Close" : "Zatvori",
"Previous" : "Prethodno",
"Next" : "Sljedeće",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Name" : "Ime",
"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);"

33
l10n/ca.js vendored
View File

@ -2,19 +2,16 @@ OC.L10N.register(
"memories",
{
"Settings" : "Paràmetres",
"People" : "Gent",
"Timeline" : "Línia de temps",
"Folders" : "Carpetes",
"Favorites" : "Preferits",
"Videos" : "Vídeos",
"Albums" : "Àlbums",
"People" : "Gent",
"Archive" : "Arxiu",
"On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"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",
@ -23,12 +20,13 @@ OC.L10N.register(
"Favorite" : "Preferit",
"Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir",
"Close" : "Tanca",
"Previous" : "Anterior",
"Next" : "Següent",
"Add to album" : "Afegeix a l'àlbum",
"Delete the public link" : "Esborra l'enllaç públic",
"Public link copied!" : "S'ha copiat l'enllaç públic!",
"Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic",
"New album" : "Àlbum nou",
"Name of the album" : "Nom de l'àlbum",
"Back" : "Torna",
"Save" : "Desa",
"Year" : "Any",
@ -37,11 +35,25 @@ OC.L10N.register(
"Time" : "Hora",
"Hour" : "Hora",
"Minute" : "Minut",
"Title" : "Títol",
"Description" : "Descripció",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Remove person" : "Esborra la persona",
"Name" : "Cognom",
"Rename person" : "Reanomena la persona",
"Update" : "Actualitzar",
"Refresh" : "Actualitza",
"Remove" : "Elimina",
"Merge with different person" : "Fusiona amb una persona diferent",
"Share folder" : "Comparteix la carpeta",
"Error saving image" : "S'ha produït un error en desar la imatge",
"Unsaved changes" : "Canvis sense desar",
"Drop changes" : "Elimina els canvis",
"Share" : "Compartir",
"Close" : "Tanca",
"Previous" : "Anterior",
"Next" : "Següent",
"Save as" : "Anomena i desa",
"Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.",
@ -126,6 +138,9 @@ OC.L10N.register(
"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"
"Direct" : "Dirrecte",
"Auto" : "Automàtic",
"Failed to create {albumName}." : "No s'ha pogut crear {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "No s'ha pogut reanomenar {currentAlbumName} a {newAlbumName}."
},
"nplurals=2; plural=(n != 1);");

33
l10n/ca.json vendored
View File

@ -1,18 +1,15 @@
{ "translations": {
"Settings" : "Paràmetres",
"People" : "Gent",
"Timeline" : "Línia de temps",
"Folders" : "Carpetes",
"Favorites" : "Preferits",
"Videos" : "Vídeos",
"Albums" : "Àlbums",
"People" : "Gent",
"Archive" : "Arxiu",
"On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes",
"Maps" : "Mapes",
"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",
@ -21,12 +18,13 @@
"Favorite" : "Preferit",
"Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir",
"Close" : "Tanca",
"Previous" : "Anterior",
"Next" : "Següent",
"Add to album" : "Afegeix a l'àlbum",
"Delete the public link" : "Esborra l'enllaç públic",
"Public link copied!" : "S'ha copiat l'enllaç públic!",
"Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic",
"New album" : "Àlbum nou",
"Name of the album" : "Nom de l'àlbum",
"Back" : "Torna",
"Save" : "Desa",
"Year" : "Any",
@ -35,11 +33,25 @@
"Time" : "Hora",
"Hour" : "Hora",
"Minute" : "Minut",
"Title" : "Títol",
"Description" : "Descripció",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Remove person" : "Esborra la persona",
"Name" : "Cognom",
"Rename person" : "Reanomena la persona",
"Update" : "Actualitzar",
"Refresh" : "Actualitza",
"Remove" : "Elimina",
"Merge with different person" : "Fusiona amb una persona diferent",
"Share folder" : "Comparteix la carpeta",
"Error saving image" : "S'ha produït un error en desar la imatge",
"Unsaved changes" : "Canvis sense desar",
"Drop changes" : "Elimina els canvis",
"Share" : "Compartir",
"Close" : "Tanca",
"Previous" : "Anterior",
"Next" : "Següent",
"Save as" : "Anomena i desa",
"Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.",
@ -124,6 +136,9 @@
"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"
"Direct" : "Dirrecte",
"Auto" : "Automàtic",
"Failed to create {albumName}." : "No s'ha pogut crear {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "No s'ha pogut reanomenar {currentAlbumName} a {newAlbumName}."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

63
l10n/cs.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories",
{
"Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek",
"# 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.",
"Fast, modern and advanced photo management suite" : "Rychlá, moderní sada pro správu fotek s pokročilými funkcemi",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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) a and [Rozpoznávání obličejů](https://github.com/matiasdelellis/facerecognition).\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í",
"People (Recognize)" : "Lidé (rozpoznání)",
"People" : "Lidé",
"People (Face Recognition)" : "Lidé (rozpoznání obličejů)",
"EXIF" : "EXIF",
"Timeline" : "Časová osa",
"Folders" : "Složky",
"Favorites" : "Oblíbené",
"Videos" : "Videa",
"Albums" : "Alba",
"People" : "Lidé",
"Archive" : "Archiv",
"On this day" : "V tento den",
"Tags" : "Štítky",
"Maps" : "Mapy",
"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,14 +27,10 @@ OC.L10N.register(
"You can always change this later in settings" : "Toto je možné kdykoli později změnit v nastavení",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Nalezena {n} položka v {path}","Nalezeny {n} položky v {path}","Nalezeno {n} položek v {path}","Nalezeny {n} položky v {path}"],
"Edit" : "Upravit",
"No title" : "Bez nadpisu",
"No description" : "Bez popisu",
"Loading …" : "Načítání…",
"Cancel" : "Storno",
"Delete" : "Smazat",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Přidat do oblíbených",
"Unarchive" : "Zrušit archivování",
"Edit Date/Time" : "Upravit datum/čas",
"Edit EXIF Data" : "Upravit EXIF data",
"View in folder" : "Zobrazit ve složce",
"Add to album" : "Přidat do alba",
"Move to another person" : "Přesunout k jiné osobě",
@ -48,7 +47,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Chystáte se stahovat si velký počet souborů. Opravdu to chcete?",
"You are about to delete a large number of files. Are you sure?" : "Chystáte se smazat velké množství souborů. Opravdu to chcete?",
"You are about to touch a large number of files. Are you sure?" : "Chystáte se změnit velké množství souborů. Opravdu to chcete?",
"Could not remove photos from album" : "Nedaří se odebrat fotky z alba",
"_{n} selected_::_{n} selected_" : ["{n} vybráno","{n} vybrány","{n} vybráno","{n} vybrány"],
"Timeline Path" : "Popis umístění časové osy",
"Folders Path" : "Popis umístění složek",
@ -57,17 +55,11 @@ OC.L10N.register(
"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",
"You will find your friends soon. Please, be patient." : "Brzy naleznete své přátele. Prosím buďte trpěliví.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Rozpoznávání obličejů je vypnuté. Pokud chcete vyhledat své přátele, zapněte ho v nastavení.",
"Failed to load some photos" : "Některé fotky se nepodařilo načíst",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Download Video" : "Stáhnout si video",
"Close" : "Zavřít",
"Previous" : "Předchozí",
"Next" : "Další",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} položka přidána do alba","{n} položky přidány do alba","{n} položek přidáno do alba","{n} položky přidány do alba"],
"Search for collaborators" : "Vyhledat spolupracující",
"Search people or groups" : "Hledat uživatele nebo skupiny",
"Add {collaboratorLabel} to the collaborators list" : "Přidat {collaboratorLabel} na seznam spolupracujících",
@ -113,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Aktualizovat Exif",
"Newest" : "Nejnovější",
"Oldest" : "Nejstarší",
"This feature modifies files in your storage to update Exif data." : "Tato funkce mění soubory na vašem úložišti kvůli aktualizaci Exif metadat.",
"Exercise caution and make sure you have backups." : "Buďte opatrní a ujistěte se, že máte zálohy.",
"Loading data … {n}/{m}" : "Načítání dat… {n}/{m}",
"Title" : "Nadpis",
"Description" : "Popis",
"Date Taken" : "Datum pořízení",
"Label" : "Štítek",
"Camera Make" : "Výrobce fotoaparátu",
"Camera Model" : "Model fotoaparátu",
"Lens" : "Objektiv",
"Copyright" : "Autorská práva",
"Remove person" : "Odebrat osobu",
"Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?",
"Name" : "Název",
@ -138,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album",
"Download album" : "Stáhnout si album",
"Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou",
"Mark person in preview" : "Označovat osobu v náhledu",
"Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava",
"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",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Download Video" : "Stáhnout si video",
"Slideshow" : "Promítání",
"Close" : "Zavřít",
"Previous" : "Předchozí",
"Next" : "Další",
"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",
"Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.",
@ -229,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.",
"Direct" : "Přímo",
"Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
@ -237,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Chyba: {msg}",
"Failed to delete files." : "Nepodařilo se smazat soubory.",
"Failed to delete {fileName}." : "Nepodařilo se smazat {fileName}.",
"Failed to download some files." : "Některé soubory se nepodařilo stáhnout.",
"Failed to download files" : "Soubory se nepodařilo stáhnout",
"Failed to favorite files." : "Nepodařilo se přidat soubory mezi oblíbené.",
"Failed to favorite some files." : "Některé soubory se nepodařilo označit jako oblíbené",
"Failed to favorite {fileName}." : "Nepodařilo se přidat {fileName} do oblíbených."

63
l10n/cs.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": {
"Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek",
"# 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.",
"Fast, modern and advanced photo management suite" : "Rychlá, moderní sada pro správu fotek s pokročilými funkcemi",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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) a and [Rozpoznávání obličejů](https://github.com/matiasdelellis/facerecognition).\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í",
"People (Recognize)" : "Lidé (rozpoznání)",
"People" : "Lidé",
"People (Face Recognition)" : "Lidé (rozpoznání obličejů)",
"EXIF" : "EXIF",
"Timeline" : "Časová osa",
"Folders" : "Složky",
"Favorites" : "Oblíbené",
"Videos" : "Videa",
"Albums" : "Alba",
"People" : "Lidé",
"Archive" : "Archiv",
"On this day" : "V tento den",
"Tags" : "Štítky",
"Maps" : "Mapy",
"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,14 +25,10 @@
"You can always change this later in settings" : "Toto je možné kdykoli později změnit v nastavení",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Nalezena {n} položka v {path}","Nalezeny {n} položky v {path}","Nalezeno {n} položek v {path}","Nalezeny {n} položky v {path}"],
"Edit" : "Upravit",
"No title" : "Bez nadpisu",
"No description" : "Bez popisu",
"Loading …" : "Načítání…",
"Cancel" : "Storno",
"Delete" : "Smazat",
@ -39,6 +37,7 @@
"Favorite" : "Přidat do oblíbených",
"Unarchive" : "Zrušit archivování",
"Edit Date/Time" : "Upravit datum/čas",
"Edit EXIF Data" : "Upravit EXIF data",
"View in folder" : "Zobrazit ve složce",
"Add to album" : "Přidat do alba",
"Move to another person" : "Přesunout k jiné osobě",
@ -46,7 +45,6 @@
"You are about to download a large number of files. Are you sure?" : "Chystáte se stahovat si velký počet souborů. Opravdu to chcete?",
"You are about to delete a large number of files. Are you sure?" : "Chystáte se smazat velké množství souborů. Opravdu to chcete?",
"You are about to touch a large number of files. Are you sure?" : "Chystáte se změnit velké množství souborů. Opravdu to chcete?",
"Could not remove photos from album" : "Nedaří se odebrat fotky z alba",
"_{n} selected_::_{n} selected_" : ["{n} vybráno","{n} vybrány","{n} vybráno","{n} vybrány"],
"Timeline Path" : "Popis umístění časové osy",
"Folders Path" : "Popis umístění složek",
@ -55,17 +53,11 @@
"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",
"You will find your friends soon. Please, be patient." : "Brzy naleznete své přátele. Prosím buďte trpěliví.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Rozpoznávání obličejů je vypnuté. Pokud chcete vyhledat své přátele, zapněte ho v nastavení.",
"Failed to load some photos" : "Některé fotky se nepodařilo načíst",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Download Video" : "Stáhnout si video",
"Close" : "Zavřít",
"Previous" : "Předchozí",
"Next" : "Další",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} položka přidána do alba","{n} položky přidány do alba","{n} položek přidáno do alba","{n} položky přidány do alba"],
"Search for collaborators" : "Vyhledat spolupracující",
"Search people or groups" : "Hledat uživatele nebo skupiny",
"Add {collaboratorLabel} to the collaborators list" : "Přidat {collaboratorLabel} na seznam spolupracujících",
@ -111,9 +103,15 @@
"Update Exif" : "Aktualizovat Exif",
"Newest" : "Nejnovější",
"Oldest" : "Nejstarší",
"This feature modifies files in your storage to update Exif data." : "Tato funkce mění soubory na vašem úložišti kvůli aktualizaci Exif metadat.",
"Exercise caution and make sure you have backups." : "Buďte opatrní a ujistěte se, že máte zálohy.",
"Loading data … {n}/{m}" : "Načítání dat… {n}/{m}",
"Title" : "Nadpis",
"Description" : "Popis",
"Date Taken" : "Datum pořízení",
"Label" : "Štítek",
"Camera Make" : "Výrobce fotoaparátu",
"Camera Model" : "Model fotoaparátu",
"Lens" : "Objektiv",
"Copyright" : "Autorská práva",
"Remove person" : "Odebrat osobu",
"Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?",
"Name" : "Název",
@ -136,12 +134,28 @@
"Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album",
"Download album" : "Stáhnout si album",
"Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou",
"Mark person in preview" : "Označovat osobu v náhledu",
"Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava",
"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",
"Share" : "Sdílet",
"Sidebar" : "Postranní panel",
"Download Video" : "Stáhnout si video",
"Slideshow" : "Promítání",
"Close" : "Zavřít",
"Previous" : "Předchozí",
"Next" : "Další",
"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",
"Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.",
"Direct" : "Přímo",
"Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
@ -235,7 +250,7 @@
"Error: {msg}" : "Chyba: {msg}",
"Failed to delete files." : "Nepodařilo se smazat soubory.",
"Failed to delete {fileName}." : "Nepodařilo se smazat {fileName}.",
"Failed to download some files." : "Některé soubory se nepodařilo stáhnout.",
"Failed to download files" : "Soubory se nepodařilo stáhnout",
"Failed to favorite files." : "Nepodařilo se přidat soubory mezi oblíbené.",
"Failed to favorite some files." : "Některé soubory se nepodařilo označit jako oblíbené",
"Failed to favorite {fileName}." : "Nepodařilo se přidat {fileName} do oblíbených."

10
l10n/cy_GB.js vendored
View File

@ -12,10 +12,6 @@ OC.L10N.register(
"Delete" : "Dileu",
"Download" : "Llwytho i lawr",
"Favorite" : "Ffefryn",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Copy public link" : "Copïo dolen gyhoeddus",
"Back" : "Nôl",
"Save" : "Cadw",
@ -23,10 +19,16 @@ OC.L10N.register(
"Month" : "Mis",
"Day" : "Diwrnod",
"Time" : "Amser",
"Title" : "Teitl",
"Description" : "Disgrifiad",
"Name" : "Enw",
"Update" : "Diweddaru",
"Refresh" : "Ail-lwytho",
"Remove" : "Gwaredu",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Undo" : "Dadwneud",
"Custom" : "Cyfaddas",
"Size" : "Maint",

10
l10n/cy_GB.json vendored
View File

@ -10,10 +10,6 @@
"Delete" : "Dileu",
"Download" : "Llwytho i lawr",
"Favorite" : "Ffefryn",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Copy public link" : "Copïo dolen gyhoeddus",
"Back" : "Nôl",
"Save" : "Cadw",
@ -21,10 +17,16 @@
"Month" : "Mis",
"Day" : "Diwrnod",
"Time" : "Amser",
"Title" : "Teitl",
"Description" : "Disgrifiad",
"Name" : "Enw",
"Update" : "Diweddaru",
"Refresh" : "Ail-lwytho",
"Remove" : "Gwaredu",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Undo" : "Dadwneud",
"Custom" : "Cyfaddas",
"Size" : "Maint",

19
l10n/da.js vendored
View File

@ -2,19 +2,17 @@ OC.L10N.register(
"memories",
{
"Memories" : "Minder",
"Yet another photo management app" : "Endnu en fotostyringsapp",
"Settings" : "Indstillinger",
"People" : "Personer",
"Timeline" : "Tidslinje",
"Folders" : "Mapper",
"Favorites" : "Favoritter",
"Videos" : "Videoer",
"Albums" : "Album",
"People" : "Personer",
"Archive" : "Arkivér",
"On this day" : "På denne dag",
"Tags" : "Mærker",
"Maps" : "Kort",
"Unsaved changes" : "Ikke gemte ændringer",
"Edit" : "Redigér",
"Loading …" : "Loading …",
"Cancel" : "Annuller",
@ -28,10 +26,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",
"Close" : "Luk",
"Previous" : "Tidligere",
"Next" : "Næste",
"Public link copied!" : "Offentlig link kopieret!",
"Copy public link" : "Kopier offentligt link",
"Public link" : "Offentligt link",
"New album" : "Nyt album",
@ -51,15 +46,25 @@ OC.L10N.register(
"Day" : "Dag",
"Time" : "Tid",
"Hour" : "Time",
"Title" : "Titel",
"Description" : "Beskrivelse",
"Label" : "Mærkat",
"Copyright" : "Ophavsret",
"Name" : "Navn",
"Update" : "Opdater",
"Refresh" : "Opdater",
"Remove" : "Fjern",
"Share folder" : "Del mappe",
"Unsaved changes" : "Ikke gemte ændringer",
"Share" : "Del",
"Close" : "Luk",
"Previous" : "Tidligere",
"Next" : "Næste",
"Reset" : "Nulstil",
"Continue" : "Fortsæt",
"Undo" : "Fortryd",
"Redo" : "Annullér fortryd",
"Zoom in" : "Zoom ind",
"Original" : "Original",
"Custom" : "Valgfrit",
"Value" : "Værdi",

19
l10n/da.json vendored
View File

@ -1,18 +1,16 @@
{ "translations": {
"Memories" : "Minder",
"Yet another photo management app" : "Endnu en fotostyringsapp",
"Settings" : "Indstillinger",
"People" : "Personer",
"Timeline" : "Tidslinje",
"Folders" : "Mapper",
"Favorites" : "Favoritter",
"Videos" : "Videoer",
"Albums" : "Album",
"People" : "Personer",
"Archive" : "Arkivér",
"On this day" : "På denne dag",
"Tags" : "Mærker",
"Maps" : "Kort",
"Unsaved changes" : "Ikke gemte ændringer",
"Edit" : "Redigér",
"Loading …" : "Loading …",
"Cancel" : "Annuller",
@ -26,10 +24,7 @@
"Timeline Path" : "Tidslinjesti",
"Show hidden folders" : "Vis skjulte mapper",
"Failed to load some photos" : "Kunne ikke indlæse nogle billeder",
"Share" : "Del",
"Close" : "Luk",
"Previous" : "Tidligere",
"Next" : "Næste",
"Public link copied!" : "Offentlig link kopieret!",
"Copy public link" : "Kopier offentligt link",
"Public link" : "Offentligt link",
"New album" : "Nyt album",
@ -49,15 +44,25 @@
"Day" : "Dag",
"Time" : "Tid",
"Hour" : "Time",
"Title" : "Titel",
"Description" : "Beskrivelse",
"Label" : "Mærkat",
"Copyright" : "Ophavsret",
"Name" : "Navn",
"Update" : "Opdater",
"Refresh" : "Opdater",
"Remove" : "Fjern",
"Share folder" : "Del mappe",
"Unsaved changes" : "Ikke gemte ændringer",
"Share" : "Del",
"Close" : "Luk",
"Previous" : "Tidligere",
"Next" : "Næste",
"Reset" : "Nulstil",
"Continue" : "Fortsæt",
"Undo" : "Fortryd",
"Redo" : "Annullér fortryd",
"Zoom in" : "Zoom ind",
"Original" : "Original",
"Custom" : "Valgfrit",
"Value" : "Værdi",

60
l10n/de.js vendored
View File

@ -2,20 +2,20 @@ OC.L10N.register(
"memories",
{
"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.",
"Fast, modern and advanced photo management suite" : "Schnelle, moderne und fortschrittliche Fotoverwaltungssuite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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, unterstützt von den Apps [Recognize](https://github.com/nextcloud/recognize) und [Facerecognition](https://github.com/matiasdelellis/facerecognition).\n\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",
"People" : "Personen",
"EXIF" : "EXIF",
"Timeline" : "Verlauf",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"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:",
@ -25,14 +25,10 @@ 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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto in {path} gefunden","{n} Fotos in {path} gefunden "],
"Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
@ -41,6 +37,7 @@ OC.L10N.register(
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben",
@ -48,7 +45,6 @@ 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",
@ -57,16 +53,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Wähle Pfade der Zeitachse",
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste",
"You will find your friends soon. Please, be patient." : "Du wirst bals deine Freunde finden. Bitte habe etwas Geduld.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Die Gesichtserkennung ist deaktiviert. Aktiviere sie in den Einstellungen, um deine Freunde zu finden.",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Close" : "Schließen",
"Previous" : "Vorherige",
"Next" : "Nächste",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} Elment zum Album hinzugefügt","{n} Elmente 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",
@ -112,9 +103,15 @@ OC.L10N.register(
"Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste",
"Oldest" : "Älteste",
"This feature modifies files in your storage to update Exif data." : "Diese Funktion ändert Dateien in deinem Speicher, um Exif-Daten zu aktualisieren.",
"Exercise caution and make sure you have backups." : "Sei vorsichtig und stelle sicher, dass du Backups hast.",
"Loading data … {n}/{m}" : "Lade … {n}/{m}",
"Title" : "Titel",
"Description" : "Beschreibung",
"Date Taken" : "Aufnahmedatum",
"Label" : "Beschriftung",
"Camera Make" : "Kameramarke",
"Camera Model" : "Kameramodell",
"Lens" : "Linse",
"Copyright" : "Uhrheberrecht",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
@ -137,12 +134,28 @@ OC.L10N.register(
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu",
"Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"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",
"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",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Slideshow" : "Diashow",
"Close" : "Schließen",
"Previous" : "Vorherige",
"Next" : "Nächste",
"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",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -228,6 +241,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen",
"Direct" : "Direkt",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -236,7 +250,7 @@ OC.L10N.register(
"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 download files" : "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."

60
l10n/de.json vendored
View File

@ -1,19 +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.",
"Fast, modern and advanced photo management suite" : "Schnelle, moderne und fortschrittliche Fotoverwaltungssuite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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, unterstützt von den Apps [Recognize](https://github.com/nextcloud/recognize) und [Facerecognition](https://github.com/matiasdelellis/facerecognition).\n\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",
"People" : "Personen",
"EXIF" : "EXIF",
"Timeline" : "Verlauf",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"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:",
@ -23,14 +23,10 @@
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto in {path} gefunden","{n} Fotos in {path} gefunden "],
"Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
@ -39,6 +35,7 @@
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben",
@ -46,7 +43,6 @@
"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",
@ -55,16 +51,11 @@
"Choose Timeline Paths" : "Wähle Pfade der Zeitachse",
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste",
"You will find your friends soon. Please, be patient." : "Du wirst bals deine Freunde finden. Bitte habe etwas Geduld.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Die Gesichtserkennung ist deaktiviert. Aktiviere sie in den Einstellungen, um deine Freunde zu finden.",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Close" : "Schließen",
"Previous" : "Vorherige",
"Next" : "Nächste",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} Elment zum Album hinzugefügt","{n} Elmente 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",
@ -110,9 +101,15 @@
"Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste",
"Oldest" : "Älteste",
"This feature modifies files in your storage to update Exif data." : "Diese Funktion ändert Dateien in deinem Speicher, um Exif-Daten zu aktualisieren.",
"Exercise caution and make sure you have backups." : "Sei vorsichtig und stelle sicher, dass du Backups hast.",
"Loading data … {n}/{m}" : "Lade … {n}/{m}",
"Title" : "Titel",
"Description" : "Beschreibung",
"Date Taken" : "Aufnahmedatum",
"Label" : "Beschriftung",
"Camera Make" : "Kameramarke",
"Camera Model" : "Kameramodell",
"Lens" : "Linse",
"Copyright" : "Uhrheberrecht",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
@ -135,12 +132,28 @@
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu",
"Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"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",
"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",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Slideshow" : "Diashow",
"Close" : "Schließen",
"Previous" : "Vorherige",
"Next" : "Nächste",
"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",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -226,6 +239,7 @@
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen",
"Direct" : "Direkt",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -234,7 +248,7 @@
"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 download files" : "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."

63
l10n/de_DE.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories",
{
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App",
"# 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.",
"Fast, modern and advanced photo management suite" : "Schnelle, moderne und fortschrittliche Fotoverwaltungssuite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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- **🤖 AI-Tagging**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von [Erkennung](https://github.com/nextcloud/recognize) und Gesichtserkennung](https://github.com/matiasdelellis/facerecognition).\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",
"People (Recognize)" : "Personen (erkennen)",
"People" : "Personen",
"People (Face Recognition)" : "Personen (Gesichtserkennung)",
"EXIF" : "EXIF",
"Timeline" : "Zeitleiste",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"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,14 +27,10 @@ OC.L10N.register(
"You can always change this later in settings" : "Sie können das auch noch später in den Einstellungen ändern",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto gefunden in {path}","{n} Fotos gefunden in {path}"],
"Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben",
@ -48,7 +47,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Sie sind dabei, eine große Anzahl an Dateien herunterzuladen. Sind Sie sich sicher?",
"You are about to delete a large number of files. Are you sure?" : "Sie sind dabei, eine große Anzahl an Dateien zu löschen. Sind Sie sich sicher?",
"You are about to touch a large number of files. Are you sure?" : "Sie sind im Begriff, eine große Anzahl von Dateien zu ändern. Sind Sie sich 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 Zeitleiste",
"Folders Path" : "Ordnerpfad",
@ -57,17 +55,11 @@ OC.L10N.register(
"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",
"You will find your friends soon. Please, be patient." : "Sie werden Ihre Freunde bald finden. Bitte haben Sie Geduld.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Die Gesichtserkennung ist deaktiviert. Aktivieren Sie sie in den Einstellungen, um Ihre Freunde zu finden.",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Close" : "Schließen",
"Previous" : "Zurück",
"Next" : "Nächste",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} Element zum Album hinzugefügt","{n} Elmente zum Album hinzugefügt"],
"Search for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Suchen nach Personen oder Gruppen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -113,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste",
"Oldest" : "Älteste",
"This feature modifies files in your storage to update Exif data." : "Diese Funktion ändert Dateien in Ihrem Speicher, um Exif-Daten zu aktualisieren.",
"Exercise caution and make sure you have backups." : "Seien Sie vorsichtig und stellen Sie sicher, dass Sie Backups haben.",
"Loading data … {n}/{m}" : "Daten werden geladen… {n}/{m}",
"Title" : "Titel",
"Description" : "Beschreibung",
"Date Taken" : "Aufnahmedatum",
"Label" : "Beschriftung",
"Camera Make" : "Kameramarke",
"Camera Model" : "Kameramodell",
"Lens" : "Linse",
"Copyright" : "Urheberrecht",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
@ -138,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"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",
"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",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Slideshow" : "Diashow",
"Close" : "Schließen",
"Previous" : "Zurück",
"Next" : "Nächste",
"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",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -229,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Direct" : "Direkt",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -237,7 +252,7 @@ OC.L10N.register(
"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 download files" : "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."

63
l10n/de_DE.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": {
"Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App",
"# 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.",
"Fast, modern and advanced photo management suite" : "Schnelle, moderne und fortschrittliche Fotoverwaltungssuite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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- **🤖 AI-Tagging**: Gruppieren Sie Fotos nach Personen und Objekten mithilfe von [Erkennung](https://github.com/nextcloud/recognize) und Gesichtserkennung](https://github.com/matiasdelellis/facerecognition).\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",
"People (Recognize)" : "Personen (erkennen)",
"People" : "Personen",
"People (Face Recognition)" : "Personen (Gesichtserkennung)",
"EXIF" : "EXIF",
"Timeline" : "Zeitleiste",
"Folders" : "Ordner",
"Favorites" : "Favoriten",
"Videos" : "Videos",
"Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv",
"On this day" : "An diesem Tag",
"Tags" : "Schlagworte",
"Maps" : "Karten",
"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,14 +25,10 @@
"You can always change this later in settings" : "Sie können das auch noch später in den Einstellungen ändern",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto gefunden in {path}","{n} Fotos gefunden in {path}"],
"Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …",
"Cancel" : "Abbrechen",
"Delete" : "Löschen",
@ -39,6 +37,7 @@
"Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben",
@ -46,7 +45,6 @@
"You are about to download a large number of files. Are you sure?" : "Sie sind dabei, eine große Anzahl an Dateien herunterzuladen. Sind Sie sich sicher?",
"You are about to delete a large number of files. Are you sure?" : "Sie sind dabei, eine große Anzahl an Dateien zu löschen. Sind Sie sich sicher?",
"You are about to touch a large number of files. Are you sure?" : "Sie sind im Begriff, eine große Anzahl von Dateien zu ändern. Sind Sie sich 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 Zeitleiste",
"Folders Path" : "Ordnerpfad",
@ -55,17 +53,11 @@
"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",
"You will find your friends soon. Please, be patient." : "Sie werden Ihre Freunde bald finden. Bitte haben Sie Geduld.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Die Gesichtserkennung ist deaktiviert. Aktivieren Sie sie in den Einstellungen, um Ihre Freunde zu finden.",
"Failed to load some photos" : "Laden einiger Fotos fehlgeschlagen",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Close" : "Schließen",
"Previous" : "Zurück",
"Next" : "Nächste",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} Element zum Album hinzugefügt","{n} Elmente zum Album hinzugefügt"],
"Search for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Suchen nach Personen oder Gruppen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -111,9 +103,15 @@
"Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste",
"Oldest" : "Älteste",
"This feature modifies files in your storage to update Exif data." : "Diese Funktion ändert Dateien in Ihrem Speicher, um Exif-Daten zu aktualisieren.",
"Exercise caution and make sure you have backups." : "Seien Sie vorsichtig und stellen Sie sicher, dass Sie Backups haben.",
"Loading data … {n}/{m}" : "Daten werden geladen… {n}/{m}",
"Title" : "Titel",
"Description" : "Beschreibung",
"Date Taken" : "Aufnahmedatum",
"Label" : "Beschriftung",
"Camera Make" : "Kameramarke",
"Camera Model" : "Kameramodell",
"Lens" : "Linse",
"Copyright" : "Urheberrecht",
"Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name",
@ -136,12 +134,28 @@
"Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"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",
"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",
"Share" : "Teilen",
"Sidebar" : "Seitenleiste",
"Download Video" : "Video herunterladen",
"Slideshow" : "Diashow",
"Close" : "Schließen",
"Previous" : "Zurück",
"Next" : "Nächste",
"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",
"Save as" : "Speichern als",
"Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Direct" : "Direkt",
"Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -235,7 +250,7 @@
"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 download files" : "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."

19
l10n/el.js vendored
View File

@ -2,17 +2,16 @@ OC.L10N.register(
"memories",
{
"Settings" : "Ρυθμίσεις",
"People" : "Άτομα",
"Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα",
"Videos" : "Βίντεο",
"Albums" : "Άλμπουμ",
"People" : "Άτομα",
"Archive" : "Αρχειοθέτηση",
"On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες",
"Maps" : "Χάρτες",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση",
@ -22,10 +21,7 @@ OC.L10N.register(
"Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο",
"Add to album" : "Προσθήκη στο άλμπουμ",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"No collaborators available" : "Δεν υπάρχουν διαθέσιμοι συνεργάτες",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος",
"New album" : "Νέο άλμπουμ",
@ -42,6 +38,10 @@ OC.L10N.register(
"Time" : "Ώρα",
"Hour" : "Ώρα",
"Minute" : "Λεπτά",
"Title" : "Τίτλος",
"Description" : "Περιγραφή",
"Label" : "Ετικέτα",
"Copyright" : "Δικαιώματα",
"Name" : "Όνομα",
"Rename person" : "Μετονομασία ατόμου",
"Update" : "Ενημέρωση",
@ -49,6 +49,11 @@ OC.L10N.register(
"Remove" : "Αφαίρεση",
"Delete album" : "Διαγραφή άλμπουμ",
"Share folder" : "Διαμοιρασμός φακέλου",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας",
@ -58,12 +63,14 @@ OC.L10N.register(
"Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή",
"Image" : "Εικόνα",
"Line" : "Γραμμή",
"Text" : "Κείμενο",
"Size" : "Μέγεθος",
"Position" : "Θέση",
"Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα",
"Direct" : "Άμεσα",
"Auto" : "Αυτόματα",
"Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Απέτυχε η μετονομασία του {currentAlbumName} σε {newAlbumName}.",

19
l10n/el.json vendored
View File

@ -1,16 +1,15 @@
{ "translations": {
"Settings" : "Ρυθμίσεις",
"People" : "Άτομα",
"Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα",
"Videos" : "Βίντεο",
"Albums" : "Άλμπουμ",
"People" : "Άτομα",
"Archive" : "Αρχειοθέτηση",
"On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες",
"Maps" : "Χάρτες",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση",
@ -20,10 +19,7 @@
"Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο",
"Add to album" : "Προσθήκη στο άλμπουμ",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"No collaborators available" : "Δεν υπάρχουν διαθέσιμοι συνεργάτες",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος",
"New album" : "Νέο άλμπουμ",
@ -40,6 +36,10 @@
"Time" : "Ώρα",
"Hour" : "Ώρα",
"Minute" : "Λεπτά",
"Title" : "Τίτλος",
"Description" : "Περιγραφή",
"Label" : "Ετικέτα",
"Copyright" : "Δικαιώματα",
"Name" : "Όνομα",
"Rename person" : "Μετονομασία ατόμου",
"Update" : "Ενημέρωση",
@ -47,6 +47,11 @@
"Remove" : "Αφαίρεση",
"Delete album" : "Διαγραφή άλμπουμ",
"Share folder" : "Διαμοιρασμός φακέλου",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας",
@ -56,12 +61,14 @@
"Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή",
"Image" : "Εικόνα",
"Line" : "Γραμμή",
"Text" : "Κείμενο",
"Size" : "Μέγεθος",
"Position" : "Θέση",
"Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα",
"Direct" : "Άμεσα",
"Auto" : "Αυτόματα",
"Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Απέτυχε η μετονομασία του {currentAlbumName} σε {newAlbumName}.",

62
l10n/en_GB.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories",
{
"Memories" : "Memories",
"Yet another photo management app" : "Yet another photo management app",
"# 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 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.",
"Fast, modern and advanced photo management suite" : "Fast, modern and advanced photo management suite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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 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, powered by [recognise](https://github.com/nextcloud/recognise) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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.",
"Settings" : "Settings",
"People (Recognize)" : "People (Recognise)",
"People" : "People",
"People (Face Recognition)" : "People (Face Recognition)",
"EXIF" : "EXIF",
"Timeline" : "Timeline",
"Folders" : "Folders",
"Favorites" : "Favourites",
"Videos" : "Videos",
"Albums" : "Albums",
"People" : "People",
"Archive" : "Archive",
"On this day" : "On this day",
"Tags" : "Tags",
"Maps" : "Maps",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "A better photos experience awaits you",
"Choose the root folder of your timeline to begin" : "Choose the root folder of your timeline to begin",
"If you just installed Memories, run:" : "If you just installed Memories, run:",
@ -25,14 +27,10 @@ OC.L10N.register(
"You can always change this later in settings" : "You can always change this later in settings",
"Choose the root of your timeline" : "Choose the root of your timeline",
"The selected folder does not seem to be valid. Try again." : "The selected folder does not seem to be valid. Try again.",
"Found {total} photos in {path}" : "Found {total} photos in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Failed to get Exif data. Metadata may be lost!",
"No Exif data found! Continue?" : "No Exif data found! Continue?",
"Image saved successfully" : "Image saved successfully",
"Error saving image" : "Error saving image",
"Unsaved changes" : "Unsaved changes",
"Drop changes" : "Drop changes",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Found {n} item in {path}","Found {n} items in {path}"],
"Edit" : "Edit",
"No title" : "No title",
"No description" : "No description",
"Loading …" : "Loading …",
"Cancel" : "Cancel",
"Delete" : "Delete",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Favourite",
"Unarchive" : "Unarchive",
"Edit Date/Time" : "Edit Date/Time",
"Edit EXIF Data" : "Edit EXIF Data",
"View in folder" : "View in folder",
"Add to album" : "Add to album",
"Move to another person" : "Move to another person",
@ -48,7 +47,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "You are about to download a large number of files. Are you sure?",
"You are about to delete a large number of files. Are you sure?" : "You are about to delete a large number of files. Are you sure?",
"You are about to touch a large number of files. Are you sure?" : "You are about to touch a large number of files. Are you sure?",
"Could not remove photos from album" : "Could not remove photos from album",
"_{n} selected_::_{n} selected_" : ["{n} selected","{n} selected"],
"Timeline Path" : "Timeline Path",
"Folders Path" : "Folders Path",
@ -57,16 +55,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Choose Timeline Paths",
"Choose the root for the folders view" : "Choose the root for the folders view",
"Your Timeline" : "Your Timeline",
"You will find your friends soon. Please, be patient." : "You will find your friends soon. Please, be patient.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Face Recognition is disabled. Enable in settings to find your friends.",
"Failed to load some photos" : "Failed to load some photos",
"Share" : "Share",
"Sidebar" : "Sidebar",
"Close" : "Close",
"Previous" : "Previous",
"Next" : "Next",
"Video sharing not supported yet" : "Video sharing not supported yet",
"Cannot share this type of data" : "Cannot share this type of data",
"Processing … {n}/{m}" : "Processing … {n}/{m}",
"{n} photos added to album" : "{n} photos added to album",
"_{n} item added to album_::_{n} items added to album_" : ["{n} item added to album","{n} items added to album"],
"Search for collaborators" : "Search for collaborators",
"Search people or groups" : "Search people or groups",
"Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list",
@ -112,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Update Exif",
"Newest" : "Newest",
"Oldest" : "Oldest",
"This feature modifies files in your storage to update Exif data." : "This feature modifies files in your storage to update Exif data.",
"Exercise caution and make sure you have backups." : "Exercise caution and make sure you have backups.",
"Loading data … {n}/{m}" : "Loading data … {n}/{m}",
"Title" : "Title",
"Description" : "Description",
"Date Taken" : "Date Taken",
"Label" : "Label",
"Camera Make" : "Camera Make",
"Camera Model" : "Camera Model",
"Lens" : "Lens",
"Copyright" : "Copyright",
"Remove person" : "Remove person",
"Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?",
"Name" : "Surname",
@ -137,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Add Path",
"Add a root to your timeline" : "Add a root to your timeline",
"Share album" : "Share album",
"Download album" : "Download album",
"Delete album" : "Delete album",
"Merge with different person" : "Merge with different person",
"Mark person in preview" : "Mark person in preview",
"Share folder" : "Share folder",
"Move left" : "Move left",
"Move right" : "Move right",
"Failed to get Exif data. Metadata may be lost!" : "Failed to get Exif data. Metadata may be lost!",
"No Exif data found! Continue?" : "No Exif data found! Continue?",
"Image saved successfully" : "Image saved successfully",
"Error saving image" : "Error saving image",
"Unsaved changes" : "Unsaved changes",
"Drop changes" : "Drop changes",
"Share" : "Share",
"Sidebar" : "Sidebar",
"Download Video" : "Download Video",
"Slideshow" : "Slideshow",
"Close" : "Close",
"Previous" : "Previous",
"Next" : "Next",
"Video sharing not supported yet" : "Video sharing not supported yet",
"Cannot share this type of data" : "Cannot share this type of data",
"Save as" : "Save as",
"Reset" : "Reset",
"All changes will be lost." : "All changes will be lost.",
@ -228,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Actual size (100%)",
"Fit size" : "Fit size",
"Transcoding failed." : "Transcoding failed.",
"Direct" : "Direct",
"Auto" : "Auto",
"Shared Folder" : "Shared Folder",
"Failed to create {albumName}." : "Failed to create {albumName}.",
@ -236,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Failed to delete files.",
"Failed to delete {fileName}." : "Failed to delete {fileName}.",
"Failed to download some files." : "Failed to download some files.",
"Failed to download files" : "Failed to download files",
"Failed to favorite files." : "Failed to favorite files.",
"Failed to favorite some files." : "Failed to favorite some files.",
"Failed to favorite {fileName}." : "Failed to favorite {fileName}."

62
l10n/en_GB.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": {
"Memories" : "Memories",
"Yet another photo management app" : "Yet another photo management app",
"# 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 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.",
"Fast, modern and advanced photo management suite" : "Fast, modern and advanced photo management suite",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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 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, powered by [recognise](https://github.com/nextcloud/recognise) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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.",
"Settings" : "Settings",
"People (Recognize)" : "People (Recognise)",
"People" : "People",
"People (Face Recognition)" : "People (Face Recognition)",
"EXIF" : "EXIF",
"Timeline" : "Timeline",
"Folders" : "Folders",
"Favorites" : "Favourites",
"Videos" : "Videos",
"Albums" : "Albums",
"People" : "People",
"Archive" : "Archive",
"On this day" : "On this day",
"Tags" : "Tags",
"Maps" : "Maps",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "A better photos experience awaits you",
"Choose the root folder of your timeline to begin" : "Choose the root folder of your timeline to begin",
"If you just installed Memories, run:" : "If you just installed Memories, run:",
@ -23,14 +25,10 @@
"You can always change this later in settings" : "You can always change this later in settings",
"Choose the root of your timeline" : "Choose the root of your timeline",
"The selected folder does not seem to be valid. Try again." : "The selected folder does not seem to be valid. Try again.",
"Found {total} photos in {path}" : "Found {total} photos in {path}",
"Failed to get Exif data. Metadata may be lost!" : "Failed to get Exif data. Metadata may be lost!",
"No Exif data found! Continue?" : "No Exif data found! Continue?",
"Image saved successfully" : "Image saved successfully",
"Error saving image" : "Error saving image",
"Unsaved changes" : "Unsaved changes",
"Drop changes" : "Drop changes",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Found {n} item in {path}","Found {n} items in {path}"],
"Edit" : "Edit",
"No title" : "No title",
"No description" : "No description",
"Loading …" : "Loading …",
"Cancel" : "Cancel",
"Delete" : "Delete",
@ -39,6 +37,7 @@
"Favorite" : "Favourite",
"Unarchive" : "Unarchive",
"Edit Date/Time" : "Edit Date/Time",
"Edit EXIF Data" : "Edit EXIF Data",
"View in folder" : "View in folder",
"Add to album" : "Add to album",
"Move to another person" : "Move to another person",
@ -46,7 +45,6 @@
"You are about to download a large number of files. Are you sure?" : "You are about to download a large number of files. Are you sure?",
"You are about to delete a large number of files. Are you sure?" : "You are about to delete a large number of files. Are you sure?",
"You are about to touch a large number of files. Are you sure?" : "You are about to touch a large number of files. Are you sure?",
"Could not remove photos from album" : "Could not remove photos from album",
"_{n} selected_::_{n} selected_" : ["{n} selected","{n} selected"],
"Timeline Path" : "Timeline Path",
"Folders Path" : "Folders Path",
@ -55,16 +53,11 @@
"Choose Timeline Paths" : "Choose Timeline Paths",
"Choose the root for the folders view" : "Choose the root for the folders view",
"Your Timeline" : "Your Timeline",
"You will find your friends soon. Please, be patient." : "You will find your friends soon. Please, be patient.",
"Face Recognition is disabled. Enable in settings to find your friends." : "Face Recognition is disabled. Enable in settings to find your friends.",
"Failed to load some photos" : "Failed to load some photos",
"Share" : "Share",
"Sidebar" : "Sidebar",
"Close" : "Close",
"Previous" : "Previous",
"Next" : "Next",
"Video sharing not supported yet" : "Video sharing not supported yet",
"Cannot share this type of data" : "Cannot share this type of data",
"Processing … {n}/{m}" : "Processing … {n}/{m}",
"{n} photos added to album" : "{n} photos added to album",
"_{n} item added to album_::_{n} items added to album_" : ["{n} item added to album","{n} items added to album"],
"Search for collaborators" : "Search for collaborators",
"Search people or groups" : "Search people or groups",
"Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list",
@ -110,9 +103,15 @@
"Update Exif" : "Update Exif",
"Newest" : "Newest",
"Oldest" : "Oldest",
"This feature modifies files in your storage to update Exif data." : "This feature modifies files in your storage to update Exif data.",
"Exercise caution and make sure you have backups." : "Exercise caution and make sure you have backups.",
"Loading data … {n}/{m}" : "Loading data … {n}/{m}",
"Title" : "Title",
"Description" : "Description",
"Date Taken" : "Date Taken",
"Label" : "Label",
"Camera Make" : "Camera Make",
"Camera Model" : "Camera Model",
"Lens" : "Lens",
"Copyright" : "Copyright",
"Remove person" : "Remove person",
"Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?",
"Name" : "Surname",
@ -135,12 +134,28 @@
"Add Path" : "Add Path",
"Add a root to your timeline" : "Add a root to your timeline",
"Share album" : "Share album",
"Download album" : "Download album",
"Delete album" : "Delete album",
"Merge with different person" : "Merge with different person",
"Mark person in preview" : "Mark person in preview",
"Share folder" : "Share folder",
"Move left" : "Move left",
"Move right" : "Move right",
"Failed to get Exif data. Metadata may be lost!" : "Failed to get Exif data. Metadata may be lost!",
"No Exif data found! Continue?" : "No Exif data found! Continue?",
"Image saved successfully" : "Image saved successfully",
"Error saving image" : "Error saving image",
"Unsaved changes" : "Unsaved changes",
"Drop changes" : "Drop changes",
"Share" : "Share",
"Sidebar" : "Sidebar",
"Download Video" : "Download Video",
"Slideshow" : "Slideshow",
"Close" : "Close",
"Previous" : "Previous",
"Next" : "Next",
"Video sharing not supported yet" : "Video sharing not supported yet",
"Cannot share this type of data" : "Cannot share this type of data",
"Save as" : "Save as",
"Reset" : "Reset",
"All changes will be lost." : "All changes will be lost.",
@ -226,6 +241,7 @@
"Actual size (100%)" : "Actual size (100%)",
"Fit size" : "Fit size",
"Transcoding failed." : "Transcoding failed.",
"Direct" : "Direct",
"Auto" : "Auto",
"Shared Folder" : "Shared Folder",
"Failed to create {albumName}." : "Failed to create {albumName}.",
@ -234,7 +250,7 @@
"Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Failed to delete files.",
"Failed to delete {fileName}." : "Failed to delete {fileName}.",
"Failed to download some files." : "Failed to download some files.",
"Failed to download files" : "Failed to download files",
"Failed to favorite files." : "Failed to favorite files.",
"Failed to favorite some files." : "Failed to favorite some files.",
"Failed to favorite {fileName}." : "Failed to favorite {fileName}."

13
l10n/eo.js vendored
View File

@ -9,7 +9,6 @@ OC.L10N.register(
"Archive" : "Arĥivujo",
"Tags" : "Etikedoj",
"Maps" : "Mapoj",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Edit" : "Modifi",
"Loading …" : "Ŝargas …",
"Cancel" : "Nuligi",
@ -17,10 +16,6 @@ OC.L10N.register(
"Download" : "Elŝuti",
"Favorite" : "Pliŝatati",
"View in folder" : "Vidi en dosierujo",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Public link" : "Publika ligilo",
"Back" : "Antaŭen",
"Save" : "Konservi",
@ -28,10 +23,18 @@ OC.L10N.register(
"Day" : "Tago",
"Time" : "Dato",
"Hour" : "Horo",
"Title" : "Titolo",
"Description" : "Priskribo",
"Copyright" : "Kopirajto",
"Name" : "Nomo",
"Update" : "Ĝisdatigi",
"Refresh" : "Aktualigi",
"Remove" : "Forigi",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Reset" : "Restarigi",
"Continue" : "Daŭrigi",
"Undo" : "Malfari",

13
l10n/eo.json vendored
View File

@ -7,7 +7,6 @@
"Archive" : "Arĥivujo",
"Tags" : "Etikedoj",
"Maps" : "Mapoj",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Edit" : "Modifi",
"Loading …" : "Ŝargas …",
"Cancel" : "Nuligi",
@ -15,10 +14,6 @@
"Download" : "Elŝuti",
"Favorite" : "Pliŝatati",
"View in folder" : "Vidi en dosierujo",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Public link" : "Publika ligilo",
"Back" : "Antaŭen",
"Save" : "Konservi",
@ -26,10 +21,18 @@
"Day" : "Tago",
"Time" : "Dato",
"Hour" : "Horo",
"Title" : "Titolo",
"Description" : "Priskribo",
"Copyright" : "Kopirajto",
"Name" : "Nomo",
"Update" : "Ĝisdatigi",
"Refresh" : "Aktualigi",
"Remove" : "Forigi",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Reset" : "Restarigi",
"Continue" : "Daŭrigi",
"Undo" : "Malfari",

63
l10n/es.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories",
{
"Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas",
"# 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.",
"Fast, modern and advanced photo management suite" : "Suite rápida, moderna y avanzada para la gestión de fotografías",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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 incluidas* 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, con la ayuda de [recognize](https://github.com/nextcloud/recognize) y [facerecognition](https://github.com/matiasdelellis/facerecognition).\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- **⚡️ Rendimiento**: 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 ve 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",
"People (Recognize)" : "Personas (Recognize)",
"People" : "Personas",
"People (Face Recognition)" : "Personas (Reconocimiento facial)",
"EXIF" : "EXIF",
"Timeline" : "Línea de tiempo",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Vídeos",
"Albums" : "Álbumes",
"People" : "Personas",
"Archive" : "Archivo",
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"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,14 +27,10 @@ OC.L10N.register(
"You can always change this later in settings" : "Siempre podrá cambiar esto luego en las configuraciones",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Se encontró {n} ítem en {path}","Se encontraron {n} ítems en {path}","Se encontraron {n} ítems en {path}"],
"Edit" : "Editar",
"No title" : "Sin título",
"No description" : "Sin descripción",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"Edit Date/Time" : "Editar Fecha/Hora",
"Edit EXIF Data" : "Editar datos EXIF",
"View in folder" : "Ver en carpeta",
"Add to album" : "Añadir al álbum",
"Move to another person" : "Mover a otra persona",
@ -48,7 +47,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Está a punto de descargar un gran número de archivos. ¿Está seguro?",
"You are about to delete a large number of files. Are you sure?" : "Está a punto de eliminar un gran número de archivos. ¿Está seguro?",
"You are about to touch a large number of files. Are you sure?" : "Está a punto de tocar un gran número de archivos. ¿Está seguro?",
"Could not remove photos from album" : "No fue posible quitar fotos del álbum",
"_{n} selected_::_{n} selected_" : ["{n} seleccionado","{n} seleccionados","{n} seleccionados"],
"Timeline Path" : "Ruta a la línea de tiempo",
"Folders Path" : "Ruta a las carpetas",
@ -57,17 +55,11 @@ OC.L10N.register(
"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",
"You will find your friends soon. Please, be patient." : "Conseguirá a sus amigos en breve. Por favor, tenga paciencia.",
"Face Recognition is disabled. Enable in settings to find your friends." : "El reconocimiento facial está deshabilitado. Habilítelo en la configuración para conseguir a sus amigos.",
"Failed to load some photos" : "Fallo al cargar algunas fotos",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Download Video" : "Descargar video",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} ítem fue añadido al albúm","{n} ítems fueron añadidos al albúm","{n} ítems fueron añadidos al albúm"],
"Search for collaborators" : "Buscar colaboradores",
"Search people or groups" : "Buscar personas o grupos",
"Add {collaboratorLabel} to the collaborators list" : "Añadir {collaboratorLabel} a la lista de colaboradores",
@ -113,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Actualizar Exif",
"Newest" : "Más nuevo",
"Oldest" : "Más antiguo",
"This feature modifies files in your storage to update Exif data." : "Esta característica modifica los archivos en su almacenamiento para actualizar la data Exif.",
"Exercise caution and make sure you have backups." : "Tenga precaución y asegúrese de tener respaldos.",
"Loading data … {n}/{m}" : "Cargando datos ... {n}/{m}",
"Title" : "Título.",
"Description" : "Descripción",
"Date Taken" : "Fecha en que se tomó",
"Label" : "Etiqueta",
"Camera Make" : "Marca de la cámara",
"Camera Model" : "Modelo de la cámara",
"Lens" : "Lente",
"Copyright" : "Derechos de autor",
"Remove person" : "Eliminar persona",
"Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?",
"Name" : "Nombre",
@ -138,12 +136,28 @@ OC.L10N.register(
"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",
"Download album" : "Descargar álbum",
"Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente",
"Mark person in preview" : "Marcar persona en vista previa",
"Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha",
"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",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Download Video" : "Descargar video",
"Slideshow" : "Presentación de diapositivas",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"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",
"Save as" : "Guardar como",
"Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.",
@ -229,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding",
"Direct" : "Directo",
"Auto" : "Auto",
"Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}",
@ -237,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Fallo al eliminar archivos.",
"Failed to delete {fileName}." : "Fallo al eliminar {fileName}.",
"Failed to download some files." : "Fallo al descargar algunos archivos.",
"Failed to download files" : "Fallo al descargar archivos",
"Failed to favorite files." : "Fallo al marcar archivos como favoritos.",
"Failed to favorite some files." : "Fallo al marcar algunos archivos como favoritos.",
"Failed to favorite {fileName}." : "Fallo al marcar como favorito {fileName}."

63
l10n/es.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": {
"Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas",
"# 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.",
"Fast, modern and advanced photo management suite" : "Suite rápida, moderna y avanzada para la gestión de fotografías",
"# 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, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\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 incluidas* 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, con la ayuda de [recognize](https://github.com/nextcloud/recognize) y [facerecognition](https://github.com/matiasdelellis/facerecognition).\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- **⚡️ Rendimiento**: 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 ve 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",
"People (Recognize)" : "Personas (Recognize)",
"People" : "Personas",
"People (Face Recognition)" : "Personas (Reconocimiento facial)",
"EXIF" : "EXIF",
"Timeline" : "Línea de tiempo",
"Folders" : "Carpetas",
"Favorites" : "Favoritos",
"Videos" : "Vídeos",
"Albums" : "Álbumes",
"People" : "Personas",
"Archive" : "Archivo",
"On this day" : "En este día",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"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,14 +25,10 @@
"You can always change this later in settings" : "Siempre podrá cambiar esto luego en las configuraciones",
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Se encontró {n} ítem en {path}","Se encontraron {n} ítems en {path}","Se encontraron {n} ítems en {path}"],
"Edit" : "Editar",
"No title" : "Sin título",
"No description" : "Sin descripción",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
@ -39,6 +37,7 @@
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"Edit Date/Time" : "Editar Fecha/Hora",
"Edit EXIF Data" : "Editar datos EXIF",
"View in folder" : "Ver en carpeta",
"Add to album" : "Añadir al álbum",
"Move to another person" : "Mover a otra persona",
@ -46,7 +45,6 @@
"You are about to download a large number of files. Are you sure?" : "Está a punto de descargar un gran número de archivos. ¿Está seguro?",
"You are about to delete a large number of files. Are you sure?" : "Está a punto de eliminar un gran número de archivos. ¿Está seguro?",
"You are about to touch a large number of files. Are you sure?" : "Está a punto de tocar un gran número de archivos. ¿Está seguro?",
"Could not remove photos from album" : "No fue posible quitar fotos del álbum",
"_{n} selected_::_{n} selected_" : ["{n} seleccionado","{n} seleccionados","{n} seleccionados"],
"Timeline Path" : "Ruta a la línea de tiempo",
"Folders Path" : "Ruta a las carpetas",
@ -55,17 +53,11 @@
"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",
"You will find your friends soon. Please, be patient." : "Conseguirá a sus amigos en breve. Por favor, tenga paciencia.",
"Face Recognition is disabled. Enable in settings to find your friends." : "El reconocimiento facial está deshabilitado. Habilítelo en la configuración para conseguir a sus amigos.",
"Failed to load some photos" : "Fallo al cargar algunas fotos",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Download Video" : "Descargar video",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"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",
"_{n} item added to album_::_{n} items added to album_" : ["{n} ítem fue añadido al albúm","{n} ítems fueron añadidos al albúm","{n} ítems fueron añadidos al albúm"],
"Search for collaborators" : "Buscar colaboradores",
"Search people or groups" : "Buscar personas o grupos",
"Add {collaboratorLabel} to the collaborators list" : "Añadir {collaboratorLabel} a la lista de colaboradores",
@ -111,9 +103,15 @@
"Update Exif" : "Actualizar Exif",
"Newest" : "Más nuevo",
"Oldest" : "Más antiguo",
"This feature modifies files in your storage to update Exif data." : "Esta característica modifica los archivos en su almacenamiento para actualizar la data Exif.",
"Exercise caution and make sure you have backups." : "Tenga precaución y asegúrese de tener respaldos.",
"Loading data … {n}/{m}" : "Cargando datos ... {n}/{m}",
"Title" : "Título.",
"Description" : "Descripción",
"Date Taken" : "Fecha en que se tomó",
"Label" : "Etiqueta",
"Camera Make" : "Marca de la cámara",
"Camera Model" : "Modelo de la cámara",
"Lens" : "Lente",
"Copyright" : "Derechos de autor",
"Remove person" : "Eliminar persona",
"Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?",
"Name" : "Nombre",
@ -136,12 +134,28 @@
"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",
"Download album" : "Descargar álbum",
"Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente",
"Mark person in preview" : "Marcar persona en vista previa",
"Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha",
"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",
"Share" : "Compartir",
"Sidebar" : "Barra lateral",
"Download Video" : "Descargar video",
"Slideshow" : "Presentación de diapositivas",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"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",
"Save as" : "Guardar como",
"Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding",
"Direct" : "Directo",
"Auto" : "Auto",
"Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}",
@ -235,7 +250,7 @@
"Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Fallo al eliminar archivos.",
"Failed to delete {fileName}." : "Fallo al eliminar {fileName}.",
"Failed to download some files." : "Fallo al descargar algunos archivos.",
"Failed to download files" : "Fallo al descargar archivos",
"Failed to favorite files." : "Fallo al marcar archivos como favoritos.",
"Failed to favorite some files." : "Fallo al marcar algunos archivos como favoritos.",
"Failed to favorite {fileName}." : "Fallo al marcar como favorito {fileName}."

14
l10n/es_419.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restaurar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_419.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restaurar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

15
l10n/es_AR.js vendored
View File

@ -17,10 +17,6 @@ OC.L10N.register(
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Copy public link" : "Copiar link publico",
"Back" : "Atrás",
"Save" : "Guardar",
@ -28,10 +24,18 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Recargar",
"Remove" : "Borrar",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
@ -39,6 +43,7 @@ OC.L10N.register(
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
"Position" : "Posición",
"Direct" : "Directo"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

15
l10n/es_AR.json vendored
View File

@ -15,10 +15,6 @@
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Copy public link" : "Copiar link publico",
"Back" : "Atrás",
"Save" : "Guardar",
@ -26,10 +22,18 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Recargar",
"Remove" : "Borrar",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",
@ -37,6 +41,7 @@
"Value" : "Valor",
"Text" : "Texto",
"Size" : "Tamaño",
"Position" : "Posición"
"Position" : "Posición",
"Direct" : "Directo"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

14
l10n/es_CL.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
@ -17,10 +16,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -28,10 +23,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_CL.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Loading …" : "Cargando …",
"Cancel" : "Cancelar",
@ -15,10 +14,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -26,10 +21,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_CO.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_CO.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_CR.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_CR.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_DO.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_DO.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_EC.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_EC.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_GT.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_GT.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_HN.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_HN.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_MX.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Copy public link" : "Copiar enlace público",
"Public link" : "Liga pública",
"Back" : "Atrás",
@ -28,10 +23,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_MX.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Eliminar",
@ -14,10 +13,6 @@
"Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Copy public link" : "Copiar enlace público",
"Public link" : "Liga pública",
"Back" : "Atrás",
@ -26,10 +21,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Reiniciar",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_NI.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_NI.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PA.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PA.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PE.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PE.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PR.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PR.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PY.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_PY.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_SV.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,10 +15,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -27,10 +22,19 @@ OC.L10N.register(
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_SV.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,10 +13,6 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública",
"Back" : "Atrás",
"Save" : "Guardar",
@ -25,10 +20,19 @@
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_UY.js vendored
View File

@ -8,7 +8,6 @@ OC.L10N.register(
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

14
l10n/es_UY.json vendored
View File

@ -6,7 +6,6 @@
"Archive" : "Archivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar",
"Cancel" : "Cancelar",
"Delete" : "Borrar",
@ -14,20 +13,25 @@
"Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás",
"Save" : "Guardar",
"Month" : "Mes",
"Day" : "Día",
"Time" : "Hora",
"Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer",
"Continue" : "Continuar",
"Undo" : "Deshacer",

15
l10n/et_EE.js vendored
View File

@ -8,17 +8,12 @@ OC.L10N.register(
"Archive" : "Arhiiv",
"Tags" : "Sildid",
"Maps" : "Kaardid",
"Unsaved changes" : "Salvestamata muutused",
"Edit" : "Redigeeri",
"Cancel" : "Loobu",
"Delete" : "Kustuta",
"Download" : "Lae alla",
"Favorite" : "Lemmik",
"View in folder" : "Vaata kaustas",
"Share" : "Jaga",
"Close" : "Sulge",
"Previous" : "Eelmine",
"Next" : "Järgmine",
"Copy public link" : "Kopeeri avalik link",
"Public link" : "Avalik link",
"Back" : "Tagasi",
@ -27,12 +22,22 @@ OC.L10N.register(
"Day" : "Päev",
"Time" : "Aeg",
"Hour" : "Tund",
"Title" : "Pealkiri",
"Description" : "Kirjeldus",
"Label" : "Silt",
"Copyright" : "Autoriõigused",
"Name" : "Nimi",
"Update" : "Uuenda",
"Refresh" : "Värskenda",
"Remove" : "Eemalda",
"Unsaved changes" : "Salvestamata muutused",
"Share" : "Jaga",
"Close" : "Sulge",
"Previous" : "Eelmine",
"Next" : "Järgmine",
"Reset" : "Lähtesta",
"Continue" : "Jätka",
"Undo" : "Tühista",
"Custom" : "Kohandatud",
"Size" : "Suurus",
"Position" : "Asukoht"

15
l10n/et_EE.json vendored
View File

@ -6,17 +6,12 @@
"Archive" : "Arhiiv",
"Tags" : "Sildid",
"Maps" : "Kaardid",
"Unsaved changes" : "Salvestamata muutused",
"Edit" : "Redigeeri",
"Cancel" : "Loobu",
"Delete" : "Kustuta",
"Download" : "Lae alla",
"Favorite" : "Lemmik",
"View in folder" : "Vaata kaustas",
"Share" : "Jaga",
"Close" : "Sulge",
"Previous" : "Eelmine",
"Next" : "Järgmine",
"Copy public link" : "Kopeeri avalik link",
"Public link" : "Avalik link",
"Back" : "Tagasi",
@ -25,12 +20,22 @@
"Day" : "Päev",
"Time" : "Aeg",
"Hour" : "Tund",
"Title" : "Pealkiri",
"Description" : "Kirjeldus",
"Label" : "Silt",
"Copyright" : "Autoriõigused",
"Name" : "Nimi",
"Update" : "Uuenda",
"Refresh" : "Värskenda",
"Remove" : "Eemalda",
"Unsaved changes" : "Salvestamata muutused",
"Share" : "Jaga",
"Close" : "Sulge",
"Previous" : "Eelmine",
"Next" : "Järgmine",
"Reset" : "Lähtesta",
"Continue" : "Jätka",
"Undo" : "Tühista",
"Custom" : "Kohandatud",
"Size" : "Suurus",
"Position" : "Asukoht"

26
l10n/eu.js vendored
View File

@ -2,21 +2,17 @@ OC.L10N.register(
"memories",
{
"Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak",
"People" : "Jendea",
"Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak",
"Favorites" : "Gogokoak",
"Videos" : "Bideoak",
"Albums" : "Albumak",
"People" : "Jendea",
"Archive" : "Artxibatu",
"On this day" : "Egun honetan",
"Tags" : "Etiketak",
"Maps" : "Mapak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu",
"Loading …" : "Kargatzen …",
"Cancel" : "Utzi",
@ -36,11 +32,6 @@ 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",
"Close" : "Itxi",
"Previous" : "Aurrekoa",
"Next" : "Hurrengoa",
"Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak",
"Search people or groups" : "Bilatu erabiltzaile edo taldeak",
@ -83,9 +74,11 @@ OC.L10N.register(
"Update Exif" : "Eguneratu Exif",
"Newest" : "Berrienak",
"Oldest" : "Zaharrenak",
"This feature modifies files in your storage to update Exif data." : "Ezaugarri honek zure biltegiko fitxategiak aldatzen ditu Exif datuak eguneratzeko.",
"Exercise caution and make sure you have backups." : "Kontuz ibili eta ziurtatu babeskopiak dituzula.",
"Loading data … {n}/{m}" : "Datuak kargatzen … {n}/{m}",
"Title" : "Izenburua",
"Description" : "Deskribapena",
"Label" : "Etiketa",
"Copyright" : "Copyright",
"Remove person" : "Kendu pertsona",
"Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena",
@ -96,6 +89,14 @@ OC.L10N.register(
"Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Share" : "Partekatu",
"Sidebar" : "Alboko barra",
"Close" : "Itxi",
"Previous" : "Aurrekoa",
"Next" : "Hurrengoa",
"Save as" : "Gorde honela",
"Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.",
@ -180,6 +181,7 @@ OC.L10N.register(
"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",
"Direct" : "Zuzena",
"Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.",

26
l10n/eu.json vendored
View File

@ -1,20 +1,16 @@
{ "translations": {
"Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak",
"People" : "Jendea",
"Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak",
"Favorites" : "Gogokoak",
"Videos" : "Bideoak",
"Albums" : "Albumak",
"People" : "Jendea",
"Archive" : "Artxibatu",
"On this day" : "Egun honetan",
"Tags" : "Etiketak",
"Maps" : "Mapak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu",
"Loading …" : "Kargatzen …",
"Cancel" : "Utzi",
@ -34,11 +30,6 @@
"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",
"Close" : "Itxi",
"Previous" : "Aurrekoa",
"Next" : "Hurrengoa",
"Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak",
"Search people or groups" : "Bilatu erabiltzaile edo taldeak",
@ -81,9 +72,11 @@
"Update Exif" : "Eguneratu Exif",
"Newest" : "Berrienak",
"Oldest" : "Zaharrenak",
"This feature modifies files in your storage to update Exif data." : "Ezaugarri honek zure biltegiko fitxategiak aldatzen ditu Exif datuak eguneratzeko.",
"Exercise caution and make sure you have backups." : "Kontuz ibili eta ziurtatu babeskopiak dituzula.",
"Loading data … {n}/{m}" : "Datuak kargatzen … {n}/{m}",
"Title" : "Izenburua",
"Description" : "Deskribapena",
"Label" : "Etiketa",
"Copyright" : "Copyright",
"Remove person" : "Kendu pertsona",
"Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena",
@ -94,6 +87,14 @@
"Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Share" : "Partekatu",
"Sidebar" : "Alboko barra",
"Close" : "Itxi",
"Previous" : "Aurrekoa",
"Next" : "Hurrengoa",
"Save as" : "Gorde honela",
"Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.",
@ -178,6 +179,7 @@
"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",
"Direct" : "Zuzena",
"Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.",

15
l10n/fa.js vendored
View File

@ -2,11 +2,11 @@ OC.L10N.register(
"memories",
{
"Settings" : "تنظیمات",
"People" : "مردم",
"Timeline" : "خط زمانی",
"Folders" : "پوشه ها",
"Favorites" : "مورد علاقه‌ها",
"Videos" : "فیلم ها ",
"People" : "مردم",
"Archive" : "بایگانی",
"Tags" : "برچسب ها",
"Maps" : "نقشه‌ها",
@ -17,10 +17,6 @@ OC.L10N.register(
"Download" : "بارگیری",
"Favorite" : "مورد‌ ‌علاقه‌",
"View in folder" : "مشاهده در پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Copy public link" : "پیوند عمومی را کپی کنید",
"Public link" : "پیوند عمومی",
"Back" : "بازگشت",
@ -29,11 +25,19 @@ OC.L10N.register(
"Month" : "ماه",
"Day" : "روز",
"Time" : "زمان",
"Title" : "عنوان",
"Description" : "توضیحات",
"Label" : "برچسب",
"Copyright" : "کپی‌رایت",
"Name" : "نام",
"Update" : "یه‌روزرسانی",
"Refresh" : "تازه‌سازی",
"Remove" : "حذف",
"Share folder" : "اشتراک‌گذاری پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Reset" : "بازنشاندن",
"Continue" : "ادامه دادن",
"Undo" : "برگرداندن",
@ -42,6 +46,7 @@ OC.L10N.register(
"Text" : "متن",
"Size" : "اندازه",
"Extension" : "گسترش",
"Direct" : "مستقیم",
"Auto" : "خودکار"
},
"nplurals=2; plural=(n > 1);");

15
l10n/fa.json vendored
View File

@ -1,10 +1,10 @@
{ "translations": {
"Settings" : "تنظیمات",
"People" : "مردم",
"Timeline" : "خط زمانی",
"Folders" : "پوشه ها",
"Favorites" : "مورد علاقه‌ها",
"Videos" : "فیلم ها ",
"People" : "مردم",
"Archive" : "بایگانی",
"Tags" : "برچسب ها",
"Maps" : "نقشه‌ها",
@ -15,10 +15,6 @@
"Download" : "بارگیری",
"Favorite" : "مورد‌ ‌علاقه‌",
"View in folder" : "مشاهده در پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Copy public link" : "پیوند عمومی را کپی کنید",
"Public link" : "پیوند عمومی",
"Back" : "بازگشت",
@ -27,11 +23,19 @@
"Month" : "ماه",
"Day" : "روز",
"Time" : "زمان",
"Title" : "عنوان",
"Description" : "توضیحات",
"Label" : "برچسب",
"Copyright" : "کپی‌رایت",
"Name" : "نام",
"Update" : "یه‌روزرسانی",
"Refresh" : "تازه‌سازی",
"Remove" : "حذف",
"Share folder" : "اشتراک‌گذاری پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Reset" : "بازنشاندن",
"Continue" : "ادامه دادن",
"Undo" : "برگرداندن",
@ -40,6 +44,7 @@
"Text" : "متن",
"Size" : "اندازه",
"Extension" : "گسترش",
"Direct" : "مستقیم",
"Auto" : "خودکار"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

27
l10n/fi.js vendored
View File

@ -2,14 +2,13 @@ OC.L10N.register(
"memories",
{
"Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset",
"People" : "Ihmiset",
"Timeline" : "Aikajana",
"Folders" : "Kansiot",
"Favorites" : "Suosikit",
"Videos" : "Videot",
"Albums" : "Albumit",
"People" : "Ihmiset",
"Archive" : "Arkisto",
"On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet",
@ -23,9 +22,6 @@ OC.L10N.register(
"You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista",
"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",
@ -42,7 +38,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Olet lataamassa suurta määrää tiedostoja. Oletko varma?",
"You are about to delete a large number of files. Are you sure?" : "Olet poistamassa suurta määrää tiedostoja. Oletko varma?",
"You are about to touch a large number of files. Are you sure?" : "Olet aikeissa koskettaa suurta määrää tiedostoja. Oletko varma?",
"Could not remove photos from album" : "Kuvia ei voitu poistaa albumista",
"_{n} selected_::_{n} selected_" : ["{n} valittu","{n} valittu"],
"Timeline Path" : "Aikajanan polku",
"Folders Path" : "Kansioiden polku",
@ -51,13 +46,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",
"Close" : "Sulje",
"Previous" : "Edellinen",
"Next" : "Seuraava",
"Processing … {n}/{m}" : "Käsitellään… {n}/{m}",
"{n} photos added to album" : "{n} kuvaa lisätty albumiin",
"Search people or groups" : "Etsi käyttäjiä tai ryhmiä",
"Copy the public link" : "Kopioi julkinen linkki",
"Delete the public link" : "Poista julkinen linkki",
@ -96,9 +85,10 @@ OC.L10N.register(
"Update Exif" : "Päivitä exif",
"Newest" : "Uusimmat",
"Oldest" : "Vanhimmat",
"This feature modifies files in your storage to update Exif data." : "Tämä toiminto muokkaa tiedostoja tallennustilassasi päivittääkseen Exif-tietoja.",
"Exercise caution and make sure you have backups." : "Noudata varovaisuutta ja varmista, että tiedostoista on olemassa varmuuskopiot.",
"Loading data … {n}/{m}" : "Ladataan tietoja… {n}/{m}",
"Title" : "Nimeke",
"Description" : "Kuvaus",
"Copyright" : "Tekijänoikeus",
"Remove person" : "Poista henkilö",
"Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?",
"Name" : "Nimi",
@ -117,6 +107,13 @@ OC.L10N.register(
"Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle",
"Error saving image" : "Virhe kuvaa tallentaessa",
"Unsaved changes" : "Tallentamattomia muutoksia",
"Share" : "Jaa",
"Sidebar" : "Sivupalkki",
"Close" : "Sulje",
"Previous" : "Edellinen",
"Next" : "Seuraava",
"Save as" : "Tallenna nimellä",
"Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.",
@ -162,6 +159,7 @@ OC.L10N.register(
"Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko",
"Direct" : "Suoraan",
"Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
@ -170,7 +168,6 @@ OC.L10N.register(
"Error: {msg}" : "Virhe: {msg}",
"Failed to delete files." : "Tiedostojen poisto epäonnistui.",
"Failed to delete {fileName}." : "Tiedoston {fileName} poisto epäonnistui.",
"Failed to download some files." : "Joidenkin tiedostojen lataus epäonnistui.",
"Failed to favorite files." : "Tiedostojen asettaminen suosikeiksi epäonnistui.",
"Failed to favorite some files." : "Joidenkin tiedostojen määrittäminen suosikiksi epäonnistui.",
"Failed to favorite {fileName}." : "Tiedoston {fileName} asettaminen suosikiksi epäonnistui."

27
l10n/fi.json vendored
View File

@ -1,13 +1,12 @@
{ "translations": {
"Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset",
"People" : "Ihmiset",
"Timeline" : "Aikajana",
"Folders" : "Kansiot",
"Favorites" : "Suosikit",
"Videos" : "Videot",
"Albums" : "Albumit",
"People" : "Ihmiset",
"Archive" : "Arkisto",
"On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet",
@ -21,9 +20,6 @@
"You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista",
"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",
@ -40,7 +36,6 @@
"You are about to download a large number of files. Are you sure?" : "Olet lataamassa suurta määrää tiedostoja. Oletko varma?",
"You are about to delete a large number of files. Are you sure?" : "Olet poistamassa suurta määrää tiedostoja. Oletko varma?",
"You are about to touch a large number of files. Are you sure?" : "Olet aikeissa koskettaa suurta määrää tiedostoja. Oletko varma?",
"Could not remove photos from album" : "Kuvia ei voitu poistaa albumista",
"_{n} selected_::_{n} selected_" : ["{n} valittu","{n} valittu"],
"Timeline Path" : "Aikajanan polku",
"Folders Path" : "Kansioiden polku",
@ -49,13 +44,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",
"Close" : "Sulje",
"Previous" : "Edellinen",
"Next" : "Seuraava",
"Processing … {n}/{m}" : "Käsitellään… {n}/{m}",
"{n} photos added to album" : "{n} kuvaa lisätty albumiin",
"Search people or groups" : "Etsi käyttäjiä tai ryhmiä",
"Copy the public link" : "Kopioi julkinen linkki",
"Delete the public link" : "Poista julkinen linkki",
@ -94,9 +83,10 @@
"Update Exif" : "Päivitä exif",
"Newest" : "Uusimmat",
"Oldest" : "Vanhimmat",
"This feature modifies files in your storage to update Exif data." : "Tämä toiminto muokkaa tiedostoja tallennustilassasi päivittääkseen Exif-tietoja.",
"Exercise caution and make sure you have backups." : "Noudata varovaisuutta ja varmista, että tiedostoista on olemassa varmuuskopiot.",
"Loading data … {n}/{m}" : "Ladataan tietoja… {n}/{m}",
"Title" : "Nimeke",
"Description" : "Kuvaus",
"Copyright" : "Tekijänoikeus",
"Remove person" : "Poista henkilö",
"Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?",
"Name" : "Nimi",
@ -115,6 +105,13 @@
"Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle",
"Error saving image" : "Virhe kuvaa tallentaessa",
"Unsaved changes" : "Tallentamattomia muutoksia",
"Share" : "Jaa",
"Sidebar" : "Sivupalkki",
"Close" : "Sulje",
"Previous" : "Edellinen",
"Next" : "Seuraava",
"Save as" : "Tallenna nimellä",
"Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.",
@ -160,6 +157,7 @@
"Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko",
"Direct" : "Suoraan",
"Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
@ -168,7 +166,6 @@
"Error: {msg}" : "Virhe: {msg}",
"Failed to delete files." : "Tiedostojen poisto epäonnistui.",
"Failed to delete {fileName}." : "Tiedoston {fileName} poisto epäonnistui.",
"Failed to download some files." : "Joidenkin tiedostojen lataus epäonnistui.",
"Failed to favorite files." : "Tiedostojen asettaminen suosikeiksi epäonnistui.",
"Failed to favorite some files." : "Joidenkin tiedostojen määrittäminen suosikiksi epäonnistui.",
"Failed to favorite {fileName}." : "Tiedoston {fileName} asettaminen suosikiksi epäonnistui."

66
l10n/fr.js vendored
View File

@ -2,18 +2,20 @@ OC.L10N.register(
"memories",
{
"Memories" : "Souvenirs",
"Yet another photo management app" : "Une nouvelle application de gestion des photos",
"Fast, modern and advanced photo management suite" : "Suite d'outils de gestion de photos rapide, moderne et avancée",
"Settings" : "Paramètres",
"People" : "Personnes",
"EXIF" : "EXIF",
"Timeline" : "Fil chronologique",
"Folders" : "Dossiers",
"Favorites" : "Favoris",
"Videos" : "Vidéos",
"Albums" : "Albums",
"People" : "Personnes",
"Archive" : "Archive",
"On this day" : "Ce même jour",
"Tags" : "Étiquettes",
"Maps" : "Cartes",
"A better photos experience awaits you" : "Une meilleure expérience photo vous attend",
"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",
@ -22,14 +24,12 @@ OC.L10N.register(
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} élément trouvé dans {path}","{n} éléments trouvés dans {path}","{n} éléments trouvés dans {path}"],
"Edit" : "Modifier",
"Loading …" : "Chargement …",
"Cancel" : "Annuler",
"Delete" : "Supprimer",
"Remove from album" : "Supprimer de l'album",
"Download" : "Télécharger",
"Favorite" : "Favoris",
"Unarchive" : "Désarchiver",
@ -45,16 +45,13 @@ OC.L10N.register(
"Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés",
"Square grid mode" : "Mode grille carrée",
"Choose Timeline Paths" : "Choisir les chemins de la ligne du temps",
"Choose the root for the folders view" : "Choisissez la racine pour la vue des dossiers",
"Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Close" : "Fermer",
"Previous" : "Précédente",
"Next" : "Suivante",
"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}",
"_{n} item added to album_::_{n} items added to album_" : ["{n} élément ajouté à l'album","{n} éléments ajoutés à l'album","{n} éléments ajoutés à l'album"],
"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,6 +70,8 @@ OC.L10N.register(
"New album" : "Nouvel album",
"Create new album" : "Créer un nouvel album",
"Edit album details" : "Modifier les détails de l'album",
"Could not load the selected album" : "Impossible de charger l'album sélectionné",
"Remove Album" : "Retirer l'album",
"Failed to delete {name}." : "Échec de la suppression {name}.",
"Name of the album" : "Nom de l'album",
"Location of the album" : "Emplacement de l'album",
@ -85,7 +84,10 @@ OC.L10N.register(
"Create album" : "Créer un album",
"Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}",
"Create a new album." : "Créer un nouvel album",
"_Share with %n user_::_Share with %n users_" : ["Partager avec %n utilisateur","Partager avec %n utilisateurs","Partager avec %n utilisateurs"],
"_%n item_::_%n items_" : ["%n élément ","%n éléments","%n éléments"],
"Save collaborators for this album." : "Enregistrer les collaborateurs pour cet album.",
"Share Album" : "Partager l'album",
"Year" : "Année",
"Month" : "Mois",
"Day" : "Jour",
@ -95,25 +97,55 @@ OC.L10N.register(
"Update Exif" : "Mettre à jour l'Exif",
"Newest" : "Plus récent",
"Oldest" : "Plus ancien",
"This feature modifies files in your storage to update Exif data." : "Cette fonctionnalité modifie les fichiers de votre stockage pour mettre à jour les données Exif.",
"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}",
"Title" : "Fonction",
"Description" : "Description",
"Label" : "Étiquette",
"Copyright" : "Droit d'auteur",
"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}.",
"Merge {name} with person" : "Fusionner {name} avec la personne",
"Are you sure you want to merge {name} with {newName}?" : "Êtes-vous sûr de vouloir fusionner {name} avec {newName} ?",
"Too many failures, aborting" : "Trop d'échecs, abandon",
"Error while moving {basename}" : "Erreur lors du déplacement de {basename}",
"Failed to move {name}." : "Impossible de déplacer {name}.",
"Move selected photos to person" : "Déplacer les photos sélectionnées vers la personne",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Êtes-vous sûr de vouloir déplacer les photos sélectionnées de {name} vers {newName} ?",
"Share Folder" : "Partager le dossier",
"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",
"Add Path" : "Ajouter un chemin",
"Add a root to your timeline" : "Ajoutez un début à votre fil chronologique",
"Share album" : "Partager l'album",
"Download album" : "Télécharger l'album",
"Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne",
"Mark person in preview" : "Marquer la personne dans l'aperçu",
"Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche",
"Move right" : "Vers la droite",
"Failed to get Exif data. Metadata may be lost!" : "Échec de la récupération des données Exif. Les métadonnées peuvent être perdues !",
"No Exif data found! Continue?" : "Aucune donnée Exif trouvée ! Continuer ?",
"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",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Download Video" : "Télécharger la vidéo",
"Slideshow" : "Diaporama",
"Close" : "Fermer",
"Previous" : "Précédente",
"Next" : "Suivante",
"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",
"Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.",
@ -199,14 +231,16 @@ OC.L10N.register(
"Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.",
"Direct" : "Direct",
"Auto" : "Auto",
"Shared Folder" : "Dossier partagé",
"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 download files" : "Échec du téléchargement des 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}."

66
l10n/fr.json vendored
View File

@ -1,17 +1,19 @@
{ "translations": {
"Memories" : "Souvenirs",
"Yet another photo management app" : "Une nouvelle application de gestion des photos",
"Fast, modern and advanced photo management suite" : "Suite d'outils de gestion de photos rapide, moderne et avancée",
"Settings" : "Paramètres",
"People" : "Personnes",
"EXIF" : "EXIF",
"Timeline" : "Fil chronologique",
"Folders" : "Dossiers",
"Favorites" : "Favoris",
"Videos" : "Vidéos",
"Albums" : "Albums",
"People" : "Personnes",
"Archive" : "Archive",
"On this day" : "Ce même jour",
"Tags" : "Étiquettes",
"Maps" : "Cartes",
"A better photos experience awaits you" : "Une meilleure expérience photo vous attend",
"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",
@ -20,14 +22,12 @@
"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",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} élément trouvé dans {path}","{n} éléments trouvés dans {path}","{n} éléments trouvés dans {path}"],
"Edit" : "Modifier",
"Loading …" : "Chargement …",
"Cancel" : "Annuler",
"Delete" : "Supprimer",
"Remove from album" : "Supprimer de l'album",
"Download" : "Télécharger",
"Favorite" : "Favoris",
"Unarchive" : "Désarchiver",
@ -43,16 +43,13 @@
"Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés",
"Square grid mode" : "Mode grille carrée",
"Choose Timeline Paths" : "Choisir les chemins de la ligne du temps",
"Choose the root for the folders view" : "Choisissez la racine pour la vue des dossiers",
"Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Close" : "Fermer",
"Previous" : "Précédente",
"Next" : "Suivante",
"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}",
"_{n} item added to album_::_{n} items added to album_" : ["{n} élément ajouté à l'album","{n} éléments ajoutés à l'album","{n} éléments ajoutés à l'album"],
"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",
@ -71,6 +68,8 @@
"New album" : "Nouvel album",
"Create new album" : "Créer un nouvel album",
"Edit album details" : "Modifier les détails de l'album",
"Could not load the selected album" : "Impossible de charger l'album sélectionné",
"Remove Album" : "Retirer l'album",
"Failed to delete {name}." : "Échec de la suppression {name}.",
"Name of the album" : "Nom de l'album",
"Location of the album" : "Emplacement de l'album",
@ -83,7 +82,10 @@
"Create album" : "Créer un album",
"Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}",
"Create a new album." : "Créer un nouvel album",
"_Share with %n user_::_Share with %n users_" : ["Partager avec %n utilisateur","Partager avec %n utilisateurs","Partager avec %n utilisateurs"],
"_%n item_::_%n items_" : ["%n élément ","%n éléments","%n éléments"],
"Save collaborators for this album." : "Enregistrer les collaborateurs pour cet album.",
"Share Album" : "Partager l'album",
"Year" : "Année",
"Month" : "Mois",
"Day" : "Jour",
@ -93,25 +95,55 @@
"Update Exif" : "Mettre à jour l'Exif",
"Newest" : "Plus récent",
"Oldest" : "Plus ancien",
"This feature modifies files in your storage to update Exif data." : "Cette fonctionnalité modifie les fichiers de votre stockage pour mettre à jour les données Exif.",
"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}",
"Title" : "Fonction",
"Description" : "Description",
"Label" : "Étiquette",
"Copyright" : "Droit d'auteur",
"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}.",
"Merge {name} with person" : "Fusionner {name} avec la personne",
"Are you sure you want to merge {name} with {newName}?" : "Êtes-vous sûr de vouloir fusionner {name} avec {newName} ?",
"Too many failures, aborting" : "Trop d'échecs, abandon",
"Error while moving {basename}" : "Erreur lors du déplacement de {basename}",
"Failed to move {name}." : "Impossible de déplacer {name}.",
"Move selected photos to person" : "Déplacer les photos sélectionnées vers la personne",
"Are you sure you want to move the selected photos from {name} to {newName}?" : "Êtes-vous sûr de vouloir déplacer les photos sélectionnées de {name} vers {newName} ?",
"Share Folder" : "Partager le dossier",
"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",
"Add Path" : "Ajouter un chemin",
"Add a root to your timeline" : "Ajoutez un début à votre fil chronologique",
"Share album" : "Partager l'album",
"Download album" : "Télécharger l'album",
"Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne",
"Mark person in preview" : "Marquer la personne dans l'aperçu",
"Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche",
"Move right" : "Vers la droite",
"Failed to get Exif data. Metadata may be lost!" : "Échec de la récupération des données Exif. Les métadonnées peuvent être perdues !",
"No Exif data found! Continue?" : "Aucune donnée Exif trouvée ! Continuer ?",
"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",
"Share" : "Partage",
"Sidebar" : "Panneau latéral",
"Download Video" : "Télécharger la vidéo",
"Slideshow" : "Diaporama",
"Close" : "Fermer",
"Previous" : "Précédente",
"Next" : "Suivante",
"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",
"Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.",
@ -197,14 +229,16 @@
"Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.",
"Direct" : "Direct",
"Auto" : "Auto",
"Shared Folder" : "Dossier partagé",
"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 download files" : "Échec du téléchargement des 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}."

4
l10n/gd.js vendored
View File

@ -10,13 +10,13 @@ OC.L10N.register(
"Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Back" : "Air ais",
"Save" : "Sàbhail",
"Name" : "Ainm",
"Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Undo" : "Neo-dhèan"
},
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");

4
l10n/gd.json vendored
View File

@ -8,13 +8,13 @@
"Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Back" : "Air ais",
"Save" : "Sàbhail",
"Name" : "Ainm",
"Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Undo" : "Neo-dhèan"
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
}

18
l10n/gl.js vendored
View File

@ -2,15 +2,14 @@ OC.L10N.register(
"memories",
{
"Settings" : "Axustes",
"People" : "Xente",
"Timeline" : "Liña temporal",
"Folders" : "Cartafoles",
"Favorites" : "Favoritos",
"Videos" : "Vídeos",
"People" : "Xente",
"Archive" : "Aquivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios sen gardar",
"Edit" : "Editar",
"Loading …" : "Cargando…",
"Cancel" : "Cancelar",
@ -19,10 +18,6 @@ OC.L10N.register(
"Favorite" : "Favorito",
"Unarchive" : "Desarquivar",
"View in folder" : "Ver no cartafol",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Copy public link" : "Copiar a ligazón pública",
"Public link" : "Ligazón pública",
"Back" : "Atrás",
@ -33,15 +28,25 @@ OC.L10N.register(
"Time" : "Hora",
"Hour" : "Hora",
"Minute" : "Minuto",
"Title" : "Título",
"Description" : "Descrición",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Retirar",
"Unsaved changes" : "Cambios sen gardar",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Reset" : "Restabelecer",
"Continue" : "Continuar",
"Undo" : "Desfacer",
"Redo" : "Refacer",
"Zoom in" : "Achegar",
"Draw" : "Debuxa",
"Original" : "Orixinal",
"Custom" : "Personalizado",
"Value" : "Valor",
@ -53,6 +58,7 @@ OC.L10N.register(
"Extension" : "Extensión",
"Name is required." : "É obrigatorio o nome.",
"Quality" : "Calidade",
"Direct" : "Directa",
"Auto" : "Automático"
},
"nplurals=2; plural=(n != 1);");

18
l10n/gl.json vendored
View File

@ -1,14 +1,13 @@
{ "translations": {
"Settings" : "Axustes",
"People" : "Xente",
"Timeline" : "Liña temporal",
"Folders" : "Cartafoles",
"Favorites" : "Favoritos",
"Videos" : "Vídeos",
"People" : "Xente",
"Archive" : "Aquivar",
"Tags" : "Etiquetas",
"Maps" : "Mapas",
"Unsaved changes" : "Cambios sen gardar",
"Edit" : "Editar",
"Loading …" : "Cargando…",
"Cancel" : "Cancelar",
@ -17,10 +16,6 @@
"Favorite" : "Favorito",
"Unarchive" : "Desarquivar",
"View in folder" : "Ver no cartafol",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Copy public link" : "Copiar a ligazón pública",
"Public link" : "Ligazón pública",
"Back" : "Atrás",
@ -31,15 +26,25 @@
"Time" : "Hora",
"Hour" : "Hora",
"Minute" : "Minuto",
"Title" : "Título",
"Description" : "Descrición",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome",
"Update" : "Actualizar",
"Refresh" : "Actualizar",
"Remove" : "Retirar",
"Unsaved changes" : "Cambios sen gardar",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Reset" : "Restabelecer",
"Continue" : "Continuar",
"Undo" : "Desfacer",
"Redo" : "Refacer",
"Zoom in" : "Achegar",
"Draw" : "Debuxa",
"Original" : "Orixinal",
"Custom" : "Personalizado",
"Value" : "Valor",
@ -51,6 +56,7 @@
"Extension" : "Extensión",
"Name is required." : "É obrigatorio o nome.",
"Quality" : "Calidade",
"Direct" : "Directa",
"Auto" : "Automático"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

15
l10n/he.js vendored
View File

@ -9,7 +9,6 @@ OC.L10N.register(
"Archive" : "לארכיון",
"Tags" : "תגיות",
"Maps" : "מפות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה",
"Loading …" : "בטעינה…",
"Cancel" : "ביטול",
@ -18,10 +17,6 @@ OC.L10N.register(
"Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי",
"Back" : "חזרה",
@ -32,10 +27,19 @@ OC.L10N.register(
"Time" : "זמן",
"Hour" : "שעה",
"Minute" : "דקה",
"Title" : "תפקיד",
"Description" : "תיאור",
"Label" : "תווית",
"Copyright" : "זכויות יוצרים",
"Name" : "שם",
"Update" : "עדכון",
"Refresh" : "רענון",
"Remove" : "הסרה",
"Unsaved changes" : "שינויים שלא נשמרו",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Reset" : "איפוס",
"Continue" : "להמשך",
"Undo" : "ביטול",
@ -50,6 +54,7 @@ OC.L10N.register(
"Extension" : "הרחבה",
"Name is required." : "נדרש שם.",
"Quality" : "איכות",
"Direct" : "ישיר",
"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;");

15
l10n/he.json vendored
View File

@ -7,7 +7,6 @@
"Archive" : "לארכיון",
"Tags" : "תגיות",
"Maps" : "מפות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה",
"Loading …" : "בטעינה…",
"Cancel" : "ביטול",
@ -16,10 +15,6 @@
"Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי",
"Back" : "חזרה",
@ -30,10 +25,19 @@
"Time" : "זמן",
"Hour" : "שעה",
"Minute" : "דקה",
"Title" : "תפקיד",
"Description" : "תיאור",
"Label" : "תווית",
"Copyright" : "זכויות יוצרים",
"Name" : "שם",
"Update" : "עדכון",
"Refresh" : "רענון",
"Remove" : "הסרה",
"Unsaved changes" : "שינויים שלא נשמרו",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Reset" : "איפוס",
"Continue" : "להמשך",
"Undo" : "ביטול",
@ -48,6 +52,7 @@
"Extension" : "הרחבה",
"Name is required." : "נדרש שם.",
"Quality" : "איכות",
"Direct" : "ישיר",
"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;"
}

17
l10n/hr.js vendored
View File

@ -2,15 +2,14 @@ OC.L10N.register(
"memories",
{
"Settings" : "Postavke",
"People" : "Ljudi",
"Timeline" : "Vremenska crta",
"Folders" : "Mape",
"Favorites" : "Favoriti",
"Videos" : "Videozapisi",
"People" : "Ljudi",
"Archive" : "Arhiva",
"Tags" : "Oznake",
"Maps" : "Karte",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi",
"Loading …" : "Učitavanje…",
"Cancel" : "Odustani",
@ -19,10 +18,6 @@ OC.L10N.register(
"Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica",
"Back" : "Natrag",
@ -33,11 +28,20 @@ OC.L10N.register(
"Time" : "Vrijeme",
"Hour" : "Sat",
"Minute" : "Minuta",
"Title" : "Naslov",
"Description" : "Opis",
"Label" : "Oznaka",
"Copyright" : "Autorsko pravo",
"Name" : "Naziv",
"Update" : "Ažuriraj",
"Refresh" : "Osvježi",
"Remove" : "Ukloni",
"Share folder" : "Dijeli mapu",
"Unsaved changes" : "Nespremljene promjene",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Reset" : "Resetiraj",
"Continue" : "Nastavi",
"Undo" : "Poništi",
@ -53,6 +57,7 @@ OC.L10N.register(
"Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta",
"Direct" : "Izravno",
"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;");

17
l10n/hr.json vendored
View File

@ -1,14 +1,13 @@
{ "translations": {
"Settings" : "Postavke",
"People" : "Ljudi",
"Timeline" : "Vremenska crta",
"Folders" : "Mape",
"Favorites" : "Favoriti",
"Videos" : "Videozapisi",
"People" : "Ljudi",
"Archive" : "Arhiva",
"Tags" : "Oznake",
"Maps" : "Karte",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi",
"Loading …" : "Učitavanje…",
"Cancel" : "Odustani",
@ -17,10 +16,6 @@
"Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica",
"Back" : "Natrag",
@ -31,11 +26,20 @@
"Time" : "Vrijeme",
"Hour" : "Sat",
"Minute" : "Minuta",
"Title" : "Naslov",
"Description" : "Opis",
"Label" : "Oznaka",
"Copyright" : "Autorsko pravo",
"Name" : "Naziv",
"Update" : "Ažuriraj",
"Refresh" : "Osvježi",
"Remove" : "Ukloni",
"Share folder" : "Dijeli mapu",
"Unsaved changes" : "Nespremljene promjene",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Reset" : "Resetiraj",
"Continue" : "Nastavi",
"Undo" : "Poništi",
@ -51,6 +55,7 @@
"Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta",
"Direct" : "Izravno",
"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;"
}

49
l10n/hu.js vendored
View File

@ -2,20 +2,19 @@ OC.L10N.register(
"memories",
{
"Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás",
"# 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." : "# Emlékek\n\nAz Emlékek egy *teljes értékű* fényképkezelő megoldás a Nextcloudhoz, többek között az alábbi speciális funkciókkal:\n\n- **📸 Idővonal**: Fényképek és videók rendezése az Exif-adatokból kinyert felvételi dátum alapján.\n- **⏪ Visszatekerés**: Azonnali visszaugrás a múltba, hogy újra átélhesse az emlékeit.\n- **🤖 MI-alapú címkézés**: Emberekről és tárgyakról készült képek csoportosítása MI segítségével, a [recognize](https://github.com/nextcloud/recognize) alkalmazásra támaszkodva.\n- **🖼️ Albumok**: Albumok létrehozása a fényképek és videók csoportosításához. Majd ezek megosztás másokkal.\n- **🫱🏻‍🫲🏻 Külső megosztás**: Fényképek és videók megosztása a Nextcloud-példányán kívüli emberekkel.\n- **📱 Mobilos támogatás**: A webalkalmazás segítségével tetszőleges alakú és méretű eszközön működik.\n- **✏️ Metaadatok szerkesztése**: Fényképek dátumának gyors és könnyű szerkesztése.\n- **📦 Archívum**: Azon képek külön mappában tárolása, melyeket nem akar az idővonalán látni.\n- **📹 Videók átkódolása**: Az Emlékek átkódolja a videókat, és HLS-t használ a maximális teljesítmény érdekében.\n- **⚡️ Teljesítmény**: Úgy általánosságban, az Emlékek rendkívül gyors.\n\n## 🌐 Online demó\n\n- Hogy megtudja hogy néz ki és milyen használni az Emlékeket, nézze meg a [nyilvános demót](https://memories-demo.radialapps.com/apps/memories/).\n- A demó csak olvasható, és lassú lehet (ingyenes virtuális gép az [Oracle Cloud-tól](https://www.oracle.com/cloud/free/)).\n- A fényképekért köszönet [Unsplashnek](https://unsplash.com/) (az egyes köszönetnyilvánításokért nézze meg az egyes mappákat).\n\n## 🚀 Telepítés\n\n1. Telepítse az alkalmazást a Nextcloud alkalmazástárából.\n1. Végezze el a javasolt [beállítási lépéseket](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Futtassa a `php ./occ memories:index` parancsot, hogy előállítsa a meglévő fényképek metaadatindexét.\n1. Nyissa meg az 📷 Emlékek alkalmazást a Nextcloudban, és állítsa be a fényképeit tartalmazó könyvtárat.",
"Fast, modern and advanced photo management suite" : "Gyors, modern és fejlett fényképkezelő csomag",
"Settings" : "Beállítások",
"People" : "Emberek",
"EXIF" : "EXIF",
"Timeline" : "Idővonal",
"Folders" : "Mappák",
"Favorites" : "Kedvencek",
"Videos" : "Videók",
"Albums" : "Albumok",
"People" : "Emberek",
"Archive" : "Archívum",
"On this day" : "A mai napon",
"Tags" : "Címkék",
"Maps" : "Térképek",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Egy jobb fényképes élmény várja",
"Choose the root folder of your timeline to begin" : "A kezdéshez válasszon gyökérmappát az idővonaláról",
"If you just installed Memories, run:" : "Ha csak most telepítette az Emlékek alkalmazást, futtassa ezt:",
@ -25,13 +24,7 @@ OC.L10N.register(
"You can always change this later in settings" : "Később bármikor módosíthatja a beállításokban",
"Choose the root of your timeline" : "Válassza ki a gyökeret az idővonaláról",
"The selected folder does not seem to be valid. Try again." : "A kiválasztott mappa nem tűnik érvényesnek. Próbálja újra.",
"Found {total} photos in {path}" : "Összesen {total} fénykép a következőben: {path}",
"Failed to get Exif data. Metadata may be lost!" : "Az Exif-adatok lekérése sikertelen. A metaadatok elveszhetnek.",
"No Exif data found! Continue?" : "Nem találhatók Exif-adatok. Folytatja?",
"Image saved successfully" : "A kép sikeresen mentve",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} elem található a következőben: {path}","{n} elem található a következőben: {path}"],
"Edit" : "Szerkesztés",
"Loading …" : "Betöltés…",
"Cancel" : "Mégse",
@ -48,7 +41,6 @@ OC.L10N.register(
"You are about to download a large number of files. Are you sure?" : "Sok fájl letöltésére készül. Biztos benne?",
"You are about to delete a large number of files. Are you sure?" : "Sok fájl törlésére készül. Biztos benne?",
"You are about to touch a large number of files. Are you sure?" : "Sok fájl érintésére készül. Biztos benne?",
"Could not remove photos from album" : "Nem sikerült a fényképek eltávolítása az albumból",
"_{n} selected_::_{n} selected_" : ["{n} kiválasztva","{n} kiválasztva"],
"Timeline Path" : "Idővonal elérési útja",
"Folders Path" : "Mappák útvonala",
@ -58,16 +50,8 @@ OC.L10N.register(
"Choose the root for the folders view" : "Válassza ki a mappanézet gyökerét",
"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",
"Download Video" : "Videó letöltése",
"Close" : "Bezárás",
"Previous" : "Előző",
"Next" : "Következő",
"Video sharing not supported yet" : "A videómegosztás még nem támogatott",
"Cannot share this type of data" : "Az ilyen típusú adatok nem oszthatók meg",
"Processing … {n}/{m}" : "Feldolgozás… {n}/{m}",
"{n} photos added to album" : "{n} fénykép hozzáadva az albumhoz",
"_{n} item added to album_::_{n} items added to album_" : ["{n} elem hozzáadva az albumhoz","{n} elem hozzáadva az albumhoz"],
"Search for collaborators" : "Közreműködők keresése",
"Search people or groups" : "Felhasználó vagy csoport keresése",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} hozzáadása a közreműködőkhöz",
@ -113,9 +97,11 @@ OC.L10N.register(
"Update Exif" : "Exif frissítése",
"Newest" : "Legújabb",
"Oldest" : "Legrégebbi",
"This feature modifies files in your storage to update Exif data." : "Ez a funkció módosítja a tárolóban lévő fájlokat, hogy frissítse az Exif-adataikat.",
"Exercise caution and make sure you have backups." : "Legyen figyelmes, és győződjön meg róla, hogy van biztonsági mentése.",
"Loading data … {n}/{m}" : "Adatok betöltése… {n}/{m}",
"Title" : "Cím",
"Description" : "Leírás",
"Label" : "Címke",
"Copyright" : "Szerzői jog",
"Remove person" : "Személy eltávolítása",
"Are you sure you want to remove {name}?" : "Biztos, hogy eltávolítja a következőt: {name}?",
"Name" : "Név",
@ -144,6 +130,21 @@ OC.L10N.register(
"Share folder" : "Mappa megosztása",
"Move left" : "Mozgatás balra",
"Move right" : "Mozgatás jobbra",
"Failed to get Exif data. Metadata may be lost!" : "Az Exif-adatok lekérése sikertelen. A metaadatok elveszhetnek.",
"No Exif data found! Continue?" : "Nem találhatók Exif-adatok. Folytatja?",
"Image saved successfully" : "A kép sikeresen mentve",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"Share" : "Megosztás",
"Sidebar" : "Oldalsáv",
"Download Video" : "Videó letöltése",
"Slideshow" : "Diavetítés",
"Close" : "Bezárás",
"Previous" : "Előző",
"Next" : "Következő",
"Video sharing not supported yet" : "A videómegosztás még nem támogatott",
"Cannot share this type of data" : "Az ilyen típusú adatok nem oszthatók meg",
"Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.",
@ -229,6 +230,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret",
"Transcoding failed." : "Az átkódolás sikertelen.",
"Direct" : "Közvetlen",
"Auto" : "Automatikus",
"Shared Folder" : "Megosztott mappa",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
@ -237,7 +239,6 @@ OC.L10N.register(
"Error: {msg}" : "Hiba: {msg}",
"Failed to delete files." : "A fájlok törlése sikertelen.",
"Failed to delete {fileName}." : "A(z) {fileName} törlése sikertelen.",
"Failed to download some files." : "Egyes fájlok letöltése sikertelen.",
"Failed to favorite files." : "A fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite some files." : "Egyes fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite {fileName}." : "A(z) {fileName} kedvencnek jelölése sikertelen."

49
l10n/hu.json vendored
View File

@ -1,19 +1,18 @@
{ "translations": {
"Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás",
"# 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." : "# Emlékek\n\nAz Emlékek egy *teljes értékű* fényképkezelő megoldás a Nextcloudhoz, többek között az alábbi speciális funkciókkal:\n\n- **📸 Idővonal**: Fényképek és videók rendezése az Exif-adatokból kinyert felvételi dátum alapján.\n- **⏪ Visszatekerés**: Azonnali visszaugrás a múltba, hogy újra átélhesse az emlékeit.\n- **🤖 MI-alapú címkézés**: Emberekről és tárgyakról készült képek csoportosítása MI segítségével, a [recognize](https://github.com/nextcloud/recognize) alkalmazásra támaszkodva.\n- **🖼️ Albumok**: Albumok létrehozása a fényképek és videók csoportosításához. Majd ezek megosztás másokkal.\n- **🫱🏻‍🫲🏻 Külső megosztás**: Fényképek és videók megosztása a Nextcloud-példányán kívüli emberekkel.\n- **📱 Mobilos támogatás**: A webalkalmazás segítségével tetszőleges alakú és méretű eszközön működik.\n- **✏️ Metaadatok szerkesztése**: Fényképek dátumának gyors és könnyű szerkesztése.\n- **📦 Archívum**: Azon képek külön mappában tárolása, melyeket nem akar az idővonalán látni.\n- **📹 Videók átkódolása**: Az Emlékek átkódolja a videókat, és HLS-t használ a maximális teljesítmény érdekében.\n- **⚡️ Teljesítmény**: Úgy általánosságban, az Emlékek rendkívül gyors.\n\n## 🌐 Online demó\n\n- Hogy megtudja hogy néz ki és milyen használni az Emlékeket, nézze meg a [nyilvános demót](https://memories-demo.radialapps.com/apps/memories/).\n- A demó csak olvasható, és lassú lehet (ingyenes virtuális gép az [Oracle Cloud-tól](https://www.oracle.com/cloud/free/)).\n- A fényképekért köszönet [Unsplashnek](https://unsplash.com/) (az egyes köszönetnyilvánításokért nézze meg az egyes mappákat).\n\n## 🚀 Telepítés\n\n1. Telepítse az alkalmazást a Nextcloud alkalmazástárából.\n1. Végezze el a javasolt [beállítási lépéseket](https://github.com/pulsejet/memories/wiki/Extra-Configuration).\n1. Futtassa a `php ./occ memories:index` parancsot, hogy előállítsa a meglévő fényképek metaadatindexét.\n1. Nyissa meg az 📷 Emlékek alkalmazást a Nextcloudban, és állítsa be a fényképeit tartalmazó könyvtárat.",
"Fast, modern and advanced photo management suite" : "Gyors, modern és fejlett fényképkezelő csomag",
"Settings" : "Beállítások",
"People" : "Emberek",
"EXIF" : "EXIF",
"Timeline" : "Idővonal",
"Folders" : "Mappák",
"Favorites" : "Kedvencek",
"Videos" : "Videók",
"Albums" : "Albumok",
"People" : "Emberek",
"Archive" : "Archívum",
"On this day" : "A mai napon",
"Tags" : "Címkék",
"Maps" : "Térképek",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Egy jobb fényképes élmény várja",
"Choose the root folder of your timeline to begin" : "A kezdéshez válasszon gyökérmappát az idővonaláról",
"If you just installed Memories, run:" : "Ha csak most telepítette az Emlékek alkalmazást, futtassa ezt:",
@ -23,13 +22,7 @@
"You can always change this later in settings" : "Később bármikor módosíthatja a beállításokban",
"Choose the root of your timeline" : "Válassza ki a gyökeret az idővonaláról",
"The selected folder does not seem to be valid. Try again." : "A kiválasztott mappa nem tűnik érvényesnek. Próbálja újra.",
"Found {total} photos in {path}" : "Összesen {total} fénykép a következőben: {path}",
"Failed to get Exif data. Metadata may be lost!" : "Az Exif-adatok lekérése sikertelen. A metaadatok elveszhetnek.",
"No Exif data found! Continue?" : "Nem találhatók Exif-adatok. Folytatja?",
"Image saved successfully" : "A kép sikeresen mentve",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} elem található a következőben: {path}","{n} elem található a következőben: {path}"],
"Edit" : "Szerkesztés",
"Loading …" : "Betöltés…",
"Cancel" : "Mégse",
@ -46,7 +39,6 @@
"You are about to download a large number of files. Are you sure?" : "Sok fájl letöltésére készül. Biztos benne?",
"You are about to delete a large number of files. Are you sure?" : "Sok fájl törlésére készül. Biztos benne?",
"You are about to touch a large number of files. Are you sure?" : "Sok fájl érintésére készül. Biztos benne?",
"Could not remove photos from album" : "Nem sikerült a fényképek eltávolítása az albumból",
"_{n} selected_::_{n} selected_" : ["{n} kiválasztva","{n} kiválasztva"],
"Timeline Path" : "Idővonal elérési útja",
"Folders Path" : "Mappák útvonala",
@ -56,16 +48,8 @@
"Choose the root for the folders view" : "Válassza ki a mappanézet gyökerét",
"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",
"Download Video" : "Videó letöltése",
"Close" : "Bezárás",
"Previous" : "Előző",
"Next" : "Következő",
"Video sharing not supported yet" : "A videómegosztás még nem támogatott",
"Cannot share this type of data" : "Az ilyen típusú adatok nem oszthatók meg",
"Processing … {n}/{m}" : "Feldolgozás… {n}/{m}",
"{n} photos added to album" : "{n} fénykép hozzáadva az albumhoz",
"_{n} item added to album_::_{n} items added to album_" : ["{n} elem hozzáadva az albumhoz","{n} elem hozzáadva az albumhoz"],
"Search for collaborators" : "Közreműködők keresése",
"Search people or groups" : "Felhasználó vagy csoport keresése",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} hozzáadása a közreműködőkhöz",
@ -111,9 +95,11 @@
"Update Exif" : "Exif frissítése",
"Newest" : "Legújabb",
"Oldest" : "Legrégebbi",
"This feature modifies files in your storage to update Exif data." : "Ez a funkció módosítja a tárolóban lévő fájlokat, hogy frissítse az Exif-adataikat.",
"Exercise caution and make sure you have backups." : "Legyen figyelmes, és győződjön meg róla, hogy van biztonsági mentése.",
"Loading data … {n}/{m}" : "Adatok betöltése… {n}/{m}",
"Title" : "Cím",
"Description" : "Leírás",
"Label" : "Címke",
"Copyright" : "Szerzői jog",
"Remove person" : "Személy eltávolítása",
"Are you sure you want to remove {name}?" : "Biztos, hogy eltávolítja a következőt: {name}?",
"Name" : "Név",
@ -142,6 +128,21 @@
"Share folder" : "Mappa megosztása",
"Move left" : "Mozgatás balra",
"Move right" : "Mozgatás jobbra",
"Failed to get Exif data. Metadata may be lost!" : "Az Exif-adatok lekérése sikertelen. A metaadatok elveszhetnek.",
"No Exif data found! Continue?" : "Nem találhatók Exif-adatok. Folytatja?",
"Image saved successfully" : "A kép sikeresen mentve",
"Error saving image" : "Hiba a kép mentése során",
"Unsaved changes" : "Mentetlen változtatások",
"Drop changes" : "Változtatások elvetése",
"Share" : "Megosztás",
"Sidebar" : "Oldalsáv",
"Download Video" : "Videó letöltése",
"Slideshow" : "Diavetítés",
"Close" : "Bezárás",
"Previous" : "Előző",
"Next" : "Következő",
"Video sharing not supported yet" : "A videómegosztás még nem támogatott",
"Cannot share this type of data" : "Az ilyen típusú adatok nem oszthatók meg",
"Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.",
@ -227,6 +228,7 @@
"Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret",
"Transcoding failed." : "Az átkódolás sikertelen.",
"Direct" : "Közvetlen",
"Auto" : "Automatikus",
"Shared Folder" : "Megosztott mappa",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
@ -235,7 +237,6 @@
"Error: {msg}" : "Hiba: {msg}",
"Failed to delete files." : "A fájlok törlése sikertelen.",
"Failed to delete {fileName}." : "A(z) {fileName} törlése sikertelen.",
"Failed to download some files." : "Egyes fájlok letöltése sikertelen.",
"Failed to favorite files." : "A fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite some files." : "Egyes fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite {fileName}." : "A(z) {fileName} kedvencnek jelölése sikertelen."

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