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. 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) ## v4.8.0, v3.8.0 (2022-11-22)
- **Feature**: Support for Live Photos ([#124](https://github.com/pulsejet/memories/issues/124)) - **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 sh scripts/get-exiftool.sh
php-cs-fixer: 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 composer require --working-dir=tools/php-cs-fixer friendsofphp/php-cs-fixer
php-lint: 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. - **📸 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. - **⏪ 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. - **🖼️ 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. - **🫱🏻‍🫲🏻 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. - **📱 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"> xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>memories</id> <id>memories</id>
<name>Memories</name> <name>Memories</name>
<summary>Yet another photo management app</summary> <summary>Fast, modern and advanced photo management suite</summary>
<description><![CDATA[ <description><![CDATA[
# Memories # 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. - **📸 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. - **⏪ 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. - **🖼️ 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. - **🫱🏻‍🫲🏻 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. - **📱 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. 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. 1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.
]]></description> ]]></description>
<version>4.8.2</version> <version>4.9.3</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="radialapps@gmail.com" >Varun Patil</author> <author mail="radialapps@gmail.com" >Varun Patil</author>
<namespace>Memories</namespace> <namespace>Memories</namespace>

View File

@ -23,7 +23,8 @@ return [
// Routes with params // Routes with params
w(['name' => 'Page#folder', 'url' => '/folders/{path}', 'verb' => 'GET'], 'path'), w(['name' => 'Page#folder', 'url' => '/folders/{path}', 'verb' => 'GET'], 'path'),
w(['name' => 'Page#albums', 'url' => '/albums/{id}', 'verb' => 'GET'], 'id'), 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'), w(['name' => 'Page#tags', 'url' => '/tags/{name}', 'verb' => 'GET'], 'name'),
// Public folder share // Public folder share
@ -44,23 +45,31 @@ return [
['name' => 'Days#day', 'url' => '/api/days/{id}', 'verb' => 'GET'], ['name' => 'Days#day', 'url' => '/api/days/{id}', 'verb' => 'GET'],
['name' => 'Days#dayPost', 'url' => '/api/days', 'verb' => 'POST'], ['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#albums', 'url' => '/api/albums', 'verb' => 'GET'],
['name' => 'Albums#download', 'url' => '/api/albums/download', 'verb' => 'POST'],
['name' => 'Faces#faces', 'url' => '/api/faces', 'verb' => 'GET'], ['name' => 'Tags#tags', 'url' => '/api/tags', 'verb' => 'GET'],
['name' => 'Faces#preview', 'url' => '/api/faces/preview/{id}', '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#info', 'url' => '/api/image/info/{id}', 'verb' => 'GET'],
['name' => 'Image#setExif', 'url' => '/api/image/set-exif/{id}', 'verb' => 'PATCH'], ['name' => 'Image#setExif', 'url' => '/api/image/set-exif/{id}', 'verb' => 'PATCH'],
['name' => 'Image#jpeg', 'url' => '/api/image/jpeg/{id}', 'verb' => 'GET'], ['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#transcode', 'url' => '/api/video/transcode/{client}/{fileid}/{profile}', 'verb' => 'GET'],
['name' => 'Video#livephoto', 'url' => '/api/video/livephoto/{fileid}', '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 // Config API
['name' => 'Other#setUserConfig', 'url' => '/api/config/{key}', 'verb' => 'PUT'], ['name' => 'Other#setUserConfig', 'url' => '/api/config/{key}', 'verb' => 'PUT'],

View File

@ -12,6 +12,6 @@ test.describe("Open", () => {
test("Open folder", async ({ page }) => { test("Open folder", async ({ page }) => {
await page.locator("text=Local").click(); 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( await expect(page).toHaveURL(
"http://localhost:8080/index.php/apps/memories" + route "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.describe("Open", () => {
test("Look for Images", async ({ page }) => { test("Look for Images", async ({ page }) => {
expect( expect(
await page.locator('img[src*="core/preview"]').count(), await page.locator('img[src*="api/image/preview"]').count(),
"Number of previews" "Number of previews"
).toBeGreaterThan(4); ).toBeGreaterThan(4);
await page.waitForTimeout(1000); await page.waitForTimeout(1000);
@ -50,7 +50,9 @@ test.describe("Open", () => {
// refresh page // refresh page
await page.reload(); await page.reload();
await page.waitForTimeout(4000); // cache 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="${src1}"]`).count()).toBe(0);
expect(await page.locator(`img[src="${src2}"]`).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", "Archive" : "Argief",
"Tags" : "Etikette", "Tags" : "Etikette",
"Maps" : "Kaarte", "Maps" : "Kaarte",
"Unsaved changes" : "Onbewaarde veranderinge",
"Edit" : "Wysig", "Edit" : "Wysig",
"Loading …" : "Laai …", "Loading …" : "Laai …",
"Cancel" : "Kanselleer", "Cancel" : "Kanselleer",
@ -16,10 +15,6 @@ OC.L10N.register(
"Download" : "Laai af", "Download" : "Laai af",
"Favorite" : "Gunsteling", "Favorite" : "Gunsteling",
"View in folder" : "Vertoon in gids", "View in folder" : "Vertoon in gids",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Public link" : "Openbare skakel", "Public link" : "Openbare skakel",
"Back" : "Terug", "Back" : "Terug",
"Save" : "Bewaar", "Save" : "Bewaar",
@ -27,10 +22,18 @@ OC.L10N.register(
"Day" : "Dag", "Day" : "Dag",
"Time" : "Tyd", "Time" : "Tyd",
"Hour" : "Uur", "Hour" : "Uur",
"Title" : "Titel",
"Description" : "Beskrywing",
"Label" : "Etiket",
"Name" : "Naam", "Name" : "Naam",
"Update" : "Werk by", "Update" : "Werk by",
"Refresh" : "Verfris", "Refresh" : "Verfris",
"Remove" : "Verwyder", "Remove" : "Verwyder",
"Unsaved changes" : "Onbewaarde veranderinge",
"Share" : "Deel",
"Close" : "Sluit",
"Previous" : "Vorige",
"Next" : "Volgende",
"Reset" : "Herstel", "Reset" : "Herstel",
"Continue" : "Gaan voort", "Continue" : "Gaan voort",
"Original" : "Oorspronklik", "Original" : "Oorspronklik",

13
l10n/af.json vendored
View File

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

4
l10n/an.js vendored
View File

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

4
l10n/an.json vendored
View File

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

13
l10n/ar.js vendored
View File

@ -16,10 +16,6 @@ OC.L10N.register(
"Download" : "تنزيل", "Download" : "تنزيل",
"Favorite" : "المفضلة", "Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد", "View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Copy public link" : "نسخ الرابط العام", "Copy public link" : "نسخ الرابط العام",
"Back" : "العودة", "Back" : "العودة",
"Save" : "Save", "Save" : "Save",
@ -27,10 +23,18 @@ OC.L10N.register(
"Day" : "اليوم", "Day" : "اليوم",
"Time" : "إلى وقت", "Time" : "إلى وقت",
"Hour" : "الساعة", "Hour" : "الساعة",
"Title" : "العنوان",
"Description" : "الوصف",
"Label" : "تسمية",
"Copyright" : "حقوق التأليف",
"Name" : "الاسم", "Name" : "الاسم",
"Update" : "تحديث", "Update" : "تحديث",
"Refresh" : "إنعاش", "Refresh" : "إنعاش",
"Remove" : "حذف", "Remove" : "حذف",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Reset" : "إعادة الضبط", "Reset" : "إعادة الضبط",
"Continue" : "متابعة", "Continue" : "متابعة",
"Undo" : "تراجع", "Undo" : "تراجع",
@ -44,6 +48,7 @@ OC.L10N.register(
"Position" : "الموقع", "Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب", "Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة", "Quality" : "الجودة",
"Direct" : "مباشر",
"Auto" : "تلقائي" "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;"); "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" : "تنزيل", "Download" : "تنزيل",
"Favorite" : "المفضلة", "Favorite" : "المفضلة",
"View in folder" : "اعرض في المجلد", "View in folder" : "اعرض في المجلد",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Copy public link" : "نسخ الرابط العام", "Copy public link" : "نسخ الرابط العام",
"Back" : "العودة", "Back" : "العودة",
"Save" : "Save", "Save" : "Save",
@ -25,10 +21,18 @@
"Day" : "اليوم", "Day" : "اليوم",
"Time" : "إلى وقت", "Time" : "إلى وقت",
"Hour" : "الساعة", "Hour" : "الساعة",
"Title" : "العنوان",
"Description" : "الوصف",
"Label" : "تسمية",
"Copyright" : "حقوق التأليف",
"Name" : "الاسم", "Name" : "الاسم",
"Update" : "تحديث", "Update" : "تحديث",
"Refresh" : "إنعاش", "Refresh" : "إنعاش",
"Remove" : "حذف", "Remove" : "حذف",
"Share" : "مشاركة",
"Close" : "إغلاق",
"Previous" : "السابق",
"Next" : "التالي",
"Reset" : "إعادة الضبط", "Reset" : "إعادة الضبط",
"Continue" : "متابعة", "Continue" : "متابعة",
"Undo" : "تراجع", "Undo" : "تراجع",
@ -42,6 +46,7 @@
"Position" : "الموقع", "Position" : "الموقع",
"Name is required." : "حقل الاسم مطلوب", "Name is required." : "حقل الاسم مطلوب",
"Quality" : "الجودة", "Quality" : "الجودة",
"Direct" : "مباشر",
"Auto" : "تلقائي" "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;" },"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", "Download" : "Baxar",
"Favorite" : "Marcar como favoritu", "Favorite" : "Marcar como favoritu",
"View in folder" : "Ver na carpeta", "View in folder" : "Ver na carpeta",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás", "Back" : "Atrás",
"Save" : "Guardar", "Save" : "Guardar",
"Month" : "Mes", "Month" : "Mes",
"Day" : "Día", "Day" : "Día",
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Title" : "Títulu",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome", "Name" : "Nome",
"Update" : "Anovar", "Update" : "Anovar",
"Refresh" : "Refrescar", "Refresh" : "Refrescar",
"Remove" : "Desaniciar", "Remove" : "Desaniciar",
"Share" : "Share",
"Close" : "Zarrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Continue" : "Siguir", "Continue" : "Siguir",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Custom" : "Personalizáu", "Custom" : "Personalizáu",

12
l10n/ast.json vendored
View File

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

10
l10n/az.js vendored
View File

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

10
l10n/az.json vendored
View File

@ -9,18 +9,20 @@
"Delete" : "Sil", "Delete" : "Sil",
"Download" : "Yüklə", "Download" : "Yüklə",
"Favorite" : "İstəkli", "Favorite" : "İstəkli",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Save" : "Saxla", "Save" : "Saxla",
"Month" : "Ay", "Month" : "Ay",
"Day" : "Gün", "Day" : "Gün",
"Time" : "Vaxt", "Time" : "Vaxt",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Name" : "Ad", "Name" : "Ad",
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"Refresh" : "Yenilə", "Refresh" : "Yenilə",
"Remove" : "Sil", "Remove" : "Sil",
"Share" : "Paylaş",
"Close" : "Bağla",
"Previous" : "Əvvələ",
"Next" : "Növbəti",
"Reset" : "Sıfırla", "Reset" : "Sıfırla",
"Size" : "Həcm" "Size" : "Həcm"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"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" : "মুছে", "Delete" : "মুছে",
"Download" : "ডাউনলোড", "Download" : "ডাউনলোড",
"Favorite" : "প্রিয়জন", "Favorite" : "প্রিয়জন",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Back" : "পেছনে যাও", "Back" : "পেছনে যাও",
"Save" : "সংরক্ষণ", "Save" : "সংরক্ষণ",
"Month" : "মাস", "Month" : "মাস",
"Day" : "দিবস", "Day" : "দিবস",
"Time" : "সময়", "Time" : "সময়",
"Hour" : "ঘন্টা", "Hour" : "ঘন্টা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Name" : "নাম", "Name" : "নাম",
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"Refresh" : "নবোদ্যম", "Refresh" : "নবোদ্যম",
"Remove" : "অপসারণ", "Remove" : "অপসারণ",
"Share" : "ভাগাভাগি কর",
"Close" : "বন্ধ",
"Previous" : "পূর্ববর্তী",
"Next" : "পরবর্তী",
"Reset" : "পূণঃনির্ধানণ", "Reset" : "পূণঃনির্ধানণ",
"Continue" : "চালিয়ে যাও", "Continue" : "চালিয়ে যাও",
"Size" : "আকার" "Size" : "আকার"

10
l10n/bn_BD.json vendored
View File

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

11
l10n/br.js vendored
View File

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

11
l10n/br.json vendored
View File

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

12
l10n/bs.js vendored
View File

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

12
l10n/bs.json vendored
View File

@ -6,15 +6,17 @@
"Delete" : "Obriši", "Delete" : "Obriši",
"Download" : "Preuzmi", "Download" : "Preuzmi",
"Favorite" : "Favorit", "Favorite" : "Favorit",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Title" : "Naslov",
"Description" : "Opis",
"Name" : "Ime",
"Update" : "Ažuriraj",
"Share" : "Podjeli", "Share" : "Podjeli",
"Close" : "Zatvori", "Close" : "Zatvori",
"Previous" : "Prethodno", "Previous" : "Prethodno",
"Next" : "Sljedeće", "Next" : "Sljedeće",
"Save" : "Spremi",
"Month" : "Mjesec",
"Day" : "Dan",
"Name" : "Ime",
"Update" : "Ažuriraj",
"Continue" : "Nastavi", "Continue" : "Nastavi",
"Size" : "Veličina" "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);" },"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", "memories",
{ {
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"People" : "Gent",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Folders" : "Carpetes", "Folders" : "Carpetes",
"Favorites" : "Preferits", "Favorites" : "Preferits",
"Videos" : "Vídeos", "Videos" : "Vídeos",
"Albums" : "Àlbums", "Albums" : "Àlbums",
"People" : "Gent",
"Archive" : "Arxiu", "Archive" : "Arxiu",
"On this day" : "Aquest mateix dia", "On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Maps" : "Mapes", "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", "Edit" : "Edita",
"Loading …" : "Carregant …", "Loading …" : "Carregant …",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
@ -23,12 +20,13 @@ OC.L10N.register(
"Favorite" : "Preferit", "Favorite" : "Preferit",
"Unarchive" : "Desbloquejar", "Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta", "View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir", "Add to album" : "Afegeix a l'àlbum",
"Close" : "Tanca", "Delete the public link" : "Esborra l'enllaç públic",
"Previous" : "Anterior", "Public link copied!" : "S'ha copiat l'enllaç públic!",
"Next" : "Següent",
"Copy public link" : "Copia l'enllaç públic", "Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic", "Public link" : "Enllaç públic",
"New album" : "Àlbum nou",
"Name of the album" : "Nom de l'àlbum",
"Back" : "Torna", "Back" : "Torna",
"Save" : "Desa", "Save" : "Desa",
"Year" : "Any", "Year" : "Any",
@ -37,11 +35,25 @@ OC.L10N.register(
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Minute" : "Minut", "Minute" : "Minut",
"Title" : "Títol",
"Description" : "Descripció",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Remove person" : "Esborra la persona",
"Name" : "Cognom", "Name" : "Cognom",
"Rename person" : "Reanomena la persona",
"Update" : "Actualitzar", "Update" : "Actualitzar",
"Refresh" : "Actualitza", "Refresh" : "Actualitza",
"Remove" : "Elimina", "Remove" : "Elimina",
"Merge with different person" : "Fusiona amb una persona diferent",
"Share folder" : "Comparteix la carpeta", "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", "Save as" : "Anomena i desa",
"Reset" : "Restableix", "Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.", "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", "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%)", "Actual size (100%)" : "Mida real (100%)",
"Fit size" : "Talla ajustada", "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);"); "nplurals=2; plural=(n != 1);");

33
l10n/ca.json vendored
View File

@ -1,18 +1,15 @@
{ "translations": { { "translations": {
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"People" : "Gent",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Folders" : "Carpetes", "Folders" : "Carpetes",
"Favorites" : "Preferits", "Favorites" : "Preferits",
"Videos" : "Vídeos", "Videos" : "Vídeos",
"Albums" : "Àlbums", "Albums" : "Àlbums",
"People" : "Gent",
"Archive" : "Arxiu", "Archive" : "Arxiu",
"On this day" : "Aquest mateix dia", "On this day" : "Aquest mateix dia",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Maps" : "Mapes", "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", "Edit" : "Edita",
"Loading …" : "Carregant …", "Loading …" : "Carregant …",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
@ -21,12 +18,13 @@
"Favorite" : "Preferit", "Favorite" : "Preferit",
"Unarchive" : "Desbloquejar", "Unarchive" : "Desbloquejar",
"View in folder" : "Visualitza-ho a la carpeta", "View in folder" : "Visualitza-ho a la carpeta",
"Share" : "Compartir", "Add to album" : "Afegeix a l'àlbum",
"Close" : "Tanca", "Delete the public link" : "Esborra l'enllaç públic",
"Previous" : "Anterior", "Public link copied!" : "S'ha copiat l'enllaç públic!",
"Next" : "Següent",
"Copy public link" : "Copia l'enllaç públic", "Copy public link" : "Copia l'enllaç públic",
"Public link" : "Enllaç públic", "Public link" : "Enllaç públic",
"New album" : "Àlbum nou",
"Name of the album" : "Nom de l'àlbum",
"Back" : "Torna", "Back" : "Torna",
"Save" : "Desa", "Save" : "Desa",
"Year" : "Any", "Year" : "Any",
@ -35,11 +33,25 @@
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Minute" : "Minut", "Minute" : "Minut",
"Title" : "Títol",
"Description" : "Descripció",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Remove person" : "Esborra la persona",
"Name" : "Cognom", "Name" : "Cognom",
"Rename person" : "Reanomena la persona",
"Update" : "Actualitzar", "Update" : "Actualitzar",
"Refresh" : "Actualitza", "Refresh" : "Actualitza",
"Remove" : "Elimina", "Remove" : "Elimina",
"Merge with different person" : "Fusiona amb una persona diferent",
"Share folder" : "Comparteix la carpeta", "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", "Save as" : "Anomena i desa",
"Reset" : "Restableix", "Reset" : "Restableix",
"All changes will be lost." : "Tots els canvis es perdran.", "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", "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%)", "Actual size (100%)" : "Mida real (100%)",
"Fit size" : "Talla ajustada", "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);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

63
l10n/cs.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories", "memories",
{ {
"Memories" : "Vzpomínky", "Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek", "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 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.", "# 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í", "Settings" : "Nastavení",
"People (Recognize)" : "Lidé (rozpoznání)",
"People" : "Lidé",
"People (Face Recognition)" : "Lidé (rozpoznání obličejů)",
"EXIF" : "EXIF",
"Timeline" : "Časová osa", "Timeline" : "Časová osa",
"Folders" : "Složky", "Folders" : "Složky",
"Favorites" : "Oblíbené", "Favorites" : "Oblíbené",
"Videos" : "Videa", "Videos" : "Videa",
"Albums" : "Alba", "Albums" : "Alba",
"People" : "Lidé",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "V tento den", "On this day" : "V tento den",
"Tags" : "Štítky", "Tags" : "Štítky",
"Maps" : "Mapy", "Maps" : "Mapy",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Lepší zážitek z fotek na vás čeká", "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", "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:", "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í", "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", "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.", "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", "_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}"],
"Failed to get Exif data. Metadata may be lost!" : "Nepodařilo se získat Exif metadata může dojít k jejich ztrátě!",
"No Exif data found! Continue?" : "Nenalezena žádná Exif data pokračovat?",
"Image saved successfully" : "Obrázek úspěšně uložen",
"Error saving image" : "Chyb při ukládání obrázku",
"Unsaved changes" : "Neuložené změny",
"Drop changes" : "Zahodit změny",
"Edit" : "Upravit", "Edit" : "Upravit",
"No title" : "Bez nadpisu",
"No description" : "Bez popisu",
"Loading …" : "Načítání…", "Loading …" : "Načítání…",
"Cancel" : "Storno", "Cancel" : "Storno",
"Delete" : "Smazat", "Delete" : "Smazat",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Přidat do oblíbených", "Favorite" : "Přidat do oblíbených",
"Unarchive" : "Zrušit archivování", "Unarchive" : "Zrušit archivování",
"Edit Date/Time" : "Upravit datum/čas", "Edit Date/Time" : "Upravit datum/čas",
"Edit EXIF Data" : "Upravit EXIF data",
"View in folder" : "Zobrazit ve složce", "View in folder" : "Zobrazit ve složce",
"Add to album" : "Přidat do alba", "Add to album" : "Přidat do alba",
"Move to another person" : "Přesunout k jiné osobě", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} vybráno","{n} vybrány","{n} vybráno","{n} vybrány"],
"Timeline Path" : "Popis umístění časové osy", "Timeline Path" : "Popis umístění časové osy",
"Folders Path" : "Popis umístění složek", "Folders Path" : "Popis umístění složek",
@ -57,17 +55,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Zvolte trasy časovou osou", "Choose Timeline Paths" : "Zvolte trasy časovou osou",
"Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek", "Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek",
"Your Timeline" : "Vaše časová osa", "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", "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}", "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 for collaborators" : "Vyhledat spolupracující",
"Search people or groups" : "Hledat uživatele nebo skupiny", "Search people or groups" : "Hledat uživatele nebo skupiny",
"Add {collaboratorLabel} to the collaborators list" : "Přidat {collaboratorLabel} na seznam spolupracujících", "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", "Update Exif" : "Aktualizovat Exif",
"Newest" : "Nejnovější", "Newest" : "Nejnovější",
"Oldest" : "Nejstarší", "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}", "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", "Remove person" : "Odebrat osobu",
"Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?", "Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?",
"Name" : "Název", "Name" : "Název",
@ -138,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Přidat trasu", "Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen", "Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album", "Share album" : "Nasdílet album",
"Download album" : "Stáhnout si album",
"Delete album" : "Smazat album", "Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou", "Merge with different person" : "Sloučit s jinou osobou",
"Mark person in preview" : "Označovat osobu v náhledu", "Mark person in preview" : "Označovat osobu v náhledu",
"Share folder" : "Nasdílet složku", "Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva", "Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava", "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", "Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty", "Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.", "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%)", "Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost", "Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.", "Transcoding failed." : "Překódování se nezdařilo.",
"Direct" : "Přímo",
"Auto" : "Automaticky", "Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka", "Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.", "Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
@ -237,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Chyba: {msg}", "Error: {msg}" : "Chyba: {msg}",
"Failed to delete files." : "Nepodařilo se smazat soubory.", "Failed to delete files." : "Nepodařilo se smazat soubory.",
"Failed to delete {fileName}." : "Nepodařilo se smazat {fileName}.", "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 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 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." "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": { { "translations": {
"Memories" : "Vzpomínky", "Memories" : "Vzpomínky",
"Yet another photo management app" : "Další z aplikací pro správu fotek", "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 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.", "# 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í", "Settings" : "Nastavení",
"People (Recognize)" : "Lidé (rozpoznání)",
"People" : "Lidé",
"People (Face Recognition)" : "Lidé (rozpoznání obličejů)",
"EXIF" : "EXIF",
"Timeline" : "Časová osa", "Timeline" : "Časová osa",
"Folders" : "Složky", "Folders" : "Složky",
"Favorites" : "Oblíbené", "Favorites" : "Oblíbené",
"Videos" : "Videa", "Videos" : "Videa",
"Albums" : "Alba", "Albums" : "Alba",
"People" : "Lidé",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "V tento den", "On this day" : "V tento den",
"Tags" : "Štítky", "Tags" : "Štítky",
"Maps" : "Mapy", "Maps" : "Mapy",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Lepší zážitek z fotek na vás čeká", "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", "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:", "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í", "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", "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.", "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", "_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}"],
"Failed to get Exif data. Metadata may be lost!" : "Nepodařilo se získat Exif metadata může dojít k jejich ztrátě!",
"No Exif data found! Continue?" : "Nenalezena žádná Exif data pokračovat?",
"Image saved successfully" : "Obrázek úspěšně uložen",
"Error saving image" : "Chyb při ukládání obrázku",
"Unsaved changes" : "Neuložené změny",
"Drop changes" : "Zahodit změny",
"Edit" : "Upravit", "Edit" : "Upravit",
"No title" : "Bez nadpisu",
"No description" : "Bez popisu",
"Loading …" : "Načítání…", "Loading …" : "Načítání…",
"Cancel" : "Storno", "Cancel" : "Storno",
"Delete" : "Smazat", "Delete" : "Smazat",
@ -39,6 +37,7 @@
"Favorite" : "Přidat do oblíbených", "Favorite" : "Přidat do oblíbených",
"Unarchive" : "Zrušit archivování", "Unarchive" : "Zrušit archivování",
"Edit Date/Time" : "Upravit datum/čas", "Edit Date/Time" : "Upravit datum/čas",
"Edit EXIF Data" : "Upravit EXIF data",
"View in folder" : "Zobrazit ve složce", "View in folder" : "Zobrazit ve složce",
"Add to album" : "Přidat do alba", "Add to album" : "Přidat do alba",
"Move to another person" : "Přesunout k jiné osobě", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} vybráno","{n} vybrány","{n} vybráno","{n} vybrány"],
"Timeline Path" : "Popis umístění časové osy", "Timeline Path" : "Popis umístění časové osy",
"Folders Path" : "Popis umístění složek", "Folders Path" : "Popis umístění složek",
@ -55,17 +53,11 @@
"Choose Timeline Paths" : "Zvolte trasy časovou osou", "Choose Timeline Paths" : "Zvolte trasy časovou osou",
"Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek", "Choose the root for the folders view" : "Zvolte kořen pro zobrazení složek",
"Your Timeline" : "Vaše časová osa", "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", "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}", "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 for collaborators" : "Vyhledat spolupracující",
"Search people or groups" : "Hledat uživatele nebo skupiny", "Search people or groups" : "Hledat uživatele nebo skupiny",
"Add {collaboratorLabel} to the collaborators list" : "Přidat {collaboratorLabel} na seznam spolupracujících", "Add {collaboratorLabel} to the collaborators list" : "Přidat {collaboratorLabel} na seznam spolupracujících",
@ -111,9 +103,15 @@
"Update Exif" : "Aktualizovat Exif", "Update Exif" : "Aktualizovat Exif",
"Newest" : "Nejnovější", "Newest" : "Nejnovější",
"Oldest" : "Nejstarší", "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}", "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", "Remove person" : "Odebrat osobu",
"Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?", "Are you sure you want to remove {name}?" : "Opravdu chcete {name} odebrat?",
"Name" : "Název", "Name" : "Název",
@ -136,12 +134,28 @@
"Add Path" : "Přidat trasu", "Add Path" : "Přidat trasu",
"Add a root to your timeline" : "Přidat do časové osy kořen", "Add a root to your timeline" : "Přidat do časové osy kořen",
"Share album" : "Nasdílet album", "Share album" : "Nasdílet album",
"Download album" : "Stáhnout si album",
"Delete album" : "Smazat album", "Delete album" : "Smazat album",
"Merge with different person" : "Sloučit s jinou osobou", "Merge with different person" : "Sloučit s jinou osobou",
"Mark person in preview" : "Označovat osobu v náhledu", "Mark person in preview" : "Označovat osobu v náhledu",
"Share folder" : "Nasdílet složku", "Share folder" : "Nasdílet složku",
"Move left" : "Přesunout doleva", "Move left" : "Přesunout doleva",
"Move right" : "Přesunout doprava", "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", "Save as" : "Uložit jako",
"Reset" : "Vrátit na výchozí hodnoty", "Reset" : "Vrátit na výchozí hodnoty",
"All changes will be lost." : "Veškeré změny budou ztraceny.", "All changes will be lost." : "Veškeré změny budou ztraceny.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Skutečná velikost (100%)", "Actual size (100%)" : "Skutečná velikost (100%)",
"Fit size" : "Přizpůsobit velikost", "Fit size" : "Přizpůsobit velikost",
"Transcoding failed." : "Překódování se nezdařilo.", "Transcoding failed." : "Překódování se nezdařilo.",
"Direct" : "Přímo",
"Auto" : "Automaticky", "Auto" : "Automaticky",
"Shared Folder" : "Sdílená složka", "Shared Folder" : "Sdílená složka",
"Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.", "Failed to create {albumName}." : "Nepodařilo se vytvořit {albumName}.",
@ -235,7 +250,7 @@
"Error: {msg}" : "Chyba: {msg}", "Error: {msg}" : "Chyba: {msg}",
"Failed to delete files." : "Nepodařilo se smazat soubory.", "Failed to delete files." : "Nepodařilo se smazat soubory.",
"Failed to delete {fileName}." : "Nepodařilo se smazat {fileName}.", "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 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 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." "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", "Delete" : "Dileu",
"Download" : "Llwytho i lawr", "Download" : "Llwytho i lawr",
"Favorite" : "Ffefryn", "Favorite" : "Ffefryn",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Copy public link" : "Copïo dolen gyhoeddus", "Copy public link" : "Copïo dolen gyhoeddus",
"Back" : "Nôl", "Back" : "Nôl",
"Save" : "Cadw", "Save" : "Cadw",
@ -23,10 +19,16 @@ OC.L10N.register(
"Month" : "Mis", "Month" : "Mis",
"Day" : "Diwrnod", "Day" : "Diwrnod",
"Time" : "Amser", "Time" : "Amser",
"Title" : "Teitl",
"Description" : "Disgrifiad",
"Name" : "Enw", "Name" : "Enw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"Refresh" : "Ail-lwytho", "Refresh" : "Ail-lwytho",
"Remove" : "Gwaredu", "Remove" : "Gwaredu",
"Share" : "Rhannu",
"Close" : "Cau",
"Previous" : "Blaenorol",
"Next" : "Nesaf",
"Undo" : "Dadwneud", "Undo" : "Dadwneud",
"Custom" : "Cyfaddas", "Custom" : "Cyfaddas",
"Size" : "Maint", "Size" : "Maint",

10
l10n/cy_GB.json vendored
View File

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

19
l10n/da.js vendored
View File

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

19
l10n/da.json vendored
View File

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

60
l10n/de.js vendored
View File

@ -2,20 +2,20 @@ OC.L10N.register(
"memories", "memories",
{ {
"Memories" : "Erinnerungen", "Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere App zur Verwaltung von Fotos", "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 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.", "# 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", "Settings" : "Einstellungen",
"People" : "Personen",
"EXIF" : "EXIF",
"Timeline" : "Verlauf", "Timeline" : "Verlauf",
"Folders" : "Ordner", "Folders" : "Ordner",
"Favorites" : "Favoriten", "Favorites" : "Favoriten",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Alben", "Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "An diesem Tag", "On this day" : "An diesem Tag",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Maps" : "Karten", "Maps" : "Karten",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet dich", "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", "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:", "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.", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto in {path} gefunden","{n} Fotos in {path} gefunden "],
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …", "Loading …" : "Lade …",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Delete" : "Löschen", "Delete" : "Löschen",
@ -41,6 +37,7 @@ OC.L10N.register(
"Favorite" : "Favorisieren", "Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren", "Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten", "Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen", "View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen", "Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitlachse", "Timeline Path" : "Pfad der Zeitlachse",
"Folders Path" : "Ordnerpfad", "Folders Path" : "Ordnerpfad",
@ -57,16 +53,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Wähle Pfade der Zeitachse", "Choose Timeline Paths" : "Wähle Pfade der Zeitachse",
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht", "Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste", "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", "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}", "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 for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Nach Benutzer oder Gruppen suchen", "Search people or groups" : "Nach Benutzer oder Gruppen suchen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen", "Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -112,9 +103,15 @@ OC.L10N.register(
"Update Exif" : "Exif aktualisieren", "Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste", "Newest" : "Neueste",
"Oldest" : "Älteste", "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}", "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", "Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?", "Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name", "Name" : "Name",
@ -137,12 +134,28 @@ OC.L10N.register(
"Add Path" : "Pfad hinzufügen", "Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu", "Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu",
"Share album" : "Album teilen", "Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"Delete album" : "Album löschen", "Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen", "Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren", "Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen", "Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben", "Move left" : "Nach links verschieben",
"Move right" : "Nach rechts 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", "Save as" : "Speichern als",
"Reset" : "Zurücksetzen", "Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.", "All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -228,6 +241,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tatsächliche Größe (100%)", "Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen", "Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen", "Transcoding failed." : "Transkodierung fehlgeschlagen",
"Direct" : "Direkt",
"Auto" : "Automatisch", "Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner", "Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.", "Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -236,7 +250,7 @@ OC.L10N.register(
"Error: {msg}" : "Fehler: {msg}", "Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen", "Failed to delete files." : "Löschen der Dateien fehlgeschlagen",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.", "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 files." : "Favorisieren von Dateien fehlgeschlagen",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.", "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." "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": { { "translations": {
"Memories" : "Erinnerungen", "Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere App zur Verwaltung von Fotos", "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 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.", "# 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", "Settings" : "Einstellungen",
"People" : "Personen",
"EXIF" : "EXIF",
"Timeline" : "Verlauf", "Timeline" : "Verlauf",
"Folders" : "Ordner", "Folders" : "Ordner",
"Favorites" : "Favoriten", "Favorites" : "Favoriten",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Alben", "Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "An diesem Tag", "On this day" : "An diesem Tag",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Maps" : "Karten", "Maps" : "Karten",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet dich", "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", "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:", "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.", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto in {path} gefunden","{n} Fotos in {path} gefunden "],
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …", "Loading …" : "Lade …",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Delete" : "Löschen", "Delete" : "Löschen",
@ -39,6 +35,7 @@
"Favorite" : "Favorisieren", "Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren", "Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten", "Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen", "View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen", "Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitlachse", "Timeline Path" : "Pfad der Zeitlachse",
"Folders Path" : "Ordnerpfad", "Folders Path" : "Ordnerpfad",
@ -55,16 +51,11 @@
"Choose Timeline Paths" : "Wähle Pfade der Zeitachse", "Choose Timeline Paths" : "Wähle Pfade der Zeitachse",
"Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht", "Choose the root for the folders view" : "Wähle das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Deine Zeitleiste", "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", "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}", "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 for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Nach Benutzer oder Gruppen suchen", "Search people or groups" : "Nach Benutzer oder Gruppen suchen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen", "Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -110,9 +101,15 @@
"Update Exif" : "Exif aktualisieren", "Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste", "Newest" : "Neueste",
"Oldest" : "Älteste", "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}", "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", "Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?", "Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name", "Name" : "Name",
@ -135,12 +132,28 @@
"Add Path" : "Pfad hinzufügen", "Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu", "Add a root to your timeline" : "Füge den Start deiner Zeitachse hinzu",
"Share album" : "Album teilen", "Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"Delete album" : "Album löschen", "Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen", "Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren", "Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen", "Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben", "Move left" : "Nach links verschieben",
"Move right" : "Nach rechts 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", "Save as" : "Speichern als",
"Reset" : "Zurücksetzen", "Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.", "All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -226,6 +239,7 @@
"Actual size (100%)" : "Tatsächliche Größe (100%)", "Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen", "Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen", "Transcoding failed." : "Transkodierung fehlgeschlagen",
"Direct" : "Direkt",
"Auto" : "Automatisch", "Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner", "Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.", "Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -234,7 +248,7 @@
"Error: {msg}" : "Fehler: {msg}", "Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen", "Failed to delete files." : "Löschen der Dateien fehlgeschlagen",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.", "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 files." : "Favorisieren von Dateien fehlgeschlagen",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.", "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." "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",
{ {
"Memories" : "Erinnerungen", "Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App", "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 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.", "# 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", "Settings" : "Einstellungen",
"People (Recognize)" : "Personen (erkennen)",
"People" : "Personen",
"People (Face Recognition)" : "Personen (Gesichtserkennung)",
"EXIF" : "EXIF",
"Timeline" : "Zeitleiste", "Timeline" : "Zeitleiste",
"Folders" : "Ordner", "Folders" : "Ordner",
"Favorites" : "Favoriten", "Favorites" : "Favoriten",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Alben", "Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "An diesem Tag", "On this day" : "An diesem Tag",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Maps" : "Karten", "Maps" : "Karten",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet Sie", "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", "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:", "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", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto gefunden in {path}","{n} Fotos gefunden in {path}"],
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …", "Loading …" : "Lade …",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Delete" : "Löschen", "Delete" : "Löschen",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Favorisieren", "Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren", "Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten", "Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen", "View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen", "Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitleiste", "Timeline Path" : "Pfad der Zeitleiste",
"Folders Path" : "Ordnerpfad", "Folders Path" : "Ordnerpfad",
@ -57,17 +55,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Pfade der Zeitleiste auswählen", "Choose Timeline Paths" : "Pfade der Zeitleiste auswählen",
"Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht", "Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Ihre Zeitleiste", "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", "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}", "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 for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Suchen nach Personen oder Gruppen", "Search people or groups" : "Suchen nach Personen oder Gruppen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen", "Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -113,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Exif aktualisieren", "Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste", "Newest" : "Neueste",
"Oldest" : "Älteste", "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}", "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", "Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?", "Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name", "Name" : "Name",
@ -138,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Pfad hinzufügen", "Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen", "Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen", "Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"Delete album" : "Album löschen", "Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen", "Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren", "Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen", "Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben", "Move left" : "Nach links verschieben",
"Move right" : "Nach rechts 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", "Save as" : "Speichern als",
"Reset" : "Zurücksetzen", "Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.", "All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -229,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Tatsächliche Größe (100%)", "Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen", "Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.", "Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Direct" : "Direkt",
"Auto" : "Automatisch", "Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner", "Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.", "Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -237,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Fehler: {msg}", "Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen.", "Failed to delete files." : "Löschen der Dateien fehlgeschlagen.",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.", "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 files." : "Favorisieren von Dateien fehlgeschlagen.",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.", "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." "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": { { "translations": {
"Memories" : "Erinnerungen", "Memories" : "Erinnerungen",
"Yet another photo management app" : "Eine weitere Foto-Management-App", "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 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.", "# 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", "Settings" : "Einstellungen",
"People (Recognize)" : "Personen (erkennen)",
"People" : "Personen",
"People (Face Recognition)" : "Personen (Gesichtserkennung)",
"EXIF" : "EXIF",
"Timeline" : "Zeitleiste", "Timeline" : "Zeitleiste",
"Folders" : "Ordner", "Folders" : "Ordner",
"Favorites" : "Favoriten", "Favorites" : "Favoriten",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Alben", "Albums" : "Alben",
"People" : "Personen",
"Archive" : "Archiv", "Archive" : "Archiv",
"On this day" : "An diesem Tag", "On this day" : "An diesem Tag",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Maps" : "Karten", "Maps" : "Karten",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Ein besseres Fotoerlebnis erwartet Sie", "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", "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:", "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", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["{n} Foto gefunden in {path}","{n} Fotos gefunden in {path}"],
"Failed to get Exif data. Metadata may be lost!" : "Exif-Daten konnten nicht abgerufen werden. Metadaten können verloren gehen!",
"No Exif data found! Continue?" : "Keine Exif-Daten gefunden! Fortsetzen?",
"Image saved successfully" : "Bild erfolgreich gespeichert",
"Error saving image" : "Fehler beim Speichern des Bildes",
"Unsaved changes" : "Ungespeicherte Änderungen",
"Drop changes" : "Änderungen verwerfen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"No title" : "Kein Titel",
"No description" : "Keine Beschreibung",
"Loading …" : "Lade …", "Loading …" : "Lade …",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Delete" : "Löschen", "Delete" : "Löschen",
@ -39,6 +37,7 @@
"Favorite" : "Favorisieren", "Favorite" : "Favorisieren",
"Unarchive" : "Dearchivieren", "Unarchive" : "Dearchivieren",
"Edit Date/Time" : "Datum/Uhrzeit bearbeiten", "Edit Date/Time" : "Datum/Uhrzeit bearbeiten",
"Edit EXIF Data" : "EXIF-Daten bearbeiten",
"View in folder" : "In Ordner anzeigen", "View in folder" : "In Ordner anzeigen",
"Add to album" : "Zum Album hinzufügen", "Add to album" : "Zum Album hinzufügen",
"Move to another person" : "Zu einer anderen Person verschieben", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} ausgewählt","{n} ausgewählt"],
"Timeline Path" : "Pfad der Zeitleiste", "Timeline Path" : "Pfad der Zeitleiste",
"Folders Path" : "Ordnerpfad", "Folders Path" : "Ordnerpfad",
@ -55,17 +53,11 @@
"Choose Timeline Paths" : "Pfade der Zeitleiste auswählen", "Choose Timeline Paths" : "Pfade der Zeitleiste auswählen",
"Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht", "Choose the root for the folders view" : "Wählen Sie das Stammverzeichnis für die Ordneransicht",
"Your Timeline" : "Ihre Zeitleiste", "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", "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}", "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 for collaborators" : "Suche nach Mitbearbeitenden",
"Search people or groups" : "Suchen nach Personen oder Gruppen", "Search people or groups" : "Suchen nach Personen oder Gruppen",
"Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen", "Add {collaboratorLabel} to the collaborators list" : "{collaboratorLabel} zur Liste der Mitarbeitenden hinzufügen",
@ -111,9 +103,15 @@
"Update Exif" : "Exif aktualisieren", "Update Exif" : "Exif aktualisieren",
"Newest" : "Neueste", "Newest" : "Neueste",
"Oldest" : "Älteste", "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}", "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", "Remove person" : "Person entfernen",
"Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?", "Are you sure you want to remove {name}?" : "Soll {name} wirklich entfernt werden?",
"Name" : "Name", "Name" : "Name",
@ -136,12 +134,28 @@
"Add Path" : "Pfad hinzufügen", "Add Path" : "Pfad hinzufügen",
"Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen", "Add a root to your timeline" : "Einen Start Ihrer Zeitleiste hinzufügen",
"Share album" : "Album teilen", "Share album" : "Album teilen",
"Download album" : "Album herunterladen",
"Delete album" : "Album löschen", "Delete album" : "Album löschen",
"Merge with different person" : "Mit einer anderen Person zusammenführen", "Merge with different person" : "Mit einer anderen Person zusammenführen",
"Mark person in preview" : "Person in Vorschau markieren", "Mark person in preview" : "Person in Vorschau markieren",
"Share folder" : "Ordner teilen", "Share folder" : "Ordner teilen",
"Move left" : "Nach links verschieben", "Move left" : "Nach links verschieben",
"Move right" : "Nach rechts 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", "Save as" : "Speichern als",
"Reset" : "Zurücksetzen", "Reset" : "Zurücksetzen",
"All changes will be lost." : "Alle Änderungen gehen verloren.", "All changes will be lost." : "Alle Änderungen gehen verloren.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Tatsächliche Größe (100%)", "Actual size (100%)" : "Tatsächliche Größe (100%)",
"Fit size" : "Größe anpassen", "Fit size" : "Größe anpassen",
"Transcoding failed." : "Transkodierung fehlgeschlagen.", "Transcoding failed." : "Transkodierung fehlgeschlagen.",
"Direct" : "Direkt",
"Auto" : "Automatisch", "Auto" : "Automatisch",
"Shared Folder" : "Geteilter Ordner", "Shared Folder" : "Geteilter Ordner",
"Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.", "Failed to create {albumName}." : "{albumName} konnte nicht erstellt werden.",
@ -235,7 +250,7 @@
"Error: {msg}" : "Fehler: {msg}", "Error: {msg}" : "Fehler: {msg}",
"Failed to delete files." : "Löschen der Dateien fehlgeschlagen.", "Failed to delete files." : "Löschen der Dateien fehlgeschlagen.",
"Failed to delete {fileName}." : "{fileName} konnte nicht gelöscht werden.", "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 files." : "Favorisieren von Dateien fehlgeschlagen.",
"Failed to favorite some files." : "Einige Dateien konnten nicht zu den Favoriten hinzugefügt werden.", "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." "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", "memories",
{ {
"Settings" : "Ρυθμίσεις", "Settings" : "Ρυθμίσεις",
"People" : "Άτομα",
"Timeline" : "Χρονολόγιο", "Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι", "Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα", "Favorites" : "Αγαπημένα",
"Videos" : "Βίντεο", "Videos" : "Βίντεο",
"Albums" : "Άλμπουμ", "Albums" : "Άλμπουμ",
"People" : "Άτομα",
"Archive" : "Αρχειοθέτηση", "Archive" : "Αρχειοθέτηση",
"On this day" : "Αυτή τη μέρα", "On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες", "Tags" : "Ετικέτες",
"Maps" : "Χάρτες", "Maps" : "Χάρτες",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία", "Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …", "Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση", "Cancel" : "Ακύρωση",
@ -22,10 +21,7 @@ OC.L10N.register(
"Unarchive" : "Αναίρεση αρχειοθέτησης", "Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο", "View in folder" : "Προβολή στον φάκελο",
"Add to album" : "Προσθήκη στο άλμπουμ", "Add to album" : "Προσθήκη στο άλμπουμ",
"Share" : "Διαμοιρασμός", "No collaborators available" : "Δεν υπάρχουν διαθέσιμοι συνεργάτες",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου", "Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος", "Public link" : "Δημόσιος σύνδεσμος",
"New album" : "Νέο άλμπουμ", "New album" : "Νέο άλμπουμ",
@ -42,6 +38,10 @@ OC.L10N.register(
"Time" : "Ώρα", "Time" : "Ώρα",
"Hour" : "Ώρα", "Hour" : "Ώρα",
"Minute" : "Λεπτά", "Minute" : "Λεπτά",
"Title" : "Τίτλος",
"Description" : "Περιγραφή",
"Label" : "Ετικέτα",
"Copyright" : "Δικαιώματα",
"Name" : "Όνομα", "Name" : "Όνομα",
"Rename person" : "Μετονομασία ατόμου", "Rename person" : "Μετονομασία ατόμου",
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
@ -49,6 +49,11 @@ OC.L10N.register(
"Remove" : "Αφαίρεση", "Remove" : "Αφαίρεση",
"Delete album" : "Διαγραφή άλμπουμ", "Delete album" : "Διαγραφή άλμπουμ",
"Share folder" : "Διαμοιρασμός φακέλου", "Share folder" : "Διαμοιρασμός φακέλου",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Reset" : "Επαναφορά", "Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε", "Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας", "Undo" : "Ακύρωση ενέργειας",
@ -58,12 +63,14 @@ OC.L10N.register(
"Custom" : "Προσαρμοσμένο", "Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή", "Value" : "Τιμή",
"Image" : "Εικόνα", "Image" : "Εικόνα",
"Line" : "Γραμμή",
"Text" : "Κείμενο", "Text" : "Κείμενο",
"Size" : "Μέγεθος", "Size" : "Μέγεθος",
"Position" : "Θέση", "Position" : "Θέση",
"Extension" : "Επέκταση", "Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.", "Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα", "Quality" : "Ποιότητα",
"Direct" : "Άμεσα",
"Auto" : "Αυτόματα", "Auto" : "Αυτόματα",
"Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}", "Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Απέτυχε η μετονομασία του {currentAlbumName} σε {newAlbumName}.", "Failed to rename {currentAlbumName} to {newAlbumName}." : "Απέτυχε η μετονομασία του {currentAlbumName} σε {newAlbumName}.",

19
l10n/el.json vendored
View File

@ -1,16 +1,15 @@
{ "translations": { { "translations": {
"Settings" : "Ρυθμίσεις", "Settings" : "Ρυθμίσεις",
"People" : "Άτομα",
"Timeline" : "Χρονολόγιο", "Timeline" : "Χρονολόγιο",
"Folders" : "Φάκελοι", "Folders" : "Φάκελοι",
"Favorites" : "Αγαπημένα", "Favorites" : "Αγαπημένα",
"Videos" : "Βίντεο", "Videos" : "Βίντεο",
"Albums" : "Άλμπουμ", "Albums" : "Άλμπουμ",
"People" : "Άτομα",
"Archive" : "Αρχειοθέτηση", "Archive" : "Αρχειοθέτηση",
"On this day" : "Αυτή τη μέρα", "On this day" : "Αυτή τη μέρα",
"Tags" : "Ετικέτες", "Tags" : "Ετικέτες",
"Maps" : "Χάρτες", "Maps" : "Χάρτες",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Edit" : "Επεξεργασία", "Edit" : "Επεξεργασία",
"Loading …" : "Φόρτωση …", "Loading …" : "Φόρτωση …",
"Cancel" : "Ακύρωση", "Cancel" : "Ακύρωση",
@ -20,10 +19,7 @@
"Unarchive" : "Αναίρεση αρχειοθέτησης", "Unarchive" : "Αναίρεση αρχειοθέτησης",
"View in folder" : "Προβολή στον φάκελο", "View in folder" : "Προβολή στον φάκελο",
"Add to album" : "Προσθήκη στο άλμπουμ", "Add to album" : "Προσθήκη στο άλμπουμ",
"Share" : "Διαμοιρασμός", "No collaborators available" : "Δεν υπάρχουν διαθέσιμοι συνεργάτες",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Copy public link" : "Αντιγραφή δημόσιου συνδέσμου", "Copy public link" : "Αντιγραφή δημόσιου συνδέσμου",
"Public link" : "Δημόσιος σύνδεσμος", "Public link" : "Δημόσιος σύνδεσμος",
"New album" : "Νέο άλμπουμ", "New album" : "Νέο άλμπουμ",
@ -40,6 +36,10 @@
"Time" : "Ώρα", "Time" : "Ώρα",
"Hour" : "Ώρα", "Hour" : "Ώρα",
"Minute" : "Λεπτά", "Minute" : "Λεπτά",
"Title" : "Τίτλος",
"Description" : "Περιγραφή",
"Label" : "Ετικέτα",
"Copyright" : "Δικαιώματα",
"Name" : "Όνομα", "Name" : "Όνομα",
"Rename person" : "Μετονομασία ατόμου", "Rename person" : "Μετονομασία ατόμου",
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
@ -47,6 +47,11 @@
"Remove" : "Αφαίρεση", "Remove" : "Αφαίρεση",
"Delete album" : "Διαγραφή άλμπουμ", "Delete album" : "Διαγραφή άλμπουμ",
"Share folder" : "Διαμοιρασμός φακέλου", "Share folder" : "Διαμοιρασμός φακέλου",
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
"Share" : "Διαμοιρασμός",
"Close" : "Κλείσιμο",
"Previous" : "Προηγούμενο",
"Next" : "Επόμενο",
"Reset" : "Επαναφορά", "Reset" : "Επαναφορά",
"Continue" : "Συνεχίστε", "Continue" : "Συνεχίστε",
"Undo" : "Ακύρωση ενέργειας", "Undo" : "Ακύρωση ενέργειας",
@ -56,12 +61,14 @@
"Custom" : "Προσαρμοσμένο", "Custom" : "Προσαρμοσμένο",
"Value" : "Τιμή", "Value" : "Τιμή",
"Image" : "Εικόνα", "Image" : "Εικόνα",
"Line" : "Γραμμή",
"Text" : "Κείμενο", "Text" : "Κείμενο",
"Size" : "Μέγεθος", "Size" : "Μέγεθος",
"Position" : "Θέση", "Position" : "Θέση",
"Extension" : "Επέκταση", "Extension" : "Επέκταση",
"Name is required." : "Απαιτείται όνομα.", "Name is required." : "Απαιτείται όνομα.",
"Quality" : "Ποιότητα", "Quality" : "Ποιότητα",
"Direct" : "Άμεσα",
"Auto" : "Αυτόματα", "Auto" : "Αυτόματα",
"Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}", "Failed to create {albumName}." : "Απέτυχε η δημιουργία {albumName}",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Απέτυχε η μετονομασία του {currentAlbumName} σε {newAlbumName}.", "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" : "Memories", "Memories" : "Memories",
"Yet another photo management app" : "Yet another photo management app", "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 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.", "# 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", "Settings" : "Settings",
"People (Recognize)" : "People (Recognise)",
"People" : "People",
"People (Face Recognition)" : "People (Face Recognition)",
"EXIF" : "EXIF",
"Timeline" : "Timeline", "Timeline" : "Timeline",
"Folders" : "Folders", "Folders" : "Folders",
"Favorites" : "Favourites", "Favorites" : "Favourites",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Albums", "Albums" : "Albums",
"People" : "People",
"Archive" : "Archive", "Archive" : "Archive",
"On this day" : "On this day", "On this day" : "On this day",
"Tags" : "Tags", "Tags" : "Tags",
"Maps" : "Maps", "Maps" : "Maps",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "A better photos experience awaits you", "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", "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:", "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", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Found {n} item in {path}","Found {n} items 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",
"Edit" : "Edit", "Edit" : "Edit",
"No title" : "No title",
"No description" : "No description",
"Loading …" : "Loading …", "Loading …" : "Loading …",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"Delete" : "Delete", "Delete" : "Delete",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Favourite", "Favorite" : "Favourite",
"Unarchive" : "Unarchive", "Unarchive" : "Unarchive",
"Edit Date/Time" : "Edit Date/Time", "Edit Date/Time" : "Edit Date/Time",
"Edit EXIF Data" : "Edit EXIF Data",
"View in folder" : "View in folder", "View in folder" : "View in folder",
"Add to album" : "Add to album", "Add to album" : "Add to album",
"Move to another person" : "Move to another person", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} selected","{n} selected"],
"Timeline Path" : "Timeline Path", "Timeline Path" : "Timeline Path",
"Folders Path" : "Folders Path", "Folders Path" : "Folders Path",
@ -57,16 +55,11 @@ OC.L10N.register(
"Choose Timeline Paths" : "Choose Timeline Paths", "Choose Timeline Paths" : "Choose Timeline Paths",
"Choose the root for the folders view" : "Choose the root for the folders view", "Choose the root for the folders view" : "Choose the root for the folders view",
"Your Timeline" : "Your Timeline", "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", "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}", "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 for collaborators" : "Search for collaborators",
"Search people or groups" : "Search people or groups", "Search people or groups" : "Search people or groups",
"Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list", "Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list",
@ -112,9 +105,15 @@ OC.L10N.register(
"Update Exif" : "Update Exif", "Update Exif" : "Update Exif",
"Newest" : "Newest", "Newest" : "Newest",
"Oldest" : "Oldest", "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}", "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", "Remove person" : "Remove person",
"Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?", "Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?",
"Name" : "Surname", "Name" : "Surname",
@ -137,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Add Path", "Add Path" : "Add Path",
"Add a root to your timeline" : "Add a root to your timeline", "Add a root to your timeline" : "Add a root to your timeline",
"Share album" : "Share album", "Share album" : "Share album",
"Download album" : "Download album",
"Delete album" : "Delete album", "Delete album" : "Delete album",
"Merge with different person" : "Merge with different person", "Merge with different person" : "Merge with different person",
"Mark person in preview" : "Mark person in preview", "Mark person in preview" : "Mark person in preview",
"Share folder" : "Share folder", "Share folder" : "Share folder",
"Move left" : "Move left", "Move left" : "Move left",
"Move right" : "Move right", "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", "Save as" : "Save as",
"Reset" : "Reset", "Reset" : "Reset",
"All changes will be lost." : "All changes will be lost.", "All changes will be lost." : "All changes will be lost.",
@ -228,6 +243,7 @@ OC.L10N.register(
"Actual size (100%)" : "Actual size (100%)", "Actual size (100%)" : "Actual size (100%)",
"Fit size" : "Fit size", "Fit size" : "Fit size",
"Transcoding failed." : "Transcoding failed.", "Transcoding failed." : "Transcoding failed.",
"Direct" : "Direct",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Shared Folder", "Shared Folder" : "Shared Folder",
"Failed to create {albumName}." : "Failed to create {albumName}.", "Failed to create {albumName}." : "Failed to create {albumName}.",
@ -236,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Error: {msg}", "Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Failed to delete files.", "Failed to delete files." : "Failed to delete files.",
"Failed to delete {fileName}." : "Failed to delete {fileName}.", "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 files." : "Failed to favorite files.",
"Failed to favorite some files." : "Failed to favorite some files.", "Failed to favorite some files." : "Failed to favorite some files.",
"Failed to favorite {fileName}." : "Failed to favorite {fileName}." "Failed to favorite {fileName}." : "Failed to favorite {fileName}."

62
l10n/en_GB.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": { { "translations": {
"Memories" : "Memories", "Memories" : "Memories",
"Yet another photo management app" : "Yet another photo management app", "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 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.", "# 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", "Settings" : "Settings",
"People (Recognize)" : "People (Recognise)",
"People" : "People",
"People (Face Recognition)" : "People (Face Recognition)",
"EXIF" : "EXIF",
"Timeline" : "Timeline", "Timeline" : "Timeline",
"Folders" : "Folders", "Folders" : "Folders",
"Favorites" : "Favourites", "Favorites" : "Favourites",
"Videos" : "Videos", "Videos" : "Videos",
"Albums" : "Albums", "Albums" : "Albums",
"People" : "People",
"Archive" : "Archive", "Archive" : "Archive",
"On this day" : "On this day", "On this day" : "On this day",
"Tags" : "Tags", "Tags" : "Tags",
"Maps" : "Maps", "Maps" : "Maps",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "A better photos experience awaits you", "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", "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:", "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", "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", "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.", "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}", "_Found {n} item in {path}_::_Found {n} items in {path}_" : ["Found {n} item in {path}","Found {n} items 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",
"Edit" : "Edit", "Edit" : "Edit",
"No title" : "No title",
"No description" : "No description",
"Loading …" : "Loading …", "Loading …" : "Loading …",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"Delete" : "Delete", "Delete" : "Delete",
@ -39,6 +37,7 @@
"Favorite" : "Favourite", "Favorite" : "Favourite",
"Unarchive" : "Unarchive", "Unarchive" : "Unarchive",
"Edit Date/Time" : "Edit Date/Time", "Edit Date/Time" : "Edit Date/Time",
"Edit EXIF Data" : "Edit EXIF Data",
"View in folder" : "View in folder", "View in folder" : "View in folder",
"Add to album" : "Add to album", "Add to album" : "Add to album",
"Move to another person" : "Move to another person", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} selected","{n} selected"],
"Timeline Path" : "Timeline Path", "Timeline Path" : "Timeline Path",
"Folders Path" : "Folders Path", "Folders Path" : "Folders Path",
@ -55,16 +53,11 @@
"Choose Timeline Paths" : "Choose Timeline Paths", "Choose Timeline Paths" : "Choose Timeline Paths",
"Choose the root for the folders view" : "Choose the root for the folders view", "Choose the root for the folders view" : "Choose the root for the folders view",
"Your Timeline" : "Your Timeline", "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", "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}", "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 for collaborators" : "Search for collaborators",
"Search people or groups" : "Search people or groups", "Search people or groups" : "Search people or groups",
"Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list", "Add {collaboratorLabel} to the collaborators list" : "Add {collaboratorLabel} to the collaborators list",
@ -110,9 +103,15 @@
"Update Exif" : "Update Exif", "Update Exif" : "Update Exif",
"Newest" : "Newest", "Newest" : "Newest",
"Oldest" : "Oldest", "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}", "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", "Remove person" : "Remove person",
"Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?", "Are you sure you want to remove {name}?" : "Are you sure you want to remove {name}?",
"Name" : "Surname", "Name" : "Surname",
@ -135,12 +134,28 @@
"Add Path" : "Add Path", "Add Path" : "Add Path",
"Add a root to your timeline" : "Add a root to your timeline", "Add a root to your timeline" : "Add a root to your timeline",
"Share album" : "Share album", "Share album" : "Share album",
"Download album" : "Download album",
"Delete album" : "Delete album", "Delete album" : "Delete album",
"Merge with different person" : "Merge with different person", "Merge with different person" : "Merge with different person",
"Mark person in preview" : "Mark person in preview", "Mark person in preview" : "Mark person in preview",
"Share folder" : "Share folder", "Share folder" : "Share folder",
"Move left" : "Move left", "Move left" : "Move left",
"Move right" : "Move right", "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", "Save as" : "Save as",
"Reset" : "Reset", "Reset" : "Reset",
"All changes will be lost." : "All changes will be lost.", "All changes will be lost." : "All changes will be lost.",
@ -226,6 +241,7 @@
"Actual size (100%)" : "Actual size (100%)", "Actual size (100%)" : "Actual size (100%)",
"Fit size" : "Fit size", "Fit size" : "Fit size",
"Transcoding failed." : "Transcoding failed.", "Transcoding failed." : "Transcoding failed.",
"Direct" : "Direct",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Shared Folder", "Shared Folder" : "Shared Folder",
"Failed to create {albumName}." : "Failed to create {albumName}.", "Failed to create {albumName}." : "Failed to create {albumName}.",
@ -234,7 +250,7 @@
"Error: {msg}" : "Error: {msg}", "Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Failed to delete files.", "Failed to delete files." : "Failed to delete files.",
"Failed to delete {fileName}." : "Failed to delete {fileName}.", "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 files." : "Failed to favorite files.",
"Failed to favorite some files." : "Failed to favorite some files.", "Failed to favorite some files." : "Failed to favorite some files.",
"Failed to favorite {fileName}." : "Failed to favorite {fileName}." "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", "Archive" : "Arĥivujo",
"Tags" : "Etikedoj", "Tags" : "Etikedoj",
"Maps" : "Mapoj", "Maps" : "Mapoj",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Edit" : "Modifi", "Edit" : "Modifi",
"Loading …" : "Ŝargas …", "Loading …" : "Ŝargas …",
"Cancel" : "Nuligi", "Cancel" : "Nuligi",
@ -17,10 +16,6 @@ OC.L10N.register(
"Download" : "Elŝuti", "Download" : "Elŝuti",
"Favorite" : "Pliŝatati", "Favorite" : "Pliŝatati",
"View in folder" : "Vidi en dosierujo", "View in folder" : "Vidi en dosierujo",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Public link" : "Publika ligilo", "Public link" : "Publika ligilo",
"Back" : "Antaŭen", "Back" : "Antaŭen",
"Save" : "Konservi", "Save" : "Konservi",
@ -28,10 +23,18 @@ OC.L10N.register(
"Day" : "Tago", "Day" : "Tago",
"Time" : "Dato", "Time" : "Dato",
"Hour" : "Horo", "Hour" : "Horo",
"Title" : "Titolo",
"Description" : "Priskribo",
"Copyright" : "Kopirajto",
"Name" : "Nomo", "Name" : "Nomo",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
"Refresh" : "Aktualigi", "Refresh" : "Aktualigi",
"Remove" : "Forigi", "Remove" : "Forigi",
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
"Share" : "Kunhavigi",
"Close" : "Malfermi",
"Previous" : "Antaŭa",
"Next" : "Sekva",
"Reset" : "Restarigi", "Reset" : "Restarigi",
"Continue" : "Daŭrigi", "Continue" : "Daŭrigi",
"Undo" : "Malfari", "Undo" : "Malfari",

13
l10n/eo.json vendored
View File

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

63
l10n/es.js vendored
View File

@ -2,20 +2,22 @@ OC.L10N.register(
"memories", "memories",
{ {
"Memories" : "Memories", "Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas", "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 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.", "# 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", "Settings" : "Ajustes",
"People (Recognize)" : "Personas (Recognize)",
"People" : "Personas",
"People (Face Recognition)" : "Personas (Reconocimiento facial)",
"EXIF" : "EXIF",
"Timeline" : "Línea de tiempo", "Timeline" : "Línea de tiempo",
"Folders" : "Carpetas", "Folders" : "Carpetas",
"Favorites" : "Favoritos", "Favorites" : "Favoritos",
"Videos" : "Vídeos", "Videos" : "Vídeos",
"Albums" : "Álbumes", "Albums" : "Álbumes",
"People" : "Personas",
"Archive" : "Archivo", "Archive" : "Archivo",
"On this day" : "En este día", "On this day" : "En este día",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Maps" : "Mapas", "Maps" : "Mapas",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Una mejor experiencia de fotos te espera", "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", "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:", "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", "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", "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.", "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}", "_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}"],
"Failed to get Exif data. Metadata may be lost!" : "Fallo al obtener los datos Exif. ¡Podrían haberse perdido los metadatos!",
"No Exif data found! Continue?" : "¡No se encontraron datos Exif!, ¿Continuar?",
"Image saved successfully" : "La imagen se guardó exitósamente",
"Error saving image" : "Error guardando imágen",
"Unsaved changes" : "Cambios sin guardar",
"Drop changes" : "Descartar cambios",
"Edit" : "Editar", "Edit" : "Editar",
"No title" : "Sin título",
"No description" : "Sin descripción",
"Loading …" : "Cargando …", "Loading …" : "Cargando …",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Delete" : "Eliminar", "Delete" : "Eliminar",
@ -41,6 +39,7 @@ OC.L10N.register(
"Favorite" : "Marcar como favorito", "Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"Edit Date/Time" : "Editar Fecha/Hora", "Edit Date/Time" : "Editar Fecha/Hora",
"Edit EXIF Data" : "Editar datos EXIF",
"View in folder" : "Ver en carpeta", "View in folder" : "Ver en carpeta",
"Add to album" : "Añadir al álbum", "Add to album" : "Añadir al álbum",
"Move to another person" : "Mover a otra persona", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} seleccionado","{n} seleccionados","{n} seleccionados"],
"Timeline Path" : "Ruta a la línea de tiempo", "Timeline Path" : "Ruta a la línea de tiempo",
"Folders Path" : "Ruta a las carpetas", "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 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", "Choose the root for the folders view" : "Seleccione la raíz de la vista de carpetas",
"Your Timeline" : "Su línea de tiempo", "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", "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}", "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 for collaborators" : "Buscar colaboradores",
"Search people or groups" : "Buscar personas o grupos", "Search people or groups" : "Buscar personas o grupos",
"Add {collaboratorLabel} to the collaborators list" : "Añadir {collaboratorLabel} a la lista de colaboradores", "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", "Update Exif" : "Actualizar Exif",
"Newest" : "Más nuevo", "Newest" : "Más nuevo",
"Oldest" : "Más antiguo", "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}", "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", "Remove person" : "Eliminar persona",
"Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?", "Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?",
"Name" : "Nombre", "Name" : "Nombre",
@ -138,12 +136,28 @@ OC.L10N.register(
"Add Path" : "Añadir ruta", "Add Path" : "Añadir ruta",
"Add a root to your timeline" : "Añadir una raíz a su línea de tiempo", "Add a root to your timeline" : "Añadir una raíz a su línea de tiempo",
"Share album" : "Compartir álbum", "Share album" : "Compartir álbum",
"Download album" : "Descargar álbum",
"Delete album" : "Eliminar álbum", "Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente", "Merge with different person" : "Unir con una persona diferente",
"Mark person in preview" : "Marcar persona en vista previa", "Mark person in preview" : "Marcar persona en vista previa",
"Share folder" : "Compartir carpeta", "Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda", "Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha", "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", "Save as" : "Guardar como",
"Reset" : "Restablecer", "Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.", "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%)", "Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño", "Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding", "Transcoding failed." : "Falló el transcoding",
"Direct" : "Directo",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Carpeta compartida", "Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}", "Failed to create {albumName}." : "Fallo al crear {albumName}",
@ -237,7 +252,7 @@ OC.L10N.register(
"Error: {msg}" : "Error: {msg}", "Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Fallo al eliminar archivos.", "Failed to delete files." : "Fallo al eliminar archivos.",
"Failed to delete {fileName}." : "Fallo al eliminar {fileName}.", "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 files." : "Fallo al marcar archivos como favoritos.",
"Failed to favorite some files." : "Fallo al marcar algunos 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}." "Failed to favorite {fileName}." : "Fallo al marcar como favorito {fileName}."

63
l10n/es.json vendored
View File

@ -1,19 +1,21 @@
{ "translations": { { "translations": {
"Memories" : "Memories", "Memories" : "Memories",
"Yet another photo management app" : "Otra aplicación de gestión de fotos mas", "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 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.", "# 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", "Settings" : "Ajustes",
"People (Recognize)" : "Personas (Recognize)",
"People" : "Personas",
"People (Face Recognition)" : "Personas (Reconocimiento facial)",
"EXIF" : "EXIF",
"Timeline" : "Línea de tiempo", "Timeline" : "Línea de tiempo",
"Folders" : "Carpetas", "Folders" : "Carpetas",
"Favorites" : "Favoritos", "Favorites" : "Favoritos",
"Videos" : "Vídeos", "Videos" : "Vídeos",
"Albums" : "Álbumes", "Albums" : "Álbumes",
"People" : "Personas",
"Archive" : "Archivo", "Archive" : "Archivo",
"On this day" : "En este día", "On this day" : "En este día",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Maps" : "Mapas", "Maps" : "Mapas",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Una mejor experiencia de fotos te espera", "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", "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:", "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", "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", "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.", "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}", "_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}"],
"Failed to get Exif data. Metadata may be lost!" : "Fallo al obtener los datos Exif. ¡Podrían haberse perdido los metadatos!",
"No Exif data found! Continue?" : "¡No se encontraron datos Exif!, ¿Continuar?",
"Image saved successfully" : "La imagen se guardó exitósamente",
"Error saving image" : "Error guardando imágen",
"Unsaved changes" : "Cambios sin guardar",
"Drop changes" : "Descartar cambios",
"Edit" : "Editar", "Edit" : "Editar",
"No title" : "Sin título",
"No description" : "Sin descripción",
"Loading …" : "Cargando …", "Loading …" : "Cargando …",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Delete" : "Eliminar", "Delete" : "Eliminar",
@ -39,6 +37,7 @@
"Favorite" : "Marcar como favorito", "Favorite" : "Marcar como favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"Edit Date/Time" : "Editar Fecha/Hora", "Edit Date/Time" : "Editar Fecha/Hora",
"Edit EXIF Data" : "Editar datos EXIF",
"View in folder" : "Ver en carpeta", "View in folder" : "Ver en carpeta",
"Add to album" : "Añadir al álbum", "Add to album" : "Añadir al álbum",
"Move to another person" : "Mover a otra persona", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} seleccionado","{n} seleccionados","{n} seleccionados"],
"Timeline Path" : "Ruta a la línea de tiempo", "Timeline Path" : "Ruta a la línea de tiempo",
"Folders Path" : "Ruta a las carpetas", "Folders Path" : "Ruta a las carpetas",
@ -55,17 +53,11 @@
"Choose Timeline Paths" : "Escoga las rutas a la línea de tiempo", "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", "Choose the root for the folders view" : "Seleccione la raíz de la vista de carpetas",
"Your Timeline" : "Su línea de tiempo", "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", "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}", "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 for collaborators" : "Buscar colaboradores",
"Search people or groups" : "Buscar personas o grupos", "Search people or groups" : "Buscar personas o grupos",
"Add {collaboratorLabel} to the collaborators list" : "Añadir {collaboratorLabel} a la lista de colaboradores", "Add {collaboratorLabel} to the collaborators list" : "Añadir {collaboratorLabel} a la lista de colaboradores",
@ -111,9 +103,15 @@
"Update Exif" : "Actualizar Exif", "Update Exif" : "Actualizar Exif",
"Newest" : "Más nuevo", "Newest" : "Más nuevo",
"Oldest" : "Más antiguo", "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}", "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", "Remove person" : "Eliminar persona",
"Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?", "Are you sure you want to remove {name}?" : "¿Está seguro de que quiere quitar {name}?",
"Name" : "Nombre", "Name" : "Nombre",
@ -136,12 +134,28 @@
"Add Path" : "Añadir ruta", "Add Path" : "Añadir ruta",
"Add a root to your timeline" : "Añadir una raíz a su línea de tiempo", "Add a root to your timeline" : "Añadir una raíz a su línea de tiempo",
"Share album" : "Compartir álbum", "Share album" : "Compartir álbum",
"Download album" : "Descargar álbum",
"Delete album" : "Eliminar álbum", "Delete album" : "Eliminar álbum",
"Merge with different person" : "Unir con una persona diferente", "Merge with different person" : "Unir con una persona diferente",
"Mark person in preview" : "Marcar persona en vista previa", "Mark person in preview" : "Marcar persona en vista previa",
"Share folder" : "Compartir carpeta", "Share folder" : "Compartir carpeta",
"Move left" : "Mover a la izquierda", "Move left" : "Mover a la izquierda",
"Move right" : "Mover a la derecha", "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", "Save as" : "Guardar como",
"Reset" : "Restablecer", "Reset" : "Restablecer",
"All changes will be lost." : "Todos los cambios se perderán.", "All changes will be lost." : "Todos los cambios se perderán.",
@ -227,6 +241,7 @@
"Actual size (100%)" : "Tamaño actual (100%)", "Actual size (100%)" : "Tamaño actual (100%)",
"Fit size" : "Ajustar tamaño", "Fit size" : "Ajustar tamaño",
"Transcoding failed." : "Falló el transcoding", "Transcoding failed." : "Falló el transcoding",
"Direct" : "Directo",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Carpeta compartida", "Shared Folder" : "Carpeta compartida",
"Failed to create {albumName}." : "Fallo al crear {albumName}", "Failed to create {albumName}." : "Fallo al crear {albumName}",
@ -235,7 +250,7 @@
"Error: {msg}" : "Error: {msg}", "Error: {msg}" : "Error: {msg}",
"Failed to delete files." : "Fallo al eliminar archivos.", "Failed to delete files." : "Fallo al eliminar archivos.",
"Failed to delete {fileName}." : "Fallo al eliminar {fileName}.", "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 files." : "Fallo al marcar archivos como favoritos.",
"Failed to favorite some files." : "Fallo al marcar algunos 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}." "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", "Archive" : "Archivar",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Maps" : "Mapas", "Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar", "Edit" : "Editar",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Delete" : "Borrar", "Delete" : "Borrar",
@ -16,20 +15,25 @@ OC.L10N.register(
"Favorite" : "Hacer favorito", "Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta", "View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Back" : "Atrás", "Back" : "Atrás",
"Save" : "Guardar", "Save" : "Guardar",
"Month" : "Mes", "Month" : "Mes",
"Day" : "Día", "Day" : "Día",
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre", "Name" : "Nombre",
"Update" : "Actualizar", "Update" : "Actualizar",
"Refresh" : "Actualizar", "Refresh" : "Actualizar",
"Remove" : "Eliminar", "Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restaurar", "Reset" : "Restaurar",
"Continue" : "Continuar", "Continue" : "Continuar",
"Undo" : "Deshacer", "Undo" : "Deshacer",

14
l10n/es_419.json vendored
View File

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

15
l10n/es_AR.js vendored
View File

@ -17,10 +17,6 @@ OC.L10N.register(
"Favorite" : "Favorito", "Favorite" : "Favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta", "View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Copy public link" : "Copiar link publico", "Copy public link" : "Copiar link publico",
"Back" : "Atrás", "Back" : "Atrás",
"Save" : "Guardar", "Save" : "Guardar",
@ -28,10 +24,18 @@ OC.L10N.register(
"Day" : "Día", "Day" : "Día",
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre", "Name" : "Nombre",
"Update" : "Actualizar", "Update" : "Actualizar",
"Refresh" : "Recargar", "Refresh" : "Recargar",
"Remove" : "Borrar", "Remove" : "Borrar",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer", "Reset" : "Restablecer",
"Continue" : "Continuar", "Continue" : "Continuar",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@ -39,6 +43,7 @@ OC.L10N.register(
"Value" : "Valor", "Value" : "Valor",
"Text" : "Texto", "Text" : "Texto",
"Size" : "Tamaño", "Size" : "Tamaño",
"Position" : "Posición" "Position" : "Posición",
"Direct" : "Directo"
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "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", "Favorite" : "Favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta", "View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Copy public link" : "Copiar link publico", "Copy public link" : "Copiar link publico",
"Back" : "Atrás", "Back" : "Atrás",
"Save" : "Guardar", "Save" : "Guardar",
@ -26,10 +22,18 @@
"Day" : "Día", "Day" : "Día",
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre", "Name" : "Nombre",
"Update" : "Actualizar", "Update" : "Actualizar",
"Refresh" : "Recargar", "Refresh" : "Recargar",
"Remove" : "Borrar", "Remove" : "Borrar",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Anterior",
"Next" : "Siguiente",
"Reset" : "Restablecer", "Reset" : "Restablecer",
"Continue" : "Continuar", "Continue" : "Continuar",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@ -37,6 +41,7 @@
"Value" : "Valor", "Value" : "Valor",
"Text" : "Texto", "Text" : "Texto",
"Size" : "Tamaño", "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;" },"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", "Archive" : "Archivar",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Maps" : "Mapas", "Maps" : "Mapas",
"Unsaved changes" : "Cambios no guardados",
"Edit" : "Editar", "Edit" : "Editar",
"Loading …" : "Cargando …", "Loading …" : "Cargando …",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
@ -17,10 +16,6 @@ OC.L10N.register(
"Favorite" : "Hacer favorito", "Favorite" : "Hacer favorito",
"Unarchive" : "Desarchivar", "Unarchive" : "Desarchivar",
"View in folder" : "Ver en la carpeta", "View in folder" : "Ver en la carpeta",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Public link" : "Liga pública", "Public link" : "Liga pública",
"Back" : "Atrás", "Back" : "Atrás",
"Save" : "Guardar", "Save" : "Guardar",
@ -28,10 +23,19 @@ OC.L10N.register(
"Day" : "Día", "Day" : "Día",
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Title" : "Título",
"Description" : "Descripción",
"Label" : "Etiqueta",
"Copyright" : "Derechos de autor",
"Name" : "Nombre", "Name" : "Nombre",
"Update" : "Actualizar", "Update" : "Actualizar",
"Refresh" : "Actualizar", "Refresh" : "Actualizar",
"Remove" : "Eliminar", "Remove" : "Eliminar",
"Unsaved changes" : "Cambios no guardados",
"Share" : "Compartir",
"Close" : "Cerrar",
"Previous" : "Previo",
"Next" : "Siguiente",
"Reset" : "Restablecer", "Reset" : "Restablecer",
"Continue" : "Continuar", "Continue" : "Continuar",
"Undo" : "Deshacer", "Undo" : "Deshacer",

14
l10n/es_CL.json vendored
View File

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

14
l10n/es_CO.js vendored
View File

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

14
l10n/es_CO.json vendored
View File

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

14
l10n/es_CR.js vendored
View File

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

14
l10n/es_CR.json vendored
View File

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

14
l10n/es_DO.js vendored
View File

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

14
l10n/es_DO.json vendored
View File

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

14
l10n/es_EC.js vendored
View File

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

14
l10n/es_EC.json vendored
View File

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

14
l10n/es_GT.js vendored
View File

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

14
l10n/es_GT.json vendored
View File

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

14
l10n/es_HN.js vendored
View File

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

14
l10n/es_HN.json vendored
View File

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

14
l10n/es_MX.js vendored
View File

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

14
l10n/es_MX.json vendored
View File

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

14
l10n/es_NI.js vendored
View File

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

14
l10n/es_NI.json vendored
View File

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

14
l10n/es_PA.js vendored
View File

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

14
l10n/es_PA.json vendored
View File

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

14
l10n/es_PE.js vendored
View File

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

14
l10n/es_PE.json vendored
View File

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

14
l10n/es_PR.js vendored
View File

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

14
l10n/es_PR.json vendored
View File

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

14
l10n/es_PY.js vendored
View File

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

14
l10n/es_PY.json vendored
View File

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

14
l10n/es_SV.js vendored
View File

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

14
l10n/es_SV.json vendored
View File

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

14
l10n/es_UY.js vendored
View File

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

14
l10n/es_UY.json vendored
View File

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

15
l10n/et_EE.js vendored
View File

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

15
l10n/et_EE.json vendored
View File

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

26
l10n/eu.js vendored
View File

@ -2,21 +2,17 @@ OC.L10N.register(
"memories", "memories",
{ {
"Memories" : "Memoriak", "Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"People" : "Jendea",
"Timeline" : "Denbora-lerroa", "Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak", "Folders" : "Karpetak",
"Favorites" : "Gogokoak", "Favorites" : "Gogokoak",
"Videos" : "Bideoak", "Videos" : "Bideoak",
"Albums" : "Albumak", "Albums" : "Albumak",
"People" : "Jendea",
"Archive" : "Artxibatu", "Archive" : "Artxibatu",
"On this day" : "Egun honetan", "On this day" : "Egun honetan",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Maps" : "Mapak", "Maps" : "Mapak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu", "Edit" : "Aldatu",
"Loading …" : "Kargatzen …", "Loading …" : "Kargatzen …",
"Cancel" : "Utzi", "Cancel" : "Utzi",
@ -36,11 +32,6 @@ OC.L10N.register(
"Show hidden folders" : "Erakutsi ezkutuko karpetak", "Show hidden folders" : "Erakutsi ezkutuko karpetak",
"Your Timeline" : "Zure denbora-lerroa", "Your Timeline" : "Zure denbora-lerroa",
"Failed to load some photos" : "Argazki batzuk kargatzeak huts egin du", "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}", "Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak", "Search for collaborators" : "Bilatu kolaboratzaileak",
"Search people or groups" : "Bilatu erabiltzaile edo taldeak", "Search people or groups" : "Bilatu erabiltzaile edo taldeak",
@ -83,9 +74,11 @@ OC.L10N.register(
"Update Exif" : "Eguneratu Exif", "Update Exif" : "Eguneratu Exif",
"Newest" : "Berrienak", "Newest" : "Berrienak",
"Oldest" : "Zaharrenak", "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}", "Loading data … {n}/{m}" : "Datuak kargatzen … {n}/{m}",
"Title" : "Izenburua",
"Description" : "Deskribapena",
"Label" : "Etiketa",
"Copyright" : "Copyright",
"Remove person" : "Kendu pertsona", "Remove person" : "Kendu pertsona",
"Name" : "Izena", "Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena", "Rename person" : "Berridatzi pertsonaren izena",
@ -96,6 +89,14 @@ OC.L10N.register(
"Delete album" : "Ezabatu albuma", "Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin", "Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta", "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", "Save as" : "Gorde honela",
"Reset" : "Berrezarri", "Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.", "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", "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)", "Actual size (100%)" : "Benetako tamaina (% 100)",
"Fit size" : "Egokitu tamaina", "Fit size" : "Egokitu tamaina",
"Direct" : "Zuzena",
"Auto" : "Auto", "Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.", "Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.", "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": { { "translations": {
"Memories" : "Memoriak", "Memories" : "Memoriak",
"Yet another photo management app" : "Beste argazki kudeatze aplikazio bat",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"People" : "Jendea",
"Timeline" : "Denbora-lerroa", "Timeline" : "Denbora-lerroa",
"Folders" : "Karpetak", "Folders" : "Karpetak",
"Favorites" : "Gogokoak", "Favorites" : "Gogokoak",
"Videos" : "Bideoak", "Videos" : "Bideoak",
"Albums" : "Albumak", "Albums" : "Albumak",
"People" : "Jendea",
"Archive" : "Artxibatu", "Archive" : "Artxibatu",
"On this day" : "Egun honetan", "On this day" : "Egun honetan",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Maps" : "Mapak", "Maps" : "Mapak",
"Error saving image" : "Errorea irudia gordetzean",
"Unsaved changes" : "Gorde gabeko aldaketak",
"Drop changes" : "Jaregin aldaketak",
"Edit" : "Aldatu", "Edit" : "Aldatu",
"Loading …" : "Kargatzen …", "Loading …" : "Kargatzen …",
"Cancel" : "Utzi", "Cancel" : "Utzi",
@ -34,11 +30,6 @@
"Show hidden folders" : "Erakutsi ezkutuko karpetak", "Show hidden folders" : "Erakutsi ezkutuko karpetak",
"Your Timeline" : "Zure denbora-lerroa", "Your Timeline" : "Zure denbora-lerroa",
"Failed to load some photos" : "Argazki batzuk kargatzeak huts egin du", "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}", "Processing … {n}/{m}" : "Prozesatzen ... {n}/{m}",
"Search for collaborators" : "Bilatu kolaboratzaileak", "Search for collaborators" : "Bilatu kolaboratzaileak",
"Search people or groups" : "Bilatu erabiltzaile edo taldeak", "Search people or groups" : "Bilatu erabiltzaile edo taldeak",
@ -81,9 +72,11 @@
"Update Exif" : "Eguneratu Exif", "Update Exif" : "Eguneratu Exif",
"Newest" : "Berrienak", "Newest" : "Berrienak",
"Oldest" : "Zaharrenak", "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}", "Loading data … {n}/{m}" : "Datuak kargatzen … {n}/{m}",
"Title" : "Izenburua",
"Description" : "Deskribapena",
"Label" : "Etiketa",
"Copyright" : "Copyright",
"Remove person" : "Kendu pertsona", "Remove person" : "Kendu pertsona",
"Name" : "Izena", "Name" : "Izena",
"Rename person" : "Berridatzi pertsonaren izena", "Rename person" : "Berridatzi pertsonaren izena",
@ -94,6 +87,14 @@
"Delete album" : "Ezabatu albuma", "Delete album" : "Ezabatu albuma",
"Merge with different person" : "Bateratu beste pertsona batekin", "Merge with different person" : "Bateratu beste pertsona batekin",
"Share folder" : "Partekatu karpeta", "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", "Save as" : "Gorde honela",
"Reset" : "Berrezarri", "Reset" : "Berrezarri",
"All changes will be lost." : "Aldaketa guztiak galduko dira.", "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", "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)", "Actual size (100%)" : "Benetako tamaina (% 100)",
"Fit size" : "Egokitu tamaina", "Fit size" : "Egokitu tamaina",
"Direct" : "Zuzena",
"Auto" : "Auto", "Auto" : "Auto",
"Failed to create {albumName}." : "Ezin izan da {albumName} sortu.", "Failed to create {albumName}." : "Ezin izan da {albumName} sortu.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Ezin izan da {currentAlbumName} berrizendatu {newAlbumName} gisa.", "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", "memories",
{ {
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"People" : "مردم",
"Timeline" : "خط زمانی", "Timeline" : "خط زمانی",
"Folders" : "پوشه ها", "Folders" : "پوشه ها",
"Favorites" : "مورد علاقه‌ها", "Favorites" : "مورد علاقه‌ها",
"Videos" : "فیلم ها ", "Videos" : "فیلم ها ",
"People" : "مردم",
"Archive" : "بایگانی", "Archive" : "بایگانی",
"Tags" : "برچسب ها", "Tags" : "برچسب ها",
"Maps" : "نقشه‌ها", "Maps" : "نقشه‌ها",
@ -17,10 +17,6 @@ OC.L10N.register(
"Download" : "بارگیری", "Download" : "بارگیری",
"Favorite" : "مورد‌ ‌علاقه‌", "Favorite" : "مورد‌ ‌علاقه‌",
"View in folder" : "مشاهده در پوشه", "View in folder" : "مشاهده در پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Copy public link" : "پیوند عمومی را کپی کنید", "Copy public link" : "پیوند عمومی را کپی کنید",
"Public link" : "پیوند عمومی", "Public link" : "پیوند عمومی",
"Back" : "بازگشت", "Back" : "بازگشت",
@ -29,11 +25,19 @@ OC.L10N.register(
"Month" : "ماه", "Month" : "ماه",
"Day" : "روز", "Day" : "روز",
"Time" : "زمان", "Time" : "زمان",
"Title" : "عنوان",
"Description" : "توضیحات",
"Label" : "برچسب",
"Copyright" : "کپی‌رایت",
"Name" : "نام", "Name" : "نام",
"Update" : "یه‌روزرسانی", "Update" : "یه‌روزرسانی",
"Refresh" : "تازه‌سازی", "Refresh" : "تازه‌سازی",
"Remove" : "حذف", "Remove" : "حذف",
"Share folder" : "اشتراک‌گذاری پوشه", "Share folder" : "اشتراک‌گذاری پوشه",
"Share" : "هم‌رسانی",
"Close" : "بسته",
"Previous" : "قبلی",
"Next" : "بعدی",
"Reset" : "بازنشاندن", "Reset" : "بازنشاندن",
"Continue" : "ادامه دادن", "Continue" : "ادامه دادن",
"Undo" : "برگرداندن", "Undo" : "برگرداندن",
@ -42,6 +46,7 @@ OC.L10N.register(
"Text" : "متن", "Text" : "متن",
"Size" : "اندازه", "Size" : "اندازه",
"Extension" : "گسترش", "Extension" : "گسترش",
"Direct" : "مستقیم",
"Auto" : "خودکار" "Auto" : "خودکار"
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

15
l10n/fa.json vendored
View File

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

27
l10n/fi.js vendored
View File

@ -2,14 +2,13 @@ OC.L10N.register(
"memories", "memories",
{ {
"Memories" : "Muistot", "Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset", "Settings" : "Asetukset",
"People" : "Ihmiset",
"Timeline" : "Aikajana", "Timeline" : "Aikajana",
"Folders" : "Kansiot", "Folders" : "Kansiot",
"Favorites" : "Suosikit", "Favorites" : "Suosikit",
"Videos" : "Videot", "Videos" : "Videot",
"Albums" : "Albumit", "Albums" : "Albumit",
"People" : "Ihmiset",
"Archive" : "Arkisto", "Archive" : "Arkisto",
"On this day" : "Tänä päivänä", "On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet", "Tags" : "Tunnisteet",
@ -23,9 +22,6 @@ OC.L10N.register(
"You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista", "You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista",
"Choose the root of your timeline" : "Valitse aikajanan juurihakemisto", "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.", "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", "Edit" : "Muokkaa",
"Loading …" : "Ladataan…", "Loading …" : "Ladataan…",
"Cancel" : "Peruuta", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} valittu","{n} valittu"],
"Timeline Path" : "Aikajanan polku", "Timeline Path" : "Aikajanan polku",
"Folders Path" : "Kansioiden polku", "Folders Path" : "Kansioiden polku",
@ -51,13 +46,7 @@ OC.L10N.register(
"Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto", "Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto",
"Your Timeline" : "Aikajanasi", "Your Timeline" : "Aikajanasi",
"Failed to load some photos" : "Joidenkin kuvien lataus epäonnistui", "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}", "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ä", "Search people or groups" : "Etsi käyttäjiä tai ryhmiä",
"Copy the public link" : "Kopioi julkinen linkki", "Copy the public link" : "Kopioi julkinen linkki",
"Delete the public link" : "Poista julkinen linkki", "Delete the public link" : "Poista julkinen linkki",
@ -96,9 +85,10 @@ OC.L10N.register(
"Update Exif" : "Päivitä exif", "Update Exif" : "Päivitä exif",
"Newest" : "Uusimmat", "Newest" : "Uusimmat",
"Oldest" : "Vanhimmat", "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}", "Loading data … {n}/{m}" : "Ladataan tietoja… {n}/{m}",
"Title" : "Nimeke",
"Description" : "Kuvaus",
"Copyright" : "Tekijänoikeus",
"Remove person" : "Poista henkilö", "Remove person" : "Poista henkilö",
"Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?", "Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?",
"Name" : "Nimi", "Name" : "Nimi",
@ -117,6 +107,13 @@ OC.L10N.register(
"Share folder" : "Jaa kansio", "Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle", "Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle", "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ä", "Save as" : "Tallenna nimellä",
"Reset" : "Palauta", "Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.", "All changes will be lost." : "Kaikki muutokset menetetään.",
@ -162,6 +159,7 @@ OC.L10N.register(
"Quality" : "Laatu", "Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)", "Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko", "Fit size" : "Sovita koko",
"Direct" : "Suoraan",
"Auto" : "Automaattinen", "Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio", "Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.", "Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
@ -170,7 +168,6 @@ OC.L10N.register(
"Error: {msg}" : "Virhe: {msg}", "Error: {msg}" : "Virhe: {msg}",
"Failed to delete files." : "Tiedostojen poisto epäonnistui.", "Failed to delete files." : "Tiedostojen poisto epäonnistui.",
"Failed to delete {fileName}." : "Tiedoston {fileName} 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 files." : "Tiedostojen asettaminen suosikeiksi epäonnistui.",
"Failed to favorite some files." : "Joidenkin tiedostojen määrittäminen suosikiksi 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." "Failed to favorite {fileName}." : "Tiedoston {fileName} asettaminen suosikiksi epäonnistui."

27
l10n/fi.json vendored
View File

@ -1,13 +1,12 @@
{ "translations": { { "translations": {
"Memories" : "Muistot", "Memories" : "Muistot",
"Yet another photo management app" : "Vaihtoehtoinen sovellus valokuvien hallintaan",
"Settings" : "Asetukset", "Settings" : "Asetukset",
"People" : "Ihmiset",
"Timeline" : "Aikajana", "Timeline" : "Aikajana",
"Folders" : "Kansiot", "Folders" : "Kansiot",
"Favorites" : "Suosikit", "Favorites" : "Suosikit",
"Videos" : "Videot", "Videos" : "Videot",
"Albums" : "Albumit", "Albums" : "Albumit",
"People" : "Ihmiset",
"Archive" : "Arkisto", "Archive" : "Arkisto",
"On this day" : "Tänä päivänä", "On this day" : "Tänä päivänä",
"Tags" : "Tunnisteet", "Tags" : "Tunnisteet",
@ -21,9 +20,6 @@
"You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista", "You can always change this later in settings" : "Voit vaihtaa tätä myöhemmin asetuksista",
"Choose the root of your timeline" : "Valitse aikajanan juurihakemisto", "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.", "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", "Edit" : "Muokkaa",
"Loading …" : "Ladataan…", "Loading …" : "Ladataan…",
"Cancel" : "Peruuta", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} valittu","{n} valittu"],
"Timeline Path" : "Aikajanan polku", "Timeline Path" : "Aikajanan polku",
"Folders Path" : "Kansioiden polku", "Folders Path" : "Kansioiden polku",
@ -49,13 +44,7 @@
"Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto", "Choose the root for the folders view" : "Valitse kansionäkymän juurihakemisto",
"Your Timeline" : "Aikajanasi", "Your Timeline" : "Aikajanasi",
"Failed to load some photos" : "Joidenkin kuvien lataus epäonnistui", "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}", "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ä", "Search people or groups" : "Etsi käyttäjiä tai ryhmiä",
"Copy the public link" : "Kopioi julkinen linkki", "Copy the public link" : "Kopioi julkinen linkki",
"Delete the public link" : "Poista julkinen linkki", "Delete the public link" : "Poista julkinen linkki",
@ -94,9 +83,10 @@
"Update Exif" : "Päivitä exif", "Update Exif" : "Päivitä exif",
"Newest" : "Uusimmat", "Newest" : "Uusimmat",
"Oldest" : "Vanhimmat", "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}", "Loading data … {n}/{m}" : "Ladataan tietoja… {n}/{m}",
"Title" : "Nimeke",
"Description" : "Kuvaus",
"Copyright" : "Tekijänoikeus",
"Remove person" : "Poista henkilö", "Remove person" : "Poista henkilö",
"Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?", "Are you sure you want to remove {name}?" : "Haluatko varmasti poistaa {name}?",
"Name" : "Nimi", "Name" : "Nimi",
@ -115,6 +105,13 @@
"Share folder" : "Jaa kansio", "Share folder" : "Jaa kansio",
"Move left" : "Siirry vasemmalle", "Move left" : "Siirry vasemmalle",
"Move right" : "Siirry oikealle", "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ä", "Save as" : "Tallenna nimellä",
"Reset" : "Palauta", "Reset" : "Palauta",
"All changes will be lost." : "Kaikki muutokset menetetään.", "All changes will be lost." : "Kaikki muutokset menetetään.",
@ -160,6 +157,7 @@
"Quality" : "Laatu", "Quality" : "Laatu",
"Actual size (100%)" : "Todellinen koko (100 %)", "Actual size (100%)" : "Todellinen koko (100 %)",
"Fit size" : "Sovita koko", "Fit size" : "Sovita koko",
"Direct" : "Suoraan",
"Auto" : "Automaattinen", "Auto" : "Automaattinen",
"Shared Folder" : "Jaa kansio", "Shared Folder" : "Jaa kansio",
"Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.", "Failed to create {albumName}." : "Albumin {albumName} luominen epäonnistui.",
@ -168,7 +166,6 @@
"Error: {msg}" : "Virhe: {msg}", "Error: {msg}" : "Virhe: {msg}",
"Failed to delete files." : "Tiedostojen poisto epäonnistui.", "Failed to delete files." : "Tiedostojen poisto epäonnistui.",
"Failed to delete {fileName}." : "Tiedoston {fileName} 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 files." : "Tiedostojen asettaminen suosikeiksi epäonnistui.",
"Failed to favorite some files." : "Joidenkin tiedostojen määrittäminen suosikiksi 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." "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",
{ {
"Memories" : "Souvenirs", "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", "Settings" : "Paramètres",
"People" : "Personnes",
"EXIF" : "EXIF",
"Timeline" : "Fil chronologique", "Timeline" : "Fil chronologique",
"Folders" : "Dossiers", "Folders" : "Dossiers",
"Favorites" : "Favoris", "Favorites" : "Favoris",
"Videos" : "Vidéos", "Videos" : "Vidéos",
"Albums" : "Albums", "Albums" : "Albums",
"People" : "Personnes",
"Archive" : "Archive", "Archive" : "Archive",
"On this day" : "Ce même jour", "On this day" : "Ce même jour",
"Tags" : "Étiquettes", "Tags" : "Étiquettes",
"Maps" : "Cartes", "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", "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 :", "If you just installed Memories, run:" : "Si vous venez d'installer Souvenirs, exécuter :",
"Continue to Memories" : "Continuer vers Souvenirs", "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", "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", "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.", "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", "_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}"],
"Error saving image" : "Erreur lors de l'enregistrement de l'image",
"Unsaved changes" : "Modifications non enregistrées",
"Drop changes" : "Abandonner les changements",
"Edit" : "Modifier", "Edit" : "Modifier",
"Loading …" : "Chargement …", "Loading …" : "Chargement …",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"Delete" : "Supprimer", "Delete" : "Supprimer",
"Remove from album" : "Supprimer de l'album",
"Download" : "Télécharger", "Download" : "Télécharger",
"Favorite" : "Favoris", "Favorite" : "Favoris",
"Unarchive" : "Désarchiver", "Unarchive" : "Désarchiver",
@ -45,16 +45,13 @@ OC.L10N.register(
"Timeline Path" : "Emplacement du Fil chronologique", "Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier", "Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés", "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", "Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos", "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}", "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 for collaborators" : "Rechercher des collaborateurs",
"Search people or groups" : "Recherche des personnes ou des groupes", "Search people or groups" : "Recherche des personnes ou des groupes",
"Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs", "Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs",
@ -73,6 +70,8 @@ OC.L10N.register(
"New album" : "Nouvel album", "New album" : "Nouvel album",
"Create new album" : "Créer un nouvel album", "Create new album" : "Créer un nouvel album",
"Edit album details" : "Modifier les détails de l'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}.", "Failed to delete {name}." : "Échec de la suppression {name}.",
"Name of the album" : "Nom de l'album", "Name of the album" : "Nom de l'album",
"Location of the album" : "Emplacement de l'album", "Location of the album" : "Emplacement de l'album",
@ -85,7 +84,10 @@ OC.L10N.register(
"Create album" : "Créer un album", "Create album" : "Créer un album",
"Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}", "Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}",
"Create a new album." : "Créer un nouvel album", "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.", "Save collaborators for this album." : "Enregistrer les collaborateurs pour cet album.",
"Share Album" : "Partager l'album",
"Year" : "Année", "Year" : "Année",
"Month" : "Mois", "Month" : "Mois",
"Day" : "Jour", "Day" : "Jour",
@ -95,25 +97,55 @@ OC.L10N.register(
"Update Exif" : "Mettre à jour l'Exif", "Update Exif" : "Mettre à jour l'Exif",
"Newest" : "Plus récent", "Newest" : "Plus récent",
"Oldest" : "Plus ancien", "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}", "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", "Remove person" : "Retirer la personne",
"Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?", "Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?",
"Name" : "Nom", "Name" : "Nom",
"Rename person" : "Renommer la personne", "Rename person" : "Renommer la personne",
"Update" : "Mise à jour", "Update" : "Mise à jour",
"Failed to rename {oldName} to {name}." : "Échec du renommage de {oldName} en {name}.", "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", "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.", "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.", "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", "Refresh" : "Actualiser",
"Remove" : "Retirer", "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", "Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne", "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", "Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche", "Move left" : "Vers la gauche",
"Move right" : "Vers la droite", "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", "Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser", "Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.", "All changes will be lost." : "Tous les changements seront perdus.",
@ -199,14 +231,16 @@ OC.L10N.register(
"Actual size (100%)" : "Taille actuelle (100%)", "Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille", "Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.", "Transcoding failed." : "Échec du transcodage.",
"Direct" : "Direct",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Dossier partagé",
"Failed to create {albumName}." : "Échec de la création de {albumName}.", "Failed to create {albumName}." : "Échec de la création de {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.", "Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.",
"General Failure" : "Échec général", "General Failure" : "Échec général",
"Error: {msg}" : "Erreur : {msg}", "Error: {msg}" : "Erreur : {msg}",
"Failed to delete files." : "Échec de la suppression des fichiers.", "Failed to delete files." : "Échec de la suppression des fichiers.",
"Failed to delete {fileName}." : "Échec de la suppression de {fileName}.", "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 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 some files." : "Échec de l'ajout en favoris de certains fichiers.",
"Failed to favorite {fileName}." : "Échec de l'ajout aux favoris de {fileName}." "Failed to favorite {fileName}." : "Échec de l'ajout aux favoris de {fileName}."

66
l10n/fr.json vendored
View File

@ -1,17 +1,19 @@
{ "translations": { { "translations": {
"Memories" : "Souvenirs", "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", "Settings" : "Paramètres",
"People" : "Personnes",
"EXIF" : "EXIF",
"Timeline" : "Fil chronologique", "Timeline" : "Fil chronologique",
"Folders" : "Dossiers", "Folders" : "Dossiers",
"Favorites" : "Favoris", "Favorites" : "Favoris",
"Videos" : "Vidéos", "Videos" : "Vidéos",
"Albums" : "Albums", "Albums" : "Albums",
"People" : "Personnes",
"Archive" : "Archive", "Archive" : "Archive",
"On this day" : "Ce même jour", "On this day" : "Ce même jour",
"Tags" : "Étiquettes", "Tags" : "Étiquettes",
"Maps" : "Cartes", "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", "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 :", "If you just installed Memories, run:" : "Si vous venez d'installer Souvenirs, exécuter :",
"Continue to Memories" : "Continuer vers Souvenirs", "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", "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", "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.", "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", "_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}"],
"Error saving image" : "Erreur lors de l'enregistrement de l'image",
"Unsaved changes" : "Modifications non enregistrées",
"Drop changes" : "Abandonner les changements",
"Edit" : "Modifier", "Edit" : "Modifier",
"Loading …" : "Chargement …", "Loading …" : "Chargement …",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"Delete" : "Supprimer", "Delete" : "Supprimer",
"Remove from album" : "Supprimer de l'album",
"Download" : "Télécharger", "Download" : "Télécharger",
"Favorite" : "Favoris", "Favorite" : "Favoris",
"Unarchive" : "Désarchiver", "Unarchive" : "Désarchiver",
@ -43,16 +43,13 @@
"Timeline Path" : "Emplacement du Fil chronologique", "Timeline Path" : "Emplacement du Fil chronologique",
"Folders Path" : "Chemin du dossier", "Folders Path" : "Chemin du dossier",
"Show hidden folders" : "Afficher les dossiers cachés", "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", "Your Timeline" : "Votre fil chronologique",
"Failed to load some photos" : "Échec du chargement de certaines photos", "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}", "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 for collaborators" : "Rechercher des collaborateurs",
"Search people or groups" : "Recherche des personnes ou des groupes", "Search people or groups" : "Recherche des personnes ou des groupes",
"Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs", "Add {collaboratorLabel} to the collaborators list" : "Ajouter {collaboratorLabel} à la liste des collaborateurs",
@ -71,6 +68,8 @@
"New album" : "Nouvel album", "New album" : "Nouvel album",
"Create new album" : "Créer un nouvel album", "Create new album" : "Créer un nouvel album",
"Edit album details" : "Modifier les détails de l'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}.", "Failed to delete {name}." : "Échec de la suppression {name}.",
"Name of the album" : "Nom de l'album", "Name of the album" : "Nom de l'album",
"Location of the album" : "Emplacement de l'album", "Location of the album" : "Emplacement de l'album",
@ -83,7 +82,10 @@
"Create album" : "Créer un album", "Create album" : "Créer un album",
"Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}", "Add selection to album {albumName}" : "Ajouter la sélection à l'album {albumName}",
"Create a new album." : "Créer un nouvel album", "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.", "Save collaborators for this album." : "Enregistrer les collaborateurs pour cet album.",
"Share Album" : "Partager l'album",
"Year" : "Année", "Year" : "Année",
"Month" : "Mois", "Month" : "Mois",
"Day" : "Jour", "Day" : "Jour",
@ -93,25 +95,55 @@
"Update Exif" : "Mettre à jour l'Exif", "Update Exif" : "Mettre à jour l'Exif",
"Newest" : "Plus récent", "Newest" : "Plus récent",
"Oldest" : "Plus ancien", "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}", "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", "Remove person" : "Retirer la personne",
"Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?", "Are you sure you want to remove {name}?" : "Êtes-vous sûr de vouloir retirer {name}?",
"Name" : "Nom", "Name" : "Nom",
"Rename person" : "Renommer la personne", "Rename person" : "Renommer la personne",
"Update" : "Mise à jour", "Update" : "Mise à jour",
"Failed to rename {oldName} to {name}." : "Échec du renommage de {oldName} en {name}.", "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", "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.", "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.", "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", "Refresh" : "Actualiser",
"Remove" : "Retirer", "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", "Delete album" : "Supprimer l'album",
"Merge with different person" : "Fusionner avec une différente personne", "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", "Share folder" : "Partager le dossier",
"Move left" : "Vers la gauche", "Move left" : "Vers la gauche",
"Move right" : "Vers la droite", "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", "Save as" : "Enregistrer sous",
"Reset" : "Réinitialiser", "Reset" : "Réinitialiser",
"All changes will be lost." : "Tous les changements seront perdus.", "All changes will be lost." : "Tous les changements seront perdus.",
@ -197,14 +229,16 @@
"Actual size (100%)" : "Taille actuelle (100%)", "Actual size (100%)" : "Taille actuelle (100%)",
"Fit size" : "Adapter à la taille", "Fit size" : "Adapter à la taille",
"Transcoding failed." : "Échec du transcodage.", "Transcoding failed." : "Échec du transcodage.",
"Direct" : "Direct",
"Auto" : "Auto", "Auto" : "Auto",
"Shared Folder" : "Dossier partagé",
"Failed to create {albumName}." : "Échec de la création de {albumName}.", "Failed to create {albumName}." : "Échec de la création de {albumName}.",
"Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.", "Failed to rename {currentAlbumName} to {newAlbumName}." : "Échec du renommage de {currentAlbumName} en {newAlbumName}.",
"General Failure" : "Échec général", "General Failure" : "Échec général",
"Error: {msg}" : "Erreur : {msg}", "Error: {msg}" : "Erreur : {msg}",
"Failed to delete files." : "Échec de la suppression des fichiers.", "Failed to delete files." : "Échec de la suppression des fichiers.",
"Failed to delete {fileName}." : "Échec de la suppression de {fileName}.", "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 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 some files." : "Échec de l'ajout en favoris de certains fichiers.",
"Failed to favorite {fileName}." : "Échec de l'ajout aux favoris de {fileName}." "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", "Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas", "Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd", "Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Back" : "Air ais", "Back" : "Air ais",
"Save" : "Sàbhail", "Save" : "Sàbhail",
"Name" : "Ainm", "Name" : "Ainm",
"Refresh" : "Ath-nuadhaich", "Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh", "Remove" : "Thoir air falbh",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Undo" : "Neo-dhèan" "Undo" : "Neo-dhèan"
}, },
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"); "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", "Delete" : "Sguab às",
"Download" : "Luchdaich a-nuas", "Download" : "Luchdaich a-nuas",
"Favorite" : "Annsachd", "Favorite" : "Annsachd",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Back" : "Air ais", "Back" : "Air ais",
"Save" : "Sàbhail", "Save" : "Sàbhail",
"Name" : "Ainm", "Name" : "Ainm",
"Refresh" : "Ath-nuadhaich", "Refresh" : "Ath-nuadhaich",
"Remove" : "Thoir air falbh", "Remove" : "Thoir air falbh",
"Share" : "Co-roinn",
"Close" : "Dùin",
"Undo" : "Neo-dhèan" "Undo" : "Neo-dhèan"
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;" },"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", "memories",
{ {
"Settings" : "Axustes", "Settings" : "Axustes",
"People" : "Xente",
"Timeline" : "Liña temporal", "Timeline" : "Liña temporal",
"Folders" : "Cartafoles", "Folders" : "Cartafoles",
"Favorites" : "Favoritos", "Favorites" : "Favoritos",
"Videos" : "Vídeos", "Videos" : "Vídeos",
"People" : "Xente",
"Archive" : "Aquivar", "Archive" : "Aquivar",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Maps" : "Mapas", "Maps" : "Mapas",
"Unsaved changes" : "Cambios sen gardar",
"Edit" : "Editar", "Edit" : "Editar",
"Loading …" : "Cargando…", "Loading …" : "Cargando…",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
@ -19,10 +18,6 @@ OC.L10N.register(
"Favorite" : "Favorito", "Favorite" : "Favorito",
"Unarchive" : "Desarquivar", "Unarchive" : "Desarquivar",
"View in folder" : "Ver no cartafol", "View in folder" : "Ver no cartafol",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Copy public link" : "Copiar a ligazón pública", "Copy public link" : "Copiar a ligazón pública",
"Public link" : "Ligazón pública", "Public link" : "Ligazón pública",
"Back" : "Atrás", "Back" : "Atrás",
@ -33,15 +28,25 @@ OC.L10N.register(
"Time" : "Hora", "Time" : "Hora",
"Hour" : "Hora", "Hour" : "Hora",
"Minute" : "Minuto", "Minute" : "Minuto",
"Title" : "Título",
"Description" : "Descrición",
"Label" : "Etiqueta",
"Copyright" : "Copyright",
"Name" : "Nome", "Name" : "Nome",
"Update" : "Actualizar", "Update" : "Actualizar",
"Refresh" : "Actualizar", "Refresh" : "Actualizar",
"Remove" : "Retirar", "Remove" : "Retirar",
"Unsaved changes" : "Cambios sen gardar",
"Share" : "Compartir",
"Close" : "Pechar",
"Previous" : "Anterior",
"Next" : "Seguinte",
"Reset" : "Restabelecer", "Reset" : "Restabelecer",
"Continue" : "Continuar", "Continue" : "Continuar",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Redo" : "Refacer", "Redo" : "Refacer",
"Zoom in" : "Achegar", "Zoom in" : "Achegar",
"Draw" : "Debuxa",
"Original" : "Orixinal", "Original" : "Orixinal",
"Custom" : "Personalizado", "Custom" : "Personalizado",
"Value" : "Valor", "Value" : "Valor",
@ -53,6 +58,7 @@ OC.L10N.register(
"Extension" : "Extensión", "Extension" : "Extensión",
"Name is required." : "É obrigatorio o nome.", "Name is required." : "É obrigatorio o nome.",
"Quality" : "Calidade", "Quality" : "Calidade",
"Direct" : "Directa",
"Auto" : "Automático" "Auto" : "Automático"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

18
l10n/gl.json vendored
View File

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

15
l10n/he.js vendored
View File

@ -9,7 +9,6 @@ OC.L10N.register(
"Archive" : "לארכיון", "Archive" : "לארכיון",
"Tags" : "תגיות", "Tags" : "תגיות",
"Maps" : "מפות", "Maps" : "מפות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה", "Edit" : "עריכה",
"Loading …" : "בטעינה…", "Loading …" : "בטעינה…",
"Cancel" : "ביטול", "Cancel" : "ביטול",
@ -18,10 +17,6 @@ OC.L10N.register(
"Favorite" : "סימון כמועדף", "Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון", "Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה", "View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Copy public link" : "העתקת הקישור הציבורי", "Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי", "Public link" : "קישור ציבורי",
"Back" : "חזרה", "Back" : "חזרה",
@ -32,10 +27,19 @@ OC.L10N.register(
"Time" : "זמן", "Time" : "זמן",
"Hour" : "שעה", "Hour" : "שעה",
"Minute" : "דקה", "Minute" : "דקה",
"Title" : "תפקיד",
"Description" : "תיאור",
"Label" : "תווית",
"Copyright" : "זכויות יוצרים",
"Name" : "שם", "Name" : "שם",
"Update" : "עדכון", "Update" : "עדכון",
"Refresh" : "רענון", "Refresh" : "רענון",
"Remove" : "הסרה", "Remove" : "הסרה",
"Unsaved changes" : "שינויים שלא נשמרו",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Reset" : "איפוס", "Reset" : "איפוס",
"Continue" : "להמשך", "Continue" : "להמשך",
"Undo" : "ביטול", "Undo" : "ביטול",
@ -50,6 +54,7 @@ OC.L10N.register(
"Extension" : "הרחבה", "Extension" : "הרחבה",
"Name is required." : "נדרש שם.", "Name is required." : "נדרש שם.",
"Quality" : "איכות", "Quality" : "איכות",
"Direct" : "ישיר",
"Auto" : "אוטומטי" "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;"); "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" : "לארכיון", "Archive" : "לארכיון",
"Tags" : "תגיות", "Tags" : "תגיות",
"Maps" : "מפות", "Maps" : "מפות",
"Unsaved changes" : "שינויים שלא נשמרו",
"Edit" : "עריכה", "Edit" : "עריכה",
"Loading …" : "בטעינה…", "Loading …" : "בטעינה…",
"Cancel" : "ביטול", "Cancel" : "ביטול",
@ -16,10 +15,6 @@
"Favorite" : "סימון כמועדף", "Favorite" : "סימון כמועדף",
"Unarchive" : "הוצאה מהארכיון", "Unarchive" : "הוצאה מהארכיון",
"View in folder" : "הצג בתיקייה", "View in folder" : "הצג בתיקייה",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Copy public link" : "העתקת הקישור הציבורי", "Copy public link" : "העתקת הקישור הציבורי",
"Public link" : "קישור ציבורי", "Public link" : "קישור ציבורי",
"Back" : "חזרה", "Back" : "חזרה",
@ -30,10 +25,19 @@
"Time" : "זמן", "Time" : "זמן",
"Hour" : "שעה", "Hour" : "שעה",
"Minute" : "דקה", "Minute" : "דקה",
"Title" : "תפקיד",
"Description" : "תיאור",
"Label" : "תווית",
"Copyright" : "זכויות יוצרים",
"Name" : "שם", "Name" : "שם",
"Update" : "עדכון", "Update" : "עדכון",
"Refresh" : "רענון", "Refresh" : "רענון",
"Remove" : "הסרה", "Remove" : "הסרה",
"Unsaved changes" : "שינויים שלא נשמרו",
"Share" : "שתף",
"Close" : "סגירה",
"Previous" : "הקודם",
"Next" : "הבא",
"Reset" : "איפוס", "Reset" : "איפוס",
"Continue" : "להמשך", "Continue" : "להמשך",
"Undo" : "ביטול", "Undo" : "ביטול",
@ -48,6 +52,7 @@
"Extension" : "הרחבה", "Extension" : "הרחבה",
"Name is required." : "נדרש שם.", "Name is required." : "נדרש שם.",
"Quality" : "איכות", "Quality" : "איכות",
"Direct" : "ישיר",
"Auto" : "אוטומטי" "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;" },"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", "memories",
{ {
"Settings" : "Postavke", "Settings" : "Postavke",
"People" : "Ljudi",
"Timeline" : "Vremenska crta", "Timeline" : "Vremenska crta",
"Folders" : "Mape", "Folders" : "Mape",
"Favorites" : "Favoriti", "Favorites" : "Favoriti",
"Videos" : "Videozapisi", "Videos" : "Videozapisi",
"People" : "Ljudi",
"Archive" : "Arhiva", "Archive" : "Arhiva",
"Tags" : "Oznake", "Tags" : "Oznake",
"Maps" : "Karte", "Maps" : "Karte",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi", "Edit" : "Uredi",
"Loading …" : "Učitavanje…", "Loading …" : "Učitavanje…",
"Cancel" : "Odustani", "Cancel" : "Odustani",
@ -19,10 +18,6 @@ OC.L10N.register(
"Favorite" : "Favorit", "Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj", "Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi", "View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Copy public link" : "Kopiraj javnu poveznicu", "Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica", "Public link" : "Javna poveznica",
"Back" : "Natrag", "Back" : "Natrag",
@ -33,11 +28,20 @@ OC.L10N.register(
"Time" : "Vrijeme", "Time" : "Vrijeme",
"Hour" : "Sat", "Hour" : "Sat",
"Minute" : "Minuta", "Minute" : "Minuta",
"Title" : "Naslov",
"Description" : "Opis",
"Label" : "Oznaka",
"Copyright" : "Autorsko pravo",
"Name" : "Naziv", "Name" : "Naziv",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Refresh" : "Osvježi", "Refresh" : "Osvježi",
"Remove" : "Ukloni", "Remove" : "Ukloni",
"Share folder" : "Dijeli mapu", "Share folder" : "Dijeli mapu",
"Unsaved changes" : "Nespremljene promjene",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Reset" : "Resetiraj", "Reset" : "Resetiraj",
"Continue" : "Nastavi", "Continue" : "Nastavi",
"Undo" : "Poništi", "Undo" : "Poništi",
@ -53,6 +57,7 @@ OC.L10N.register(
"Extension" : "Proširenje", "Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.", "Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta", "Quality" : "Kvaliteta",
"Direct" : "Izravno",
"Auto" : "Auto" "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;"); "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": { { "translations": {
"Settings" : "Postavke", "Settings" : "Postavke",
"People" : "Ljudi",
"Timeline" : "Vremenska crta", "Timeline" : "Vremenska crta",
"Folders" : "Mape", "Folders" : "Mape",
"Favorites" : "Favoriti", "Favorites" : "Favoriti",
"Videos" : "Videozapisi", "Videos" : "Videozapisi",
"People" : "Ljudi",
"Archive" : "Arhiva", "Archive" : "Arhiva",
"Tags" : "Oznake", "Tags" : "Oznake",
"Maps" : "Karte", "Maps" : "Karte",
"Unsaved changes" : "Nespremljene promjene",
"Edit" : "Uredi", "Edit" : "Uredi",
"Loading …" : "Učitavanje…", "Loading …" : "Učitavanje…",
"Cancel" : "Odustani", "Cancel" : "Odustani",
@ -17,10 +16,6 @@
"Favorite" : "Favorit", "Favorite" : "Favorit",
"Unarchive" : "Dearhiviraj", "Unarchive" : "Dearhiviraj",
"View in folder" : "Prikaži u mapi", "View in folder" : "Prikaži u mapi",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Copy public link" : "Kopiraj javnu poveznicu", "Copy public link" : "Kopiraj javnu poveznicu",
"Public link" : "Javna poveznica", "Public link" : "Javna poveznica",
"Back" : "Natrag", "Back" : "Natrag",
@ -31,11 +26,20 @@
"Time" : "Vrijeme", "Time" : "Vrijeme",
"Hour" : "Sat", "Hour" : "Sat",
"Minute" : "Minuta", "Minute" : "Minuta",
"Title" : "Naslov",
"Description" : "Opis",
"Label" : "Oznaka",
"Copyright" : "Autorsko pravo",
"Name" : "Naziv", "Name" : "Naziv",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Refresh" : "Osvježi", "Refresh" : "Osvježi",
"Remove" : "Ukloni", "Remove" : "Ukloni",
"Share folder" : "Dijeli mapu", "Share folder" : "Dijeli mapu",
"Unsaved changes" : "Nespremljene promjene",
"Share" : "Dijeli",
"Close" : "Zatvori",
"Previous" : "Natrag",
"Next" : "Dalje",
"Reset" : "Resetiraj", "Reset" : "Resetiraj",
"Continue" : "Nastavi", "Continue" : "Nastavi",
"Undo" : "Poništi", "Undo" : "Poništi",
@ -51,6 +55,7 @@
"Extension" : "Proširenje", "Extension" : "Proširenje",
"Name is required." : "Ime je obavezno.", "Name is required." : "Ime je obavezno.",
"Quality" : "Kvaliteta", "Quality" : "Kvaliteta",
"Direct" : "Izravno",
"Auto" : "Auto" "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;" },"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",
{ {
"Memories" : "Emlékek", "Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás", "Fast, modern and advanced photo management suite" : "Gyors, modern és fejlett fényképkezelő csomag",
"# 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.",
"Settings" : "Beállítások", "Settings" : "Beállítások",
"People" : "Emberek",
"EXIF" : "EXIF",
"Timeline" : "Idővonal", "Timeline" : "Idővonal",
"Folders" : "Mappák", "Folders" : "Mappák",
"Favorites" : "Kedvencek", "Favorites" : "Kedvencek",
"Videos" : "Videók", "Videos" : "Videók",
"Albums" : "Albumok", "Albums" : "Albumok",
"People" : "Emberek",
"Archive" : "Archívum", "Archive" : "Archívum",
"On this day" : "A mai napon", "On this day" : "A mai napon",
"Tags" : "Címkék", "Tags" : "Címkék",
"Maps" : "Térképek", "Maps" : "Térképek",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Egy jobb fényképes élmény várja", "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", "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:", "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", "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", "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.", "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}", "_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}"],
"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",
"Edit" : "Szerkesztés", "Edit" : "Szerkesztés",
"Loading …" : "Betöltés…", "Loading …" : "Betöltés…",
"Cancel" : "Mégse", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} kiválasztva","{n} kiválasztva"],
"Timeline Path" : "Idővonal elérési útja", "Timeline Path" : "Idővonal elérési útja",
"Folders Path" : "Mappák útvonala", "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", "Choose the root for the folders view" : "Válassza ki a mappanézet gyökerét",
"Your Timeline" : "Saját idővonal", "Your Timeline" : "Saját idővonal",
"Failed to load some photos" : "Nem sikerült betölteni néhány fényképet", "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}", "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 for collaborators" : "Közreműködők keresése",
"Search people or groups" : "Felhasználó vagy csoport 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", "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", "Update Exif" : "Exif frissítése",
"Newest" : "Legújabb", "Newest" : "Legújabb",
"Oldest" : "Legrégebbi", "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}", "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", "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}?", "Are you sure you want to remove {name}?" : "Biztos, hogy eltávolítja a következőt: {name}?",
"Name" : "Név", "Name" : "Név",
@ -144,6 +130,21 @@ OC.L10N.register(
"Share folder" : "Mappa megosztása", "Share folder" : "Mappa megosztása",
"Move left" : "Mozgatás balra", "Move left" : "Mozgatás balra",
"Move right" : "Mozgatás jobbra", "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", "Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás", "Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.", "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%)", "Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret", "Fit size" : "Illeszkedő méret",
"Transcoding failed." : "Az átkódolás sikertelen.", "Transcoding failed." : "Az átkódolás sikertelen.",
"Direct" : "Közvetlen",
"Auto" : "Automatikus", "Auto" : "Automatikus",
"Shared Folder" : "Megosztott mappa", "Shared Folder" : "Megosztott mappa",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.", "Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
@ -237,7 +239,6 @@ OC.L10N.register(
"Error: {msg}" : "Hiba: {msg}", "Error: {msg}" : "Hiba: {msg}",
"Failed to delete files." : "A fájlok törlése sikertelen.", "Failed to delete files." : "A fájlok törlése sikertelen.",
"Failed to delete {fileName}." : "A(z) {fileName} 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 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 some files." : "Egyes fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite {fileName}." : "A(z) {fileName} 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": { { "translations": {
"Memories" : "Emlékek", "Memories" : "Emlékek",
"Yet another photo management app" : "Még egy fényképkezelő alkalmazás", "Fast, modern and advanced photo management suite" : "Gyors, modern és fejlett fényképkezelő csomag",
"# 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.",
"Settings" : "Beállítások", "Settings" : "Beállítások",
"People" : "Emberek",
"EXIF" : "EXIF",
"Timeline" : "Idővonal", "Timeline" : "Idővonal",
"Folders" : "Mappák", "Folders" : "Mappák",
"Favorites" : "Kedvencek", "Favorites" : "Kedvencek",
"Videos" : "Videók", "Videos" : "Videók",
"Albums" : "Albumok", "Albums" : "Albumok",
"People" : "Emberek",
"Archive" : "Archívum", "Archive" : "Archívum",
"On this day" : "A mai napon", "On this day" : "A mai napon",
"Tags" : "Címkék", "Tags" : "Címkék",
"Maps" : "Térképek", "Maps" : "Térképek",
"EXIF" : "EXIF",
"A better photos experience awaits you" : "Egy jobb fényképes élmény várja", "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", "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:", "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", "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", "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.", "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}", "_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}"],
"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",
"Edit" : "Szerkesztés", "Edit" : "Szerkesztés",
"Loading …" : "Betöltés…", "Loading …" : "Betöltés…",
"Cancel" : "Mégse", "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 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 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?", "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"], "_{n} selected_::_{n} selected_" : ["{n} kiválasztva","{n} kiválasztva"],
"Timeline Path" : "Idővonal elérési útja", "Timeline Path" : "Idővonal elérési útja",
"Folders Path" : "Mappák útvonala", "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", "Choose the root for the folders view" : "Válassza ki a mappanézet gyökerét",
"Your Timeline" : "Saját idővonal", "Your Timeline" : "Saját idővonal",
"Failed to load some photos" : "Nem sikerült betölteni néhány fényképet", "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}", "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 for collaborators" : "Közreműködők keresése",
"Search people or groups" : "Felhasználó vagy csoport 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", "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", "Update Exif" : "Exif frissítése",
"Newest" : "Legújabb", "Newest" : "Legújabb",
"Oldest" : "Legrégebbi", "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}", "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", "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}?", "Are you sure you want to remove {name}?" : "Biztos, hogy eltávolítja a következőt: {name}?",
"Name" : "Név", "Name" : "Név",
@ -142,6 +128,21 @@
"Share folder" : "Mappa megosztása", "Share folder" : "Mappa megosztása",
"Move left" : "Mozgatás balra", "Move left" : "Mozgatás balra",
"Move right" : "Mozgatás jobbra", "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", "Save as" : "Mentés másként",
"Reset" : "Alaphelyzetbe állítás", "Reset" : "Alaphelyzetbe állítás",
"All changes will be lost." : "Az összes változtatás elvész.", "All changes will be lost." : "Az összes változtatás elvész.",
@ -227,6 +228,7 @@
"Actual size (100%)" : "Tényleges méret (100%)", "Actual size (100%)" : "Tényleges méret (100%)",
"Fit size" : "Illeszkedő méret", "Fit size" : "Illeszkedő méret",
"Transcoding failed." : "Az átkódolás sikertelen.", "Transcoding failed." : "Az átkódolás sikertelen.",
"Direct" : "Közvetlen",
"Auto" : "Automatikus", "Auto" : "Automatikus",
"Shared Folder" : "Megosztott mappa", "Shared Folder" : "Megosztott mappa",
"Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.", "Failed to create {albumName}." : "A(z) {albumName} létrehozása sikertelen.",
@ -235,7 +237,6 @@
"Error: {msg}" : "Hiba: {msg}", "Error: {msg}" : "Hiba: {msg}",
"Failed to delete files." : "A fájlok törlése sikertelen.", "Failed to delete files." : "A fájlok törlése sikertelen.",
"Failed to delete {fileName}." : "A(z) {fileName} 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 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 some files." : "Egyes fájlok kedvencnek jelölése sikertelen.",
"Failed to favorite {fileName}." : "A(z) {fileName} 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