extract strings

This commit is contained in:
ashilkn 2024-03-15 20:22:15 +05:30
parent ed2e3bae0d
commit 07c41c4c92
27 changed files with 1339 additions and 1087 deletions

@ -1 +1 @@
Subproject commit 41456452f29d64e8deb623a3c927524bcf9f111b Subproject commit 367f9ea16bfae1ca451b9cc27c1366870b187ae2

View file

@ -20,10 +20,18 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary { class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'cs'; String get localeName => 'cs';
static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{ static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
"addCollaborators": m0,
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewers": m1,
"changeLocationOfSelectedItems": MessageLookupByLibrary.simpleMessage( "changeLocationOfSelectedItems": MessageLookupByLibrary.simpleMessage(
"Change location of selected items?"), "Change location of selected items?"),
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
@ -37,6 +45,9 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("File types"), "fileTypes": MessageLookupByLibrary.simpleMessage("File types"),
"joinDiscord": MessageLookupByLibrary.simpleMessage("Join Discord"), "joinDiscord": MessageLookupByLibrary.simpleMessage("Join Discord"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Locations"),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"modifyYourQueryOrTrySearchingFor": "modifyYourQueryOrTrySearchingFor":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Modify your query, or try searching for"), "Modify your query, or try searching for"),

View file

@ -21,27 +21,33 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'de'; String get localeName => 'de';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Element hinzufügen', other: 'Elemente hinzufügen')}"; "${Intl.plural(count, one: 'Element hinzufügen', other: 'Elemente hinzufügen')}";
static String m1(storageAmount, endDate) => static String m3(storageAmount, endDate) =>
"Dein ${storageAmount} Add-on ist gültig bis ${endDate}"; "Dein ${storageAmount} Add-on ist gültig bis ${endDate}";
static String m2(emailOrName) => "Von ${emailOrName} hinzugefügt"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Erfolgreich zu ${albumName} hinzugefügt"; static String m4(emailOrName) => "Von ${emailOrName} hinzugefügt";
static String m4(count) => static String m5(albumName) => "Erfolgreich zu ${albumName} hinzugefügt";
static String m6(count) =>
"${Intl.plural(count, zero: 'Keine Teilnehmer', one: '1 Teilnehmer', other: '${count} Teilnehmer')}"; "${Intl.plural(count, zero: 'Keine Teilnehmer', one: '1 Teilnehmer', other: '${count} Teilnehmer')}";
static String m5(versionValue) => "Version: ${versionValue}"; static String m7(versionValue) => "Version: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Bitte kündigen Sie Ihr aktuelles Abo über ${paymentProvider} zuerst"; "Bitte kündigen Sie Ihr aktuelles Abo über ${paymentProvider} zuerst";
static String m7(user) => static String m9(user) =>
"Der Nutzer \"${user}\" wird keine weiteren Fotos zum Album hinzufügen können.\n\nJedoch kann er weiterhin vorhandene Bilder, welche durch ihn hinzugefügt worden sind, wieder entfernen"; "Der Nutzer \"${user}\" wird keine weiteren Fotos zum Album hinzufügen können.\n\nJedoch kann er weiterhin vorhandene Bilder, welche durch ihn hinzugefügt worden sind, wieder entfernen";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Deine Familiengruppe hat bereits ${storageAmountInGb} GB erhalten', 'Deine Familiengruppe hat bereits ${storageAmountInGb} GB erhalten',
@ -49,166 +55,166 @@ class MessageLookup extends MessageLookupByLibrary {
'other': 'Du hast bereits ${storageAmountInGb} GB erhalten!', 'other': 'Du hast bereits ${storageAmountInGb} GB erhalten!',
})}"; })}";
static String m9(albumName) => static String m11(albumName) =>
"Kollaborativer Link für ${albumName} erstellt"; "Kollaborativer Link für ${albumName} erstellt";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Bitte kontaktiere <green>${familyAdminEmail}</green> um dein Abo zu verwalten"; "Bitte kontaktiere <green>${familyAdminEmail}</green> um dein Abo zu verwalten";
static String m11(provider) => static String m13(provider) =>
"Bitte kontaktieren Sie uns über support@ente.io, um Ihr ${provider} Abo zu verwalten."; "Bitte kontaktieren Sie uns über support@ente.io, um Ihr ${provider} Abo zu verwalten.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Lösche ${count} Element', other: 'Lösche ${count} Elemente')}"; "${Intl.plural(count, one: 'Lösche ${count} Element', other: 'Lösche ${count} Elemente')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Lösche ${currentlyDeleting} / ${totalCount}"; "Lösche ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Der öffentliche Link zum Zugriff auf \"${albumName}\" wird entfernt."; "Der öffentliche Link zum Zugriff auf \"${albumName}\" wird entfernt.";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Bitte sende eine E-Mail an ${supportEmail} von deiner registrierten E-Mail-Adresse"; "Bitte sende eine E-Mail an ${supportEmail} von deiner registrierten E-Mail-Adresse";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"Du hast ${Intl.plural(count, one: '${count} duplizierte Datei', other: '${count} dupliziere Dateien')} gelöscht und (${storageSaved}!) freigegeben"; "Du hast ${Intl.plural(count, one: '${count} duplizierte Datei', other: '${count} dupliziere Dateien')} gelöscht und (${storageSaved}!) freigegeben";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} Dateien, ${formattedSize} jede"; "${count} Dateien, ${formattedSize} jede";
static String m18(newEmail) => "E-Mail-Adresse geändert zu ${newEmail}"; static String m20(newEmail) => "E-Mail-Adresse geändert zu ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} hat kein Ente-Konto.\n\nSenden Sie eine Einladung, um Fotos zu teilen."; "${email} hat kein Ente-Konto.\n\nSenden Sie eine Einladung, um Fotos zu teilen.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 Datei', other: '${formattedNumber} Dateien')} auf diesem Gerät wurde(n) sicher gespeichert"; "${Intl.plural(count, one: '1 Datei', other: '${formattedNumber} Dateien')} auf diesem Gerät wurde(n) sicher gespeichert";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 Datei', other: '${formattedNumber} Dateien')} in diesem Album wurde(n) sicher gespeichert"; "${Intl.plural(count, one: '1 Datei', other: '${formattedNumber} Dateien')} in diesem Album wurde(n) sicher gespeichert";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB jedes Mal, wenn sich jemand mit deinem Code für einen bezahlten Tarif anmeldet"; "${storageAmountInGB} GB jedes Mal, wenn sich jemand mit deinem Code für einen bezahlten Tarif anmeldet";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} kostenlos"; "${freeAmount} ${storageUnit} kostenlos";
static String m24(endDate) => "Kostenlose Demo verfügbar bis zum ${endDate}"; static String m26(endDate) => "Kostenlose Demo verfügbar bis zum ${endDate}";
static String m25(count) => static String m27(count) =>
"Sie können immer noch ${Intl.plural(count, one: 'darauf', other: 'auf sie')} auf ente zugreifen, solange Sie ein aktives Abonnement haben"; "Sie können immer noch ${Intl.plural(count, one: 'darauf', other: 'auf sie')} auf ente zugreifen, solange Sie ein aktives Abonnement haben";
static String m26(sizeInMBorGB) => "${sizeInMBorGB} freigeben"; static String m28(sizeInMBorGB) => "${sizeInMBorGB} freigeben";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Es kann vom Gerät gelöscht werden, um ${formattedSize} freizugeben', other: 'Sie können vom Gerät gelöscht werden, um ${formattedSize} freizugeben')}"; "${Intl.plural(count, one: 'Es kann vom Gerät gelöscht werden, um ${formattedSize} freizugeben', other: 'Sie können vom Gerät gelöscht werden, um ${formattedSize} freizugeben')}";
static String m28(currentlyProcessing, totalCount) => static String m30(currentlyProcessing, totalCount) =>
"Verarbeite ${currentlyProcessing} / ${totalCount}"; "Verarbeite ${currentlyProcessing} / ${totalCount}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} Objekt', other: '${count} Objekte')}"; "${Intl.plural(count, one: '${count} Objekt', other: '${count} Objekte')}";
static String m30(expiryTime) => "Link läuft am ${expiryTime} ab"; static String m32(expiryTime) => "Link läuft am ${expiryTime} ab";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: 'keine Erinnerungsstücke', one: '${formattedCount} Erinnerung', other: '${formattedCount} Erinnerungsstücke')}"; "${Intl.plural(count, zero: 'keine Erinnerungsstücke', one: '${formattedCount} Erinnerung', other: '${formattedCount} Erinnerungsstücke')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Element verschieben', other: 'Elemente verschieben')}"; "${Intl.plural(count, one: 'Element verschieben', other: 'Elemente verschieben')}";
static String m33(albumName) => "Erfolgreich zu ${albumName} hinzugefügt"; static String m35(albumName) => "Erfolgreich zu ${albumName} hinzugefügt";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Passwortstärke: ${passwordStrengthValue}"; "Passwortstärke: ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Bitte kontaktiere den Support von ${providerName}, falls etwas abgebucht wurde"; "Bitte kontaktiere den Support von ${providerName}, falls etwas abgebucht wurde";
static String m36(reason) => static String m38(reason) =>
"Leider ist deine Zahlung aus folgendem Grund fehlgeschlagen: ${reason}"; "Leider ist deine Zahlung aus folgendem Grund fehlgeschlagen: ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Kostenlose Testversion gültig bis ${endDate}.\nSie können anschließend ein bezahltes Paket auswählen."; "Kostenlose Testversion gültig bis ${endDate}.\nSie können anschließend ein bezahltes Paket auswählen.";
static String m38(toEmail) => "Bitte sende uns eine E-Mail an ${toEmail}"; static String m40(toEmail) => "Bitte sende uns eine E-Mail an ${toEmail}";
static String m39(toEmail) => "Bitte sende die Protokolle an ${toEmail}"; static String m41(toEmail) => "Bitte sende die Protokolle an ${toEmail}";
static String m40(storeName) => "Bewerte uns auf ${storeName}"; static String m42(storeName) => "Bewerte uns auf ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"3. Ihr beide erhaltet ${storageInGB} GB* kostenlos"; "3. Ihr beide erhaltet ${storageInGB} GB* kostenlos";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} wird aus diesem geteilten Album entfernt\n\nAlle von ihnen hinzugefügte Fotos werden ebenfalls aus dem Album entfernt"; "${userEmail} wird aus diesem geteilten Album entfernt\n\nAlle von ihnen hinzugefügte Fotos werden ebenfalls aus dem Album entfernt";
static String m43(endDate) => "Erneuert am ${endDate}"; static String m45(endDate) => "Erneuert am ${endDate}";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, one: '${count} Ergebnis gefunden', other: '${count} Ergebnisse gefunden')}"; "${Intl.plural(count, one: '${count} Ergebnis gefunden', other: '${count} Ergebnisse gefunden')}";
static String m45(count) => "${count} ausgewählt"; static String m47(count) => "${count} ausgewählt";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} ausgewählt (${yourCount} von Ihnen)"; "${count} ausgewählt (${yourCount} von Ihnen)";
static String m47(verificationID) => static String m49(verificationID) =>
"Hier ist meine Verifizierungs-ID: ${verificationID} für ente.io."; "Hier ist meine Verifizierungs-ID: ${verificationID} für ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hey, kannst du bestätigen, dass dies deine ente.io Verifizierungs-ID ist: ${verificationID}"; "Hey, kannst du bestätigen, dass dies deine ente.io Verifizierungs-ID ist: ${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente Weiterempfehlungs-Code: ${referralCode} \n\nEinlösen unter Einstellungen → Allgemein → Weiterempfehlungen, um ${referralStorageInGB} GB kostenlos zu erhalten, sobald Sie einen kostenpflichtigen Tarif abgeschlossen haben\n\nhttps://ente.io"; "ente Weiterempfehlungs-Code: ${referralCode} \n\nEinlösen unter Einstellungen → Allgemein → Weiterempfehlungen, um ${referralStorageInGB} GB kostenlos zu erhalten, sobald Sie einen kostenpflichtigen Tarif abgeschlossen haben\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Teile mit bestimmten Personen', one: 'Teilen mit 1 Person', other: 'Teilen mit ${numberOfPeople} Personen')}"; "${Intl.plural(numberOfPeople, zero: 'Teile mit bestimmten Personen', one: 'Teilen mit 1 Person', other: 'Teilen mit ${numberOfPeople} Personen')}";
static String m51(emailIDs) => "Geteilt mit ${emailIDs}"; static String m53(emailIDs) => "Geteilt mit ${emailIDs}";
static String m52(fileType) =>
"Dieses ${fileType} wird von deinem Gerät gelöscht.";
static String m53(fileType) =>
"Dieses ${fileType} existiert auf ente.io und deinem Gerät.";
static String m54(fileType) => static String m54(fileType) =>
"Dieses ${fileType} wird von deinem Gerät gelöscht.";
static String m55(fileType) =>
"Dieses ${fileType} existiert auf ente.io und deinem Gerät.";
static String m56(fileType) =>
"Dieses ${fileType} wird auf ente.io gelöscht."; "Dieses ${fileType} wird auf ente.io gelöscht.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} von ${totalAmount} ${totalStorageUnit} verwendet"; "${usedAmount} ${usedStorageUnit} von ${totalAmount} ${totalStorageUnit} verwendet";
static String m57(id) => static String m59(id) =>
"Ihr ${id} ist bereits mit einem anderen \'ente\'-Konto verknüpft.\nWenn Sie Ihre ${id} mit diesem Konto verwenden möchten, kontaktieren Sie bitte unseren Support\'"; "Ihr ${id} ist bereits mit einem anderen \'ente\'-Konto verknüpft.\nWenn Sie Ihre ${id} mit diesem Konto verwenden möchten, kontaktieren Sie bitte unseren Support\'";
static String m58(endDate) => "Ihr Abo endet am ${endDate}"; static String m60(endDate) => "Ihr Abo endet am ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} Erinnerungsstücke gesichert"; "${completed}/${total} Erinnerungsstücke gesichert";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"Diese erhalten auch ${storageAmountInGB} GB"; "Diese erhalten auch ${storageAmountInGB} GB";
static String m61(email) => "Dies ist ${email}s Verifizierungs-ID"; static String m63(email) => "Dies ist ${email}s Verifizierungs-ID";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1 Tag', other: '${count} Tage')}"; "${Intl.plural(count, zero: '', one: '1 Tag', other: '${count} Tage')}";
static String m63(endDate) => "Gültig bis ${endDate}"; static String m65(endDate) => "Gültig bis ${endDate}";
static String m64(email) => "Verifiziere ${email}"; static String m66(email) => "Verifiziere ${email}";
static String m65(email) => static String m67(email) =>
"Wir haben eine E-Mail an <green>${email}</green> gesendet"; "Wir haben eine E-Mail an <green>${email}</green> gesendet";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: 'vor einem Jahr', other: 'vor ${count} Jahren')}"; "${Intl.plural(count, one: 'vor einem Jahr', other: 'vor ${count} Jahren')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"Du hast ${storageSaved} erfolgreich freigegeben!"; "Du hast ${storageSaved} erfolgreich freigegeben!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -228,16 +234,17 @@ class MessageLookup extends MessageLookupByLibrary {
"Neue E-Mail-Adresse hinzufügen"), "Neue E-Mail-Adresse hinzufügen"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Bearbeiter hinzufügen"), MessageLookupByLibrary.simpleMessage("Bearbeiter hinzufügen"),
"addCollaborators": m0,
"addFromDevice": "addFromDevice":
MessageLookupByLibrary.simpleMessage("Vom Gerät hinzufügen"), MessageLookupByLibrary.simpleMessage("Vom Gerät hinzufügen"),
"addItem": m0, "addItem": m2,
"addLocation": MessageLookupByLibrary.simpleMessage("Ort hinzufügen"), "addLocation": MessageLookupByLibrary.simpleMessage("Ort hinzufügen"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Hinzufügen"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Hinzufügen"),
"addMore": MessageLookupByLibrary.simpleMessage("Mehr hinzufügen"), "addMore": MessageLookupByLibrary.simpleMessage("Mehr hinzufügen"),
"addNew": MessageLookupByLibrary.simpleMessage("Hinzufügen"), "addNew": MessageLookupByLibrary.simpleMessage("Hinzufügen"),
"addOnPageSubtitle": "addOnPageSubtitle":
MessageLookupByLibrary.simpleMessage("Details der Add-ons"), MessageLookupByLibrary.simpleMessage("Details der Add-ons"),
"addOnValidTill": m1, "addOnValidTill": m3,
"addOns": MessageLookupByLibrary.simpleMessage("Add-ons"), "addOns": MessageLookupByLibrary.simpleMessage("Add-ons"),
"addPhotos": MessageLookupByLibrary.simpleMessage("Fotos hinzufügen"), "addPhotos": MessageLookupByLibrary.simpleMessage("Fotos hinzufügen"),
"addSelected": "addSelected":
@ -248,11 +255,12 @@ class MessageLookup extends MessageLookupByLibrary {
"addToHiddenAlbum": MessageLookupByLibrary.simpleMessage( "addToHiddenAlbum": MessageLookupByLibrary.simpleMessage(
"Zum versteckten Album hinzufügen"), "Zum versteckten Album hinzufügen"),
"addViewer": MessageLookupByLibrary.simpleMessage("Album teilen"), "addViewer": MessageLookupByLibrary.simpleMessage("Album teilen"),
"addViewers": m1,
"addYourPhotosNow": "addYourPhotosNow":
MessageLookupByLibrary.simpleMessage("Füge deine Foto jetzt hinzu"), MessageLookupByLibrary.simpleMessage("Füge deine Foto jetzt hinzu"),
"addedAs": MessageLookupByLibrary.simpleMessage("Hinzugefügt als"), "addedAs": MessageLookupByLibrary.simpleMessage("Hinzugefügt als"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": MessageLookupByLibrary.simpleMessage( "addingToFavorites": MessageLookupByLibrary.simpleMessage(
"Wird zu Favoriten hinzugefügt..."), "Wird zu Favoriten hinzugefügt..."),
"advanced": MessageLookupByLibrary.simpleMessage("Erweitert"), "advanced": MessageLookupByLibrary.simpleMessage("Erweitert"),
@ -263,7 +271,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("Nach 1 Woche"), "after1Week": MessageLookupByLibrary.simpleMessage("Nach 1 Woche"),
"after1Year": MessageLookupByLibrary.simpleMessage("Nach 1 Jahr"), "after1Year": MessageLookupByLibrary.simpleMessage("Nach 1 Jahr"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Besitzer"), "albumOwner": MessageLookupByLibrary.simpleMessage("Besitzer"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Albumtitel"), "albumTitle": MessageLookupByLibrary.simpleMessage("Albumtitel"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Album aktualisiert"), MessageLookupByLibrary.simpleMessage("Album aktualisiert"),
@ -301,7 +309,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"),
"androidSignInTitle": MessageLookupByLibrary.simpleMessage( "androidSignInTitle": MessageLookupByLibrary.simpleMessage(
"Authentifizierung erforderlich"), "Authentifizierung erforderlich"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("Anwenden"), "apply": MessageLookupByLibrary.simpleMessage("Anwenden"),
"applyCodeTitle": MessageLookupByLibrary.simpleMessage("Code nutzen"), "applyCodeTitle": MessageLookupByLibrary.simpleMessage("Code nutzen"),
@ -387,12 +395,14 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Du kannst nur Dateien entfernen, die dir gehören"), "Du kannst nur Dateien entfernen, die dir gehören"),
"cancel": MessageLookupByLibrary.simpleMessage("Abbrechen"), "cancel": MessageLookupByLibrary.simpleMessage("Abbrechen"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Abonnement kündigen"), MessageLookupByLibrary.simpleMessage("Abonnement kündigen"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage( "cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage(
"Konnte geteilte Dateien nicht löschen"), "Konnte geteilte Dateien nicht löschen"),
"castInstruction": MessageLookupByLibrary.simpleMessage(
"Besuche cast.ente.io auf dem Gerät, das du verbinden möchtest.\n\nGib den unten angegebenen Code ein, um das Album auf deinem Fernseher abzuspielen."),
"centerPoint": MessageLookupByLibrary.simpleMessage("Mittelpunkt"), "centerPoint": MessageLookupByLibrary.simpleMessage("Mittelpunkt"),
"changeEmail": "changeEmail":
MessageLookupByLibrary.simpleMessage("E-Mail-Adresse ändern"), MessageLookupByLibrary.simpleMessage("E-Mail-Adresse ändern"),
@ -413,10 +423,13 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Freien Speicher einlösen"), MessageLookupByLibrary.simpleMessage("Freien Speicher einlösen"),
"claimMore": MessageLookupByLibrary.simpleMessage("Mehr einlösen!"), "claimMore": MessageLookupByLibrary.simpleMessage("Mehr einlösen!"),
"claimed": MessageLookupByLibrary.simpleMessage("Eingelöst"), "claimed": MessageLookupByLibrary.simpleMessage("Eingelöst"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"cleanUncategorized": "cleanUncategorized":
MessageLookupByLibrary.simpleMessage("Unkategorisiert leeren"), MessageLookupByLibrary.simpleMessage("Unkategorisiert leeren"),
"cleanUncategorizedDescription": MessageLookupByLibrary.simpleMessage(
"Entferne alle Dateien von \"Unkategorisiert\" die in anderen Alben vorhanden sind"),
"clearCaches": MessageLookupByLibrary.simpleMessage("Cache löschen"), "clearCaches": MessageLookupByLibrary.simpleMessage("Cache löschen"),
"clearIndexes": MessageLookupByLibrary.simpleMessage("Indexe löschen"),
"click": MessageLookupByLibrary.simpleMessage("• Klick"), "click": MessageLookupByLibrary.simpleMessage("• Klick"),
"clickOnTheOverflowMenu": MessageLookupByLibrary.simpleMessage( "clickOnTheOverflowMenu": MessageLookupByLibrary.simpleMessage(
"• Klicken Sie auf das Überlaufmenü"), "• Klicken Sie auf das Überlaufmenü"),
@ -435,7 +448,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Erstelle einen Link, um anderen zu ermöglichen, Fotos in deinem geteilten Album hinzuzufügen und zu sehen - ohne dass diese ein Konto von ente.io oder die App benötigen. Ideal, um Fotos von Events zu sammeln."), "Erstelle einen Link, um anderen zu ermöglichen, Fotos in deinem geteilten Album hinzuzufügen und zu sehen - ohne dass diese ein Konto von ente.io oder die App benötigen. Ideal, um Fotos von Events zu sammeln."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Gemeinschaftlicher Link"), MessageLookupByLibrary.simpleMessage("Gemeinschaftlicher Link"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Bearbeiter"), "collaborator": MessageLookupByLibrary.simpleMessage("Bearbeiter"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -462,10 +475,10 @@ class MessageLookup extends MessageLookupByLibrary {
"Wiederherstellungsschlüssel bestätigen"), "Wiederherstellungsschlüssel bestätigen"),
"confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage( "confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage(
"Bestätigen Sie ihren Wiederherstellungsschlüssel"), "Bestätigen Sie ihren Wiederherstellungsschlüssel"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Support kontaktieren"), MessageLookupByLibrary.simpleMessage("Support kontaktieren"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Kontakte"), "contacts": MessageLookupByLibrary.simpleMessage("Kontakte"),
"contents": MessageLookupByLibrary.simpleMessage("Inhalte"), "contents": MessageLookupByLibrary.simpleMessage("Inhalte"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Weiter"), "continueLabel": MessageLookupByLibrary.simpleMessage("Weiter"),
@ -543,11 +556,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Vom Gerät löschen"), MessageLookupByLibrary.simpleMessage("Vom Gerät löschen"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Auf ente.io löschen"), MessageLookupByLibrary.simpleMessage("Auf ente.io löschen"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": "deleteLocation":
MessageLookupByLibrary.simpleMessage("Standort löschen"), MessageLookupByLibrary.simpleMessage("Standort löschen"),
"deletePhotos": MessageLookupByLibrary.simpleMessage("Fotos löschen"), "deletePhotos": MessageLookupByLibrary.simpleMessage("Fotos löschen"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Es fehlt eine zentrale Funktion, die ich benötige"), "Es fehlt eine zentrale Funktion, die ich benötige"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -562,17 +575,20 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Geteiltes Album löschen?"), MessageLookupByLibrary.simpleMessage("Geteiltes Album löschen?"),
"deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage( "deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage(
"Dieses Album wird für alle gelöscht\n\nDu wirst den Zugriff auf geteilte Fotos in diesem Album, die anderen gehören, verlieren"), "Dieses Album wird für alle gelöscht\n\nDu wirst den Zugriff auf geteilte Fotos in diesem Album, die anderen gehören, verlieren"),
"descriptions": MessageLookupByLibrary.simpleMessage("Descriptions"), "descriptions": MessageLookupByLibrary.simpleMessage("Beschreibungen"),
"deselectAll": MessageLookupByLibrary.simpleMessage("Alle abwählen"), "deselectAll": MessageLookupByLibrary.simpleMessage("Alle abwählen"),
"designedToOutlive": "designedToOutlive":
MessageLookupByLibrary.simpleMessage("Entwickelt um zu bewahren"), MessageLookupByLibrary.simpleMessage("Entwickelt um zu bewahren"),
"details": MessageLookupByLibrary.simpleMessage("Details"), "details": MessageLookupByLibrary.simpleMessage("Details"),
"devAccountChanged": MessageLookupByLibrary.simpleMessage( "devAccountChanged": MessageLookupByLibrary.simpleMessage(
"Das Entwicklerkonto, das wir verwenden, um ente im App Store zu veröffentlichen, hat sich geändert. Aus diesem Grund musst du dich erneut anmelden.\n\nWir entschuldigen uns für die Unannehmlichkeiten, aber das war unvermeidlich."), "Das Entwicklerkonto, das wir verwenden, um ente im App Store zu veröffentlichen, hat sich geändert. Aus diesem Grund musst du dich erneut anmelden.\n\nWir entschuldigen uns für die Unannehmlichkeiten, aber das war unvermeidlich."),
"deviceCodeHint": MessageLookupByLibrary.simpleMessage("Code eingeben"),
"deviceFilesAutoUploading": MessageLookupByLibrary.simpleMessage( "deviceFilesAutoUploading": MessageLookupByLibrary.simpleMessage(
"Dateien, die zu diesem Album hinzugefügt werden, werden automatisch zu ente hochgeladen."), "Dateien, die zu diesem Album hinzugefügt werden, werden automatisch zu ente hochgeladen."),
"deviceLockExplanation": MessageLookupByLibrary.simpleMessage( "deviceLockExplanation": MessageLookupByLibrary.simpleMessage(
"Das Sperren des Gerätes verhindern, solange \'ente\' im Vordergrund geöffnet ist und eine Sicherung läuft. \nDies wird für gewöhnlich nicht benötigt, kann aber dabei helfen große Transfers schneller durchzuführen."), "Das Sperren des Gerätes verhindern, solange \'ente\' im Vordergrund geöffnet ist und eine Sicherung läuft. \nDies wird für gewöhnlich nicht benötigt, kann aber dabei helfen große Transfers schneller durchzuführen."),
"deviceNotFound":
MessageLookupByLibrary.simpleMessage("Gerät nicht gefunden"),
"didYouKnow": MessageLookupByLibrary.simpleMessage("Schon gewusst?"), "didYouKnow": MessageLookupByLibrary.simpleMessage("Schon gewusst?"),
"disableAutoLock": MessageLookupByLibrary.simpleMessage( "disableAutoLock": MessageLookupByLibrary.simpleMessage(
"Automatische Sperre deaktivieren"), "Automatische Sperre deaktivieren"),
@ -580,7 +596,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Zuschauer können weiterhin Screenshots oder mit anderen externen Programmen Kopien der Bilder machen."), "Zuschauer können weiterhin Screenshots oder mit anderen externen Programmen Kopien der Bilder machen."),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Bitte beachten Sie:"), MessageLookupByLibrary.simpleMessage("Bitte beachten Sie:"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage( "disableTwofactor": MessageLookupByLibrary.simpleMessage(
"Zweiten Faktor (2FA) deaktivieren"), "Zweiten Faktor (2FA) deaktivieren"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -603,9 +619,9 @@ class MessageLookup extends MessageLookupByLibrary {
"Herunterladen fehlgeschlagen"), "Herunterladen fehlgeschlagen"),
"downloading": "downloading":
MessageLookupByLibrary.simpleMessage("Wird heruntergeladen..."), MessageLookupByLibrary.simpleMessage("Wird heruntergeladen..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Bearbeiten"), "edit": MessageLookupByLibrary.simpleMessage("Bearbeiten"),
"editLocation": "editLocation":
MessageLookupByLibrary.simpleMessage("Standort bearbeiten"), MessageLookupByLibrary.simpleMessage("Standort bearbeiten"),
@ -618,8 +634,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Änderungen des Standorts werden nur in ente sichtbar sein"), "Änderungen des Standorts werden nur in ente sichtbar sein"),
"eligible": MessageLookupByLibrary.simpleMessage("zulässig"), "eligible": MessageLookupByLibrary.simpleMessage("zulässig"),
"email": MessageLookupByLibrary.simpleMessage("E-Mail"), "email": MessageLookupByLibrary.simpleMessage("E-Mail"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("E-Mail-Verifizierung"), MessageLookupByLibrary.simpleMessage("E-Mail-Verifizierung"),
"emailYourLogs": MessageLookupByLibrary.simpleMessage( "emailYourLogs": MessageLookupByLibrary.simpleMessage(
@ -719,8 +735,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("Dateitypen"), "fileTypes": MessageLookupByLibrary.simpleMessage("Dateitypen"),
"fileTypesAndNames": "fileTypesAndNames":
MessageLookupByLibrary.simpleMessage("Dateitypen und -namen"), MessageLookupByLibrary.simpleMessage("Dateitypen und -namen"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": "filesDeleted":
MessageLookupByLibrary.simpleMessage("Dateien gelöscht"), MessageLookupByLibrary.simpleMessage("Dateien gelöscht"),
"flip": MessageLookupByLibrary.simpleMessage("Spiegeln"), "flip": MessageLookupByLibrary.simpleMessage("Spiegeln"),
@ -730,26 +746,26 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Passwort vergessen"), MessageLookupByLibrary.simpleMessage("Passwort vergessen"),
"freeStorageClaimed": MessageLookupByLibrary.simpleMessage( "freeStorageClaimed": MessageLookupByLibrary.simpleMessage(
"Kostenlos hinzugefügter Speicherplatz"), "Kostenlos hinzugefügter Speicherplatz"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": MessageLookupByLibrary.simpleMessage( "freeStorageUsable": MessageLookupByLibrary.simpleMessage(
"Freier Speicherplatz nutzbar"), "Freier Speicherplatz nutzbar"),
"freeTrial": "freeTrial":
MessageLookupByLibrary.simpleMessage("Kostenlose Testphase"), MessageLookupByLibrary.simpleMessage("Kostenlose Testphase"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": "freeUpDeviceSpace":
MessageLookupByLibrary.simpleMessage("Gerätespeicher freiräumen"), MessageLookupByLibrary.simpleMessage("Gerätespeicher freiräumen"),
"freeUpSpace": "freeUpSpace":
MessageLookupByLibrary.simpleMessage("Speicherplatz freigeben"), MessageLookupByLibrary.simpleMessage("Speicherplatz freigeben"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Bis zu 1000 Erinnerungsstücke angezeigt in der Galerie"), "Bis zu 1000 Erinnerungsstücke angezeigt in der Galerie"),
"general": MessageLookupByLibrary.simpleMessage("Allgemein"), "general": MessageLookupByLibrary.simpleMessage("Allgemein"),
"generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage( "generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage(
"Generierung von Verschlüsselungscodes..."), "Generierung von Verschlüsselungscodes..."),
"genericProgress": m28, "genericProgress": m30,
"goToSettings": "goToSettings":
MessageLookupByLibrary.simpleMessage("Zu den Einstellungen"), MessageLookupByLibrary.simpleMessage("Zu den Einstellungen"),
"googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"), "googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"),
@ -790,6 +806,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Der eingegebene Schlüssel ist ungültig"), "Der eingegebene Schlüssel ist ungültig"),
"incorrectRecoveryKeyTitle": MessageLookupByLibrary.simpleMessage( "incorrectRecoveryKeyTitle": MessageLookupByLibrary.simpleMessage(
"Falscher Wiederherstellungs-Schlüssel"), "Falscher Wiederherstellungs-Schlüssel"),
"indexedItems":
MessageLookupByLibrary.simpleMessage("Indizierte Elemente"),
"insecureDevice": "insecureDevice":
MessageLookupByLibrary.simpleMessage("Unsicheres Gerät"), MessageLookupByLibrary.simpleMessage("Unsicheres Gerät"),
"installManually": "installManually":
@ -810,13 +828,14 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Etwas ist schiefgelaufen. Bitte versuche es später noch einmal. Sollte der Fehler weiter bestehen, kontaktiere unser Supportteam."), "Etwas ist schiefgelaufen. Bitte versuche es später noch einmal. Sollte der Fehler weiter bestehen, kontaktiere unser Supportteam."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Elemente zeigen die Anzahl der Tage bis zum dauerhaften Löschen an"), "Elemente zeigen die Anzahl der Tage bis zum dauerhaften Löschen an"),
"itemsWillBeRemovedFromAlbum": MessageLookupByLibrary.simpleMessage( "itemsWillBeRemovedFromAlbum": MessageLookupByLibrary.simpleMessage(
"Ausgewählte Elemente werden aus diesem Album entfernt"), "Ausgewählte Elemente werden aus diesem Album entfernt"),
"joinDiscord": MessageLookupByLibrary.simpleMessage("Join Discord"), "joinDiscord":
MessageLookupByLibrary.simpleMessage("Discord beitreten"),
"keepPhotos": MessageLookupByLibrary.simpleMessage("Fotos behalten"), "keepPhotos": MessageLookupByLibrary.simpleMessage("Fotos behalten"),
"kiloMeterUnit": MessageLookupByLibrary.simpleMessage("km"), "kiloMeterUnit": MessageLookupByLibrary.simpleMessage("km"),
"kindlyHelpUsWithThisInformation": "kindlyHelpUsWithThisInformation":
@ -837,7 +856,7 @@ class MessageLookup extends MessageLookupByLibrary {
"linkDeviceLimit": MessageLookupByLibrary.simpleMessage("Geräte Limit"), "linkDeviceLimit": MessageLookupByLibrary.simpleMessage("Geräte Limit"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Aktiviert"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Aktiviert"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Abgelaufen"), "linkExpired": MessageLookupByLibrary.simpleMessage("Abgelaufen"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": "linkExpiry":
MessageLookupByLibrary.simpleMessage("Ablaufdatum des Links"), MessageLookupByLibrary.simpleMessage("Ablaufdatum des Links"),
"linkHasExpired": "linkHasExpired":
@ -868,12 +887,14 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Lade Galerie …"), MessageLookupByLibrary.simpleMessage("Lade Galerie …"),
"loadingMessage": "loadingMessage":
MessageLookupByLibrary.simpleMessage("Fotos werden geladen..."), MessageLookupByLibrary.simpleMessage("Fotos werden geladen..."),
"loadingModel":
MessageLookupByLibrary.simpleMessage("Lade Modelle herunter..."),
"localGallery": MessageLookupByLibrary.simpleMessage("Lokale Galerie"), "localGallery": MessageLookupByLibrary.simpleMessage("Lokale Galerie"),
"location": MessageLookupByLibrary.simpleMessage("Standort"), "location": MessageLookupByLibrary.simpleMessage("Standort"),
"locationName": MessageLookupByLibrary.simpleMessage("Standortname"), "locationName": MessageLookupByLibrary.simpleMessage("Standortname"),
"locationTagFeatureDescription": MessageLookupByLibrary.simpleMessage( "locationTagFeatureDescription": MessageLookupByLibrary.simpleMessage(
"Ein Standort-Tag gruppiert alle Fotos, die in einem Radius eines Fotos aufgenommen wurden"), "Ein Standort-Tag gruppiert alle Fotos, die in einem Radius eines Fotos aufgenommen wurden"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Orte"),
"lockButtonLabel": MessageLookupByLibrary.simpleMessage("Sperren"), "lockButtonLabel": MessageLookupByLibrary.simpleMessage("Sperren"),
"lockScreenEnablePreSteps": MessageLookupByLibrary.simpleMessage( "lockScreenEnablePreSteps": MessageLookupByLibrary.simpleMessage(
"Um den Sperrbildschirm zu aktivieren, legen Sie bitte den Geräte-Passcode oder die Bildschirmsperre in den Systemeinstellungen fest."), "Um den Sperrbildschirm zu aktivieren, legen Sie bitte den Geräte-Passcode oder die Bildschirmsperre in den Systemeinstellungen fest."),
@ -885,9 +906,17 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Ausloggen"), "logout": MessageLookupByLibrary.simpleMessage("Ausloggen"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Dies wird über Logs gesendet, um uns zu helfen, Ihr Problem zu beheben. Bitte beachten Sie, dass Dateinamen aufgenommen werden, um Probleme mit bestimmten Dateien zu beheben."), "Dies wird über Logs gesendet, um uns zu helfen, Ihr Problem zu beheben. Bitte beachten Sie, dass Dateinamen aufgenommen werden, um Probleme mit bestimmten Dateien zu beheben."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage( "longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage(
"Drücken Sie lange auf ein Element, um es im Vollbildmodus anzuzeigen"), "Drücken Sie lange auf ein Element, um es im Vollbildmodus anzuzeigen"),
"lostDevice": MessageLookupByLibrary.simpleMessage("Gerät verloren?"), "lostDevice": MessageLookupByLibrary.simpleMessage("Gerät verloren?"),
"machineLearning":
MessageLookupByLibrary.simpleMessage("Maschinelles Lernen"),
"magicSearch": MessageLookupByLibrary.simpleMessage("Magische Suche"),
"magicSearchDescription": MessageLookupByLibrary.simpleMessage(
"Bitte beachten Sie, dass dies mehr Bandbreite nutzt und zu einem höheren Akkuverbrauch führt, bis alle Elemente indiziert sind."),
"manage": MessageLookupByLibrary.simpleMessage("Verwalten"), "manage": MessageLookupByLibrary.simpleMessage("Verwalten"),
"manageDeviceStorage": "manageDeviceStorage":
MessageLookupByLibrary.simpleMessage("Gerätespeicher verwalten"), MessageLookupByLibrary.simpleMessage("Gerätespeicher verwalten"),
@ -901,7 +930,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Karten"), "maps": MessageLookupByLibrary.simpleMessage("Karten"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"), "merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobil, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Mobil, Web, Desktop"),
@ -911,12 +940,12 @@ class MessageLookup extends MessageLookupByLibrary {
"Ändere deine Suchanfrage oder suche nach"), "Ändere deine Suchanfrage oder suche nach"),
"moments": MessageLookupByLibrary.simpleMessage("Momente"), "moments": MessageLookupByLibrary.simpleMessage("Momente"),
"monthly": MessageLookupByLibrary.simpleMessage("Monatlich"), "monthly": MessageLookupByLibrary.simpleMessage("Monatlich"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": "moveToAlbum":
MessageLookupByLibrary.simpleMessage("Zum Album verschieben"), MessageLookupByLibrary.simpleMessage("Zum Album verschieben"),
"moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage( "moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage(
"Zu verstecktem Album verschieben"), "Zu verstecktem Album verschieben"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": MessageLookupByLibrary.simpleMessage( "movedToTrash": MessageLookupByLibrary.simpleMessage(
"In den Papierkorb verschoben"), "In den Papierkorb verschoben"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -981,19 +1010,25 @@ class MessageLookup extends MessageLookupByLibrary {
"Bei Bedarf auch so kurz wie Sie wollen..."), "Bei Bedarf auch so kurz wie Sie wollen..."),
"orPickAnExistingOne": MessageLookupByLibrary.simpleMessage( "orPickAnExistingOne": MessageLookupByLibrary.simpleMessage(
"Oder eine Vorherige auswählen"), "Oder eine Vorherige auswählen"),
"pair": MessageLookupByLibrary.simpleMessage("Koppeln"),
"passkey": MessageLookupByLibrary.simpleMessage("Passkey"),
"passkeyAuthTitle":
MessageLookupByLibrary.simpleMessage("Passkey-Verifizierung"),
"password": MessageLookupByLibrary.simpleMessage("Passwort"), "password": MessageLookupByLibrary.simpleMessage("Passwort"),
"passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage( "passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage(
"Passwort erfolgreich geändert"), "Passwort erfolgreich geändert"),
"passwordLock": MessageLookupByLibrary.simpleMessage("Passwort Sperre"), "passwordLock": MessageLookupByLibrary.simpleMessage("Passwort Sperre"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Wir speichern dieses Passwort nicht. Wenn du es vergisst, <underline>können wir deine Daten nicht entschlüsseln</underline>"), "Wir speichern dieses Passwort nicht. Wenn du es vergisst, <underline>können wir deine Daten nicht entschlüsseln</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Zahlungsdetails"), MessageLookupByLibrary.simpleMessage("Zahlungsdetails"),
"paymentFailed": "paymentFailed":
MessageLookupByLibrary.simpleMessage("Zahlung fehlgeschlagen"), MessageLookupByLibrary.simpleMessage("Zahlung fehlgeschlagen"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingItems":
MessageLookupByLibrary.simpleMessage("Ausstehende Elemente"),
"pendingSync": "pendingSync":
MessageLookupByLibrary.simpleMessage("Synchronisation anstehend"), MessageLookupByLibrary.simpleMessage("Synchronisation anstehend"),
"peopleUsingYourCode": MessageLookupByLibrary.simpleMessage( "peopleUsingYourCode": MessageLookupByLibrary.simpleMessage(
@ -1016,7 +1051,9 @@ class MessageLookup extends MessageLookupByLibrary {
"pickCenterPoint": "pickCenterPoint":
MessageLookupByLibrary.simpleMessage("Mittelpunkt auswählen"), MessageLookupByLibrary.simpleMessage("Mittelpunkt auswählen"),
"pinAlbum": MessageLookupByLibrary.simpleMessage("Album anheften"), "pinAlbum": MessageLookupByLibrary.simpleMessage("Album anheften"),
"playStoreFreeTrialValidTill": m37, "playOnTv": MessageLookupByLibrary.simpleMessage(
"Album auf dem Fernseher wiedergeben"),
"playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("PlayStore Abo"), MessageLookupByLibrary.simpleMessage("PlayStore Abo"),
"pleaseCheckYourInternetConnectionAndTryAgain": "pleaseCheckYourInternetConnectionAndTryAgain":
@ -1028,12 +1065,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Bitte wenden Sie sich an den Support, falls das Problem weiterhin besteht"), "Bitte wenden Sie sich an den Support, falls das Problem weiterhin besteht"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage( "pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage(
"Bitte erteile die nötigen Berechtigungen"), "Bitte erteile die nötigen Berechtigungen"),
"pleaseLoginAgain": "pleaseLoginAgain":
MessageLookupByLibrary.simpleMessage("Bitte logge dich erneut ein"), MessageLookupByLibrary.simpleMessage("Bitte logge dich erneut ein"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": "pleaseTryAgain":
MessageLookupByLibrary.simpleMessage("Bitte versuche es erneut"), MessageLookupByLibrary.simpleMessage("Bitte versuche es erneut"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -1069,7 +1106,7 @@ class MessageLookup extends MessageLookupByLibrary {
"raiseTicket": MessageLookupByLibrary.simpleMessage("Ticket erstellen"), "raiseTicket": MessageLookupByLibrary.simpleMessage("Ticket erstellen"),
"rateTheApp": MessageLookupByLibrary.simpleMessage("App bewerten"), "rateTheApp": MessageLookupByLibrary.simpleMessage("App bewerten"),
"rateUs": MessageLookupByLibrary.simpleMessage("Bewerte uns"), "rateUs": MessageLookupByLibrary.simpleMessage("Bewerte uns"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Wiederherstellen"), "recover": MessageLookupByLibrary.simpleMessage("Wiederherstellen"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Konto wiederherstellen"), MessageLookupByLibrary.simpleMessage("Konto wiederherstellen"),
@ -1102,7 +1139,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Gib diesen Code an deine Freunde"), "1. Gib diesen Code an deine Freunde"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Sie schließen ein bezahltes Abo ab"), "2. Sie schließen ein bezahltes Abo ab"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Weiterempfehlungen"), "referrals": MessageLookupByLibrary.simpleMessage("Weiterempfehlungen"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Einlösungen sind derzeit pausiert"), "Einlösungen sind derzeit pausiert"),
@ -1128,7 +1165,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Link entfernen"), "removeLink": MessageLookupByLibrary.simpleMessage("Link entfernen"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Teilnehmer entfernen"), MessageLookupByLibrary.simpleMessage("Teilnehmer entfernen"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Öffentlichen Link entfernen"), MessageLookupByLibrary.simpleMessage("Öffentlichen Link entfernen"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1142,7 +1179,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameFile": MessageLookupByLibrary.simpleMessage("Datei umbenennen"), "renameFile": MessageLookupByLibrary.simpleMessage("Datei umbenennen"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Abonnement erneuern"), MessageLookupByLibrary.simpleMessage("Abonnement erneuern"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Fehler melden"), "reportABug": MessageLookupByLibrary.simpleMessage("Fehler melden"),
"reportBug": MessageLookupByLibrary.simpleMessage("Fehler melden"), "reportBug": MessageLookupByLibrary.simpleMessage("Fehler melden"),
"resendEmail": "resendEmail":
@ -1205,7 +1242,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Gruppiere Fotos, die innerhalb des Radius eines bestimmten Fotos aufgenommen wurden"), "Gruppiere Fotos, die innerhalb des Radius eines bestimmten Fotos aufgenommen wurden"),
"searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage(
"Laden Sie Personen ein, damit Sie geteilte Fotos hier einsehen können"), "Laden Sie Personen ein, damit Sie geteilte Fotos hier einsehen können"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("Sicherheit"), "security": MessageLookupByLibrary.simpleMessage("Sicherheit"),
"selectALocation": "selectALocation":
MessageLookupByLibrary.simpleMessage("Standort auswählen"), MessageLookupByLibrary.simpleMessage("Standort auswählen"),
@ -1232,8 +1269,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Ausgewählte Elemente werden aus allen Alben gelöscht und in den Papierkorb verschoben."), "Ausgewählte Elemente werden aus allen Alben gelöscht und in den Papierkorb verschoben."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Absenden"), "send": MessageLookupByLibrary.simpleMessage("Absenden"),
"sendEmail": MessageLookupByLibrary.simpleMessage("E-Mail senden"), "sendEmail": MessageLookupByLibrary.simpleMessage("E-Mail senden"),
"sendInvite": MessageLookupByLibrary.simpleMessage("Einladung senden"), "sendInvite": MessageLookupByLibrary.simpleMessage("Einladung senden"),
@ -1256,16 +1293,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Teile jetzt ein Album"), MessageLookupByLibrary.simpleMessage("Teile jetzt ein Album"),
"shareLink": MessageLookupByLibrary.simpleMessage("Link teilen"), "shareLink": MessageLookupByLibrary.simpleMessage("Link teilen"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Teile mit ausgewählten Personen"), "Teile mit ausgewählten Personen"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Lade ente herunter, damit wir einfach Fotos und Videos in höchster Qualität teilen können\n\nhttps://ente.io"), "Lade ente herunter, damit wir einfach Fotos und Videos in höchster Qualität teilen können\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Mit Nicht-Ente-Benutzern teilen"), "Mit Nicht-Ente-Benutzern teilen"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": "shareYourFirstAlbum":
MessageLookupByLibrary.simpleMessage("Teile dein erstes Album"), MessageLookupByLibrary.simpleMessage("Teile dein erstes Album"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1276,7 +1313,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Neue geteilte Fotos"), MessageLookupByLibrary.simpleMessage("Neue geteilte Fotos"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Erhalte Benachrichtigungen, wenn jemand ein Foto zu einem gemeinsam genutzten Album hinzufügt, dem du angehörst"), "Erhalte Benachrichtigungen, wenn jemand ein Foto zu einem gemeinsam genutzten Album hinzufügt, dem du angehörst"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": MessageLookupByLibrary.simpleMessage("Mit mir geteilt"), "sharedWithMe": MessageLookupByLibrary.simpleMessage("Mit mir geteilt"),
"sharedWithYou": "sharedWithYou":
MessageLookupByLibrary.simpleMessage("Mit dir geteilt"), MessageLookupByLibrary.simpleMessage("Mit dir geteilt"),
@ -1291,11 +1328,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Andere Geräte abmelden"), MessageLookupByLibrary.simpleMessage("Andere Geräte abmelden"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"Ich stimme den <u-terms>Nutzungsbedingungen</u-terms> und der <u-policy>Datenschutzerklärung</u-policy> zu"), "Ich stimme den <u-terms>Nutzungsbedingungen</u-terms> und der <u-policy>Datenschutzerklärung</u-policy> zu"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Es wird aus allen Alben gelöscht."), "Es wird aus allen Alben gelöscht."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Überspringen"), "skip": MessageLookupByLibrary.simpleMessage("Überspringen"),
"social": MessageLookupByLibrary.simpleMessage("Social Media"), "social": MessageLookupByLibrary.simpleMessage("Social Media"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1333,16 +1370,17 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("✨ Abgeschlossen"), MessageLookupByLibrary.simpleMessage("✨ Abgeschlossen"),
"startBackup": "startBackup":
MessageLookupByLibrary.simpleMessage("Sicherung starten"), MessageLookupByLibrary.simpleMessage("Sicherung starten"),
"status": MessageLookupByLibrary.simpleMessage("Status"),
"storage": MessageLookupByLibrary.simpleMessage("Speicherplatz"), "storage": MessageLookupByLibrary.simpleMessage("Speicherplatz"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familie"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familie"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Sie"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Sie"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": MessageLookupByLibrary.simpleMessage( "storageLimitExceeded": MessageLookupByLibrary.simpleMessage(
"Speichergrenze überschritten"), "Speichergrenze überschritten"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Stark"), "strongStrength": MessageLookupByLibrary.simpleMessage("Stark"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Abonnieren"), "subscribe": MessageLookupByLibrary.simpleMessage("Abonnieren"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Sieht aus, als sei dein Abonnement abgelaufen. Bitte abonniere, um das Teilen zu aktivieren."), "Sieht aus, als sei dein Abonnement abgelaufen. Bitte abonniere, um das Teilen zu aktivieren."),
@ -1359,7 +1397,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Verbesserung vorschlagen"), MessageLookupByLibrary.simpleMessage("Verbesserung vorschlagen"),
"support": MessageLookupByLibrary.simpleMessage("Support"), "support": MessageLookupByLibrary.simpleMessage("Support"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Synchronisierung angehalten"), MessageLookupByLibrary.simpleMessage("Synchronisierung angehalten"),
"syncing": MessageLookupByLibrary.simpleMessage("Synchronisiere …"), "syncing": MessageLookupByLibrary.simpleMessage("Synchronisiere …"),
@ -1388,7 +1426,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Diese Elemente werden von deinem Gerät gelöscht."), "Diese Elemente werden von deinem Gerät gelöscht."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Sie werden aus allen Alben gelöscht."), "Sie werden aus allen Alben gelöscht."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1404,7 +1442,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Diese E-Mail-Adresse wird bereits verwendet"), "Diese E-Mail-Adresse wird bereits verwendet"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Dieses Bild hat keine Exif-Daten"), "Dieses Bild hat keine Exif-Daten"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"Dies ist deine Verifizierungs-ID"), "Dies ist deine Verifizierungs-ID"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1421,7 +1459,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("Gesamt"), "total": MessageLookupByLibrary.simpleMessage("Gesamt"),
"totalSize": MessageLookupByLibrary.simpleMessage("Gesamtgröße"), "totalSize": MessageLookupByLibrary.simpleMessage("Gesamtgröße"),
"trash": MessageLookupByLibrary.simpleMessage("Papierkorb"), "trash": MessageLookupByLibrary.simpleMessage("Papierkorb"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Erneut versuchen"), "tryAgain": MessageLookupByLibrary.simpleMessage("Erneut versuchen"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Aktiviere die Sicherung, um automatisch neu hinzugefügte Dateien dieses Ordners auf ente hochzuladen."), "Aktiviere die Sicherung, um automatisch neu hinzugefügte Dateien dieses Ordners auf ente hochzuladen."),
@ -1476,7 +1514,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Ausgewähltes Foto verwenden"), MessageLookupByLibrary.simpleMessage("Ausgewähltes Foto verwenden"),
"usedSpace": "usedSpace":
MessageLookupByLibrary.simpleMessage("Belegter Speicherplatz"), MessageLookupByLibrary.simpleMessage("Belegter Speicherplatz"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Verifizierung fehlgeschlagen, bitte versuchen Sie es erneut"), "Verifizierung fehlgeschlagen, bitte versuchen Sie es erneut"),
@ -1485,8 +1523,10 @@ class MessageLookup extends MessageLookupByLibrary {
"verify": MessageLookupByLibrary.simpleMessage("Überprüfen"), "verify": MessageLookupByLibrary.simpleMessage("Überprüfen"),
"verifyEmail": "verifyEmail":
MessageLookupByLibrary.simpleMessage("E-Mail-Adresse verifizieren"), MessageLookupByLibrary.simpleMessage("E-Mail-Adresse verifizieren"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Überprüfen"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Überprüfen"),
"verifyPasskey":
MessageLookupByLibrary.simpleMessage("Passkey verifizieren"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Passwort überprüfen"), MessageLookupByLibrary.simpleMessage("Passwort überprüfen"),
"verifying": MessageLookupByLibrary.simpleMessage("Verifiziere …"), "verifying": MessageLookupByLibrary.simpleMessage("Verifiziere …"),
@ -1507,17 +1547,21 @@ class MessageLookup extends MessageLookupByLibrary {
"viewer": MessageLookupByLibrary.simpleMessage("Zuschauer"), "viewer": MessageLookupByLibrary.simpleMessage("Zuschauer"),
"visitWebToManage": MessageLookupByLibrary.simpleMessage( "visitWebToManage": MessageLookupByLibrary.simpleMessage(
"Bitte rufen Sie \"web.ente.io\" auf um ihr Abo zu verwalten"), "Bitte rufen Sie \"web.ente.io\" auf um ihr Abo zu verwalten"),
"waitingForVerification":
MessageLookupByLibrary.simpleMessage("Warte auf Bestätigung..."),
"waitingForWifi":
MessageLookupByLibrary.simpleMessage("Warte auf WLAN..."),
"weAreOpenSource": MessageLookupByLibrary.simpleMessage( "weAreOpenSource": MessageLookupByLibrary.simpleMessage(
"Unser Quellcode ist offen einsehbar!"), "Unser Quellcode ist offen einsehbar!"),
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Wir unterstützen keine Bearbeitung von Fotos und Alben, die du noch nicht besitzt"), "Wir unterstützen keine Bearbeitung von Fotos und Alben, die du noch nicht besitzt"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Schwach"), "weakStrength": MessageLookupByLibrary.simpleMessage("Schwach"),
"welcomeBack": "welcomeBack":
MessageLookupByLibrary.simpleMessage("Willkommen zurück!"), MessageLookupByLibrary.simpleMessage("Willkommen zurück!"),
"yearly": MessageLookupByLibrary.simpleMessage("Jährlich"), "yearly": MessageLookupByLibrary.simpleMessage("Jährlich"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Ja"), "yes": MessageLookupByLibrary.simpleMessage("Ja"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Ja, kündigen"), "yesCancel": MessageLookupByLibrary.simpleMessage("Ja, kündigen"),
"yesConvertToViewer": MessageLookupByLibrary.simpleMessage( "yesConvertToViewer": MessageLookupByLibrary.simpleMessage(
@ -1547,7 +1591,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Du kannst nicht mit dir selbst teilen"), "Du kannst nicht mit dir selbst teilen"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"Du hast keine archivierten Elemente."), "Du hast keine archivierten Elemente."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage( "yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage(
"Dein Benutzerkonto wurde gelöscht"), "Dein Benutzerkonto wurde gelöscht"),
"yourMap": MessageLookupByLibrary.simpleMessage("Deine Karte"), "yourMap": MessageLookupByLibrary.simpleMessage("Deine Karte"),

View file

@ -21,191 +21,197 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'en'; String get localeName => 'en';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Add item', other: 'Add items')}"; "${Intl.plural(count, one: 'Add item', other: 'Add items')}";
static String m1(storageAmount, endDate) => static String m3(storageAmount, endDate) =>
"Your ${storageAmount} add-on is valid till ${endDate}"; "Your ${storageAmount} add-on is valid till ${endDate}";
static String m2(emailOrName) => "Added by ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Added successfully to ${albumName}"; static String m4(emailOrName) => "Added by ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Added successfully to ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'No Participants', one: '1 Participant', other: '${count} Participants')}"; "${Intl.plural(count, zero: 'No Participants', one: '1 Participant', other: '${count} Participants')}";
static String m5(versionValue) => "Version: ${versionValue}"; static String m7(versionValue) => "Version: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Please cancel your existing subscription from ${paymentProvider} first"; "Please cancel your existing subscription from ${paymentProvider} first";
static String m7(user) => static String m9(user) =>
"${user} will not be able to add more photos to this album\n\nThey will still be able to remove existing photos added by them"; "${user} will not be able to add more photos to this album\n\nThey will still be able to remove existing photos added by them";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'Your family has claimed ${storageAmountInGb} GB so far', 'true': 'Your family has claimed ${storageAmountInGb} GB so far',
'false': 'You have claimed ${storageAmountInGb} GB so far', 'false': 'You have claimed ${storageAmountInGb} GB so far',
'other': 'You have claimed ${storageAmountInGb} GB so far!', 'other': 'You have claimed ${storageAmountInGb} GB so far!',
})}"; })}";
static String m9(albumName) => "Collaborative link created for ${albumName}"; static String m11(albumName) => "Collaborative link created for ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Please contact <green>${familyAdminEmail}</green> to manage your subscription"; "Please contact <green>${familyAdminEmail}</green> to manage your subscription";
static String m11(provider) => static String m13(provider) =>
"Please contact us at support@ente.io to manage your ${provider} subscription."; "Please contact us at support@ente.io to manage your ${provider} subscription.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Delete ${count} item', other: 'Delete ${count} items')}"; "${Intl.plural(count, one: 'Delete ${count} item', other: 'Delete ${count} items')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Deleting ${currentlyDeleting} / ${totalCount}"; "Deleting ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"This will remove the public link for accessing \"${albumName}\"."; "This will remove the public link for accessing \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Please drop an email to ${supportEmail} from your registered email address"; "Please drop an email to ${supportEmail} from your registered email address";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"You have cleaned up ${Intl.plural(count, one: '${count} duplicate file', other: '${count} duplicate files')}, saving (${storageSaved}!)"; "You have cleaned up ${Intl.plural(count, one: '${count} duplicate file', other: '${count} duplicate files')}, saving (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} files, ${formattedSize} each"; "${count} files, ${formattedSize} each";
static String m18(newEmail) => "Email changed to ${newEmail}"; static String m20(newEmail) => "Email changed to ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} does not have an ente account.\n\nSend them an invite to share photos."; "${email} does not have an ente account.\n\nSend them an invite to share photos.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 file', other: '${formattedNumber} files')} on this device have been backed up safely"; "${Intl.plural(count, one: '1 file', other: '${formattedNumber} files')} on this device have been backed up safely";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 file', other: '${formattedNumber} files')} in this album has been backed up safely"; "${Intl.plural(count, one: '1 file', other: '${formattedNumber} files')} in this album has been backed up safely";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB each time someone signs up for a paid plan and applies your code"; "${storageAmountInGB} GB each time someone signs up for a paid plan and applies your code";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} free"; "${freeAmount} ${storageUnit} free";
static String m24(endDate) => "Free trial valid till ${endDate}"; static String m26(endDate) => "Free trial valid till ${endDate}";
static String m25(count) => static String m27(count) =>
"You can still access ${Intl.plural(count, one: 'it', other: 'them')} on ente as long as you have an active subscription"; "You can still access ${Intl.plural(count, one: 'it', other: 'them')} on ente as long as you have an active subscription";
static String m26(sizeInMBorGB) => "Free up ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "Free up ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'It can be deleted from the device to free up ${formattedSize}', other: 'They can be deleted from the device to free up ${formattedSize}')}"; "${Intl.plural(count, one: 'It can be deleted from the device to free up ${formattedSize}', other: 'They can be deleted from the device to free up ${formattedSize}')}";
static String m28(currentlyProcessing, totalCount) => static String m30(currentlyProcessing, totalCount) =>
"Processing ${currentlyProcessing} / ${totalCount}"; "Processing ${currentlyProcessing} / ${totalCount}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} item', other: '${count} items')}"; "${Intl.plural(count, one: '${count} item', other: '${count} items')}";
static String m30(expiryTime) => "Link will expire on ${expiryTime}"; static String m32(expiryTime) => "Link will expire on ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: 'no memories', one: '${formattedCount} memory', other: '${formattedCount} memories')}"; "${Intl.plural(count, zero: 'no memories', one: '${formattedCount} memory', other: '${formattedCount} memories')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Move item', other: 'Move items')}"; "${Intl.plural(count, one: 'Move item', other: 'Move items')}";
static String m33(albumName) => "Moved successfully to ${albumName}"; static String m35(albumName) => "Moved successfully to ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Password strength: ${passwordStrengthValue}"; "Password strength: ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Please talk to ${providerName} support if you were charged"; "Please talk to ${providerName} support if you were charged";
static String m36(reason) => static String m38(reason) =>
"Unfortunately your payment failed due to ${reason}"; "Unfortunately your payment failed due to ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Free trial valid till ${endDate}.\nYou can choose a paid plan afterwards."; "Free trial valid till ${endDate}.\nYou can choose a paid plan afterwards.";
static String m38(toEmail) => "Please email us at ${toEmail}"; static String m40(toEmail) => "Please email us at ${toEmail}";
static String m39(toEmail) => "Please send the logs to \n${toEmail}"; static String m41(toEmail) => "Please send the logs to \n${toEmail}";
static String m40(storeName) => "Rate us on ${storeName}"; static String m42(storeName) => "Rate us on ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"3. Both of you get ${storageInGB} GB* free"; "3. Both of you get ${storageInGB} GB* free";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} will be removed from this shared album\n\nAny photos added by them will also be removed from the album"; "${userEmail} will be removed from this shared album\n\nAny photos added by them will also be removed from the album";
static String m43(endDate) => "Subscription renews on ${endDate}"; static String m45(endDate) => "Subscription renews on ${endDate}";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, one: '${count} result found', other: '${count} results found')}"; "${Intl.plural(count, one: '${count} result found', other: '${count} results found')}";
static String m45(count) => "${count} selected"; static String m47(count) => "${count} selected";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} selected (${yourCount} yours)"; "${count} selected (${yourCount} yours)";
static String m47(verificationID) => static String m49(verificationID) =>
"Here\'s my verification ID: ${verificationID} for ente.io."; "Here\'s my verification ID: ${verificationID} for ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hey, can you confirm that this is your ente.io verification ID: ${verificationID}"; "Hey, can you confirm that this is your ente.io verification ID: ${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente referral code: ${referralCode} \n\nApply it in Settings → General → Referrals to get ${referralStorageInGB} GB free after you signup for a paid plan\n\nhttps://ente.io"; "ente referral code: ${referralCode} \n\nApply it in Settings → General → Referrals to get ${referralStorageInGB} GB free after you signup for a paid plan\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Share with specific people', one: 'Shared with 1 person', other: 'Shared with ${numberOfPeople} people')}"; "${Intl.plural(numberOfPeople, zero: 'Share with specific people', one: 'Shared with 1 person', other: 'Shared with ${numberOfPeople} people')}";
static String m51(emailIDs) => "Shared with ${emailIDs}"; static String m53(emailIDs) => "Shared with ${emailIDs}";
static String m52(fileType) => static String m54(fileType) =>
"This ${fileType} will be deleted from your device."; "This ${fileType} will be deleted from your device.";
static String m53(fileType) => static String m55(fileType) =>
"This ${fileType} is in both ente and your device."; "This ${fileType} is in both ente and your device.";
static String m54(fileType) => "This ${fileType} will be deleted from ente."; static String m56(fileType) => "This ${fileType} will be deleted from ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} of ${totalAmount} ${totalStorageUnit} used"; "${usedAmount} ${usedStorageUnit} of ${totalAmount} ${totalStorageUnit} used";
static String m57(id) => static String m59(id) =>
"Your ${id} is already linked to another ente account.\nIf you would like to use your ${id} with this account, please contact our support\'\'"; "Your ${id} is already linked to another ente account.\nIf you would like to use your ${id} with this account, please contact our support\'\'";
static String m58(endDate) => static String m60(endDate) =>
"Your subscription will be cancelled on ${endDate}"; "Your subscription will be cancelled on ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} memories preserved"; "${completed}/${total} memories preserved";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"They also get ${storageAmountInGB} GB"; "They also get ${storageAmountInGB} GB";
static String m61(email) => "This is ${email}\'s Verification ID"; static String m63(email) => "This is ${email}\'s Verification ID";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1 day', other: '${count} days')}"; "${Intl.plural(count, zero: '', one: '1 day', other: '${count} days')}";
static String m63(endDate) => "Valid till ${endDate}"; static String m65(endDate) => "Valid till ${endDate}";
static String m64(email) => "Verify ${email}"; static String m66(email) => "Verify ${email}";
static String m65(email) => "We have sent a mail to <green>${email}</green>"; static String m67(email) => "We have sent a mail to <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} year ago', other: '${count} years ago')}"; "${Intl.plural(count, one: '${count} year ago', other: '${count} years ago')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"You have successfully freed up ${storageSaved}!"; "You have successfully freed up ${storageSaved}!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -223,16 +229,17 @@ class MessageLookup extends MessageLookupByLibrary {
"addANewEmail": MessageLookupByLibrary.simpleMessage("Add a new email"), "addANewEmail": MessageLookupByLibrary.simpleMessage("Add a new email"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Add collaborator"), MessageLookupByLibrary.simpleMessage("Add collaborator"),
"addCollaborators": m0,
"addFromDevice": "addFromDevice":
MessageLookupByLibrary.simpleMessage("Add from device"), MessageLookupByLibrary.simpleMessage("Add from device"),
"addItem": m0, "addItem": m2,
"addLocation": MessageLookupByLibrary.simpleMessage("Add location"), "addLocation": MessageLookupByLibrary.simpleMessage("Add location"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Add"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Add"),
"addMore": MessageLookupByLibrary.simpleMessage("Add more"), "addMore": MessageLookupByLibrary.simpleMessage("Add more"),
"addNew": MessageLookupByLibrary.simpleMessage("Add new"), "addNew": MessageLookupByLibrary.simpleMessage("Add new"),
"addOnPageSubtitle": "addOnPageSubtitle":
MessageLookupByLibrary.simpleMessage("Details of add-ons"), MessageLookupByLibrary.simpleMessage("Details of add-ons"),
"addOnValidTill": m1, "addOnValidTill": m3,
"addOns": MessageLookupByLibrary.simpleMessage("Add-ons"), "addOns": MessageLookupByLibrary.simpleMessage("Add-ons"),
"addPhotos": MessageLookupByLibrary.simpleMessage("Add photos"), "addPhotos": MessageLookupByLibrary.simpleMessage("Add photos"),
"addSelected": MessageLookupByLibrary.simpleMessage("Add selected"), "addSelected": MessageLookupByLibrary.simpleMessage("Add selected"),
@ -241,11 +248,12 @@ class MessageLookup extends MessageLookupByLibrary {
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewer": MessageLookupByLibrary.simpleMessage("Add viewer"), "addViewer": MessageLookupByLibrary.simpleMessage("Add viewer"),
"addViewers": m1,
"addYourPhotosNow": "addYourPhotosNow":
MessageLookupByLibrary.simpleMessage("Add your photos now"), MessageLookupByLibrary.simpleMessage("Add your photos now"),
"addedAs": MessageLookupByLibrary.simpleMessage("Added as"), "addedAs": MessageLookupByLibrary.simpleMessage("Added as"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": "addingToFavorites":
MessageLookupByLibrary.simpleMessage("Adding to favorites..."), MessageLookupByLibrary.simpleMessage("Adding to favorites..."),
"advanced": MessageLookupByLibrary.simpleMessage("Advanced"), "advanced": MessageLookupByLibrary.simpleMessage("Advanced"),
@ -256,7 +264,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("After 1 week"), "after1Week": MessageLookupByLibrary.simpleMessage("After 1 week"),
"after1Year": MessageLookupByLibrary.simpleMessage("After 1 year"), "after1Year": MessageLookupByLibrary.simpleMessage("After 1 year"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Owner"), "albumOwner": MessageLookupByLibrary.simpleMessage("Owner"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Album title"), "albumTitle": MessageLookupByLibrary.simpleMessage("Album title"),
"albumUpdated": MessageLookupByLibrary.simpleMessage("Album updated"), "albumUpdated": MessageLookupByLibrary.simpleMessage("Album updated"),
"albums": MessageLookupByLibrary.simpleMessage("Albums"), "albums": MessageLookupByLibrary.simpleMessage("Albums"),
@ -290,7 +298,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"),
"androidSignInTitle": "androidSignInTitle":
MessageLookupByLibrary.simpleMessage("Authentication required"), MessageLookupByLibrary.simpleMessage("Authentication required"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("Apply"), "apply": MessageLookupByLibrary.simpleMessage("Apply"),
"applyCodeTitle": MessageLookupByLibrary.simpleMessage("Apply code"), "applyCodeTitle": MessageLookupByLibrary.simpleMessage("Apply code"),
@ -374,10 +382,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Can only remove files owned by you"), "Can only remove files owned by you"),
"cancel": MessageLookupByLibrary.simpleMessage("Cancel"), "cancel": MessageLookupByLibrary.simpleMessage("Cancel"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Cancel subscription"), MessageLookupByLibrary.simpleMessage("Cancel subscription"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": "cannotDeleteSharedFiles":
MessageLookupByLibrary.simpleMessage("Cannot delete shared files"), MessageLookupByLibrary.simpleMessage("Cannot delete shared files"),
"castInstruction": MessageLookupByLibrary.simpleMessage( "castInstruction": MessageLookupByLibrary.simpleMessage(
@ -401,7 +409,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Claim free storage"), MessageLookupByLibrary.simpleMessage("Claim free storage"),
"claimMore": MessageLookupByLibrary.simpleMessage("Claim more!"), "claimMore": MessageLookupByLibrary.simpleMessage("Claim more!"),
"claimed": MessageLookupByLibrary.simpleMessage("Claimed"), "claimed": MessageLookupByLibrary.simpleMessage("Claimed"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"cleanUncategorized": "cleanUncategorized":
MessageLookupByLibrary.simpleMessage("Clean Uncategorized"), MessageLookupByLibrary.simpleMessage("Clean Uncategorized"),
"cleanUncategorizedDescription": MessageLookupByLibrary.simpleMessage( "cleanUncategorizedDescription": MessageLookupByLibrary.simpleMessage(
@ -426,7 +434,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Create a link to allow people to add and view photos in your shared album without needing an ente app or account. Great for collecting event photos."), "Create a link to allow people to add and view photos in your shared album without needing an ente app or account. Great for collecting event photos."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Collaborative link"), MessageLookupByLibrary.simpleMessage("Collaborative link"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Collaborator"), "collaborator": MessageLookupByLibrary.simpleMessage("Collaborator"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -453,10 +461,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Confirm recovery key"), MessageLookupByLibrary.simpleMessage("Confirm recovery key"),
"confirmYourRecoveryKey": "confirmYourRecoveryKey":
MessageLookupByLibrary.simpleMessage("Confirm your recovery key"), MessageLookupByLibrary.simpleMessage("Confirm your recovery key"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contact support"), MessageLookupByLibrary.simpleMessage("Contact support"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
"contents": MessageLookupByLibrary.simpleMessage("Contents"), "contents": MessageLookupByLibrary.simpleMessage("Contents"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Continue"), "continueLabel": MessageLookupByLibrary.simpleMessage("Continue"),
@ -531,11 +539,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Delete from device"), MessageLookupByLibrary.simpleMessage("Delete from device"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Delete from ente"), MessageLookupByLibrary.simpleMessage("Delete from ente"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": "deleteLocation":
MessageLookupByLibrary.simpleMessage("Delete location"), MessageLookupByLibrary.simpleMessage("Delete location"),
"deletePhotos": MessageLookupByLibrary.simpleMessage("Delete photos"), "deletePhotos": MessageLookupByLibrary.simpleMessage("Delete photos"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Its missing a key feature that I need"), "Its missing a key feature that I need"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -572,7 +580,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Viewers can still take screenshots or save a copy of your photos using external tools"), "Viewers can still take screenshots or save a copy of your photos using external tools"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Please note"), MessageLookupByLibrary.simpleMessage("Please note"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": "disableTwofactor":
MessageLookupByLibrary.simpleMessage("Disable two-factor"), MessageLookupByLibrary.simpleMessage("Disable two-factor"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -593,9 +601,9 @@ class MessageLookup extends MessageLookupByLibrary {
"downloadFailed": "downloadFailed":
MessageLookupByLibrary.simpleMessage("Download failed"), MessageLookupByLibrary.simpleMessage("Download failed"),
"downloading": MessageLookupByLibrary.simpleMessage("Downloading..."), "downloading": MessageLookupByLibrary.simpleMessage("Downloading..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Edit"), "edit": MessageLookupByLibrary.simpleMessage("Edit"),
"editLocation": MessageLookupByLibrary.simpleMessage("Edit location"), "editLocation": MessageLookupByLibrary.simpleMessage("Edit location"),
"editLocationTagTitle": "editLocationTagTitle":
@ -606,8 +614,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Edits to location will only be seen within Ente"), "Edits to location will only be seen within Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("eligible"), "eligible": MessageLookupByLibrary.simpleMessage("eligible"),
"email": MessageLookupByLibrary.simpleMessage("Email"), "email": MessageLookupByLibrary.simpleMessage("Email"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("Email verification"), MessageLookupByLibrary.simpleMessage("Email verification"),
"emailYourLogs": "emailYourLogs":
@ -702,8 +710,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("File types"), "fileTypes": MessageLookupByLibrary.simpleMessage("File types"),
"fileTypesAndNames": "fileTypesAndNames":
MessageLookupByLibrary.simpleMessage("File types and names"), MessageLookupByLibrary.simpleMessage("File types and names"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": MessageLookupByLibrary.simpleMessage("Files deleted"), "filesDeleted": MessageLookupByLibrary.simpleMessage("Files deleted"),
"flip": MessageLookupByLibrary.simpleMessage("Flip"), "flip": MessageLookupByLibrary.simpleMessage("Flip"),
"forYourMemories": "forYourMemories":
@ -712,24 +720,24 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Forgot password"), MessageLookupByLibrary.simpleMessage("Forgot password"),
"freeStorageClaimed": "freeStorageClaimed":
MessageLookupByLibrary.simpleMessage("Free storage claimed"), MessageLookupByLibrary.simpleMessage("Free storage claimed"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": "freeStorageUsable":
MessageLookupByLibrary.simpleMessage("Free storage usable"), MessageLookupByLibrary.simpleMessage("Free storage usable"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Free trial"), "freeTrial": MessageLookupByLibrary.simpleMessage("Free trial"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": "freeUpDeviceSpace":
MessageLookupByLibrary.simpleMessage("Free up device space"), MessageLookupByLibrary.simpleMessage("Free up device space"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("Free up space"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("Free up space"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Up to 1000 memories shown in gallery"), "Up to 1000 memories shown in gallery"),
"general": MessageLookupByLibrary.simpleMessage("General"), "general": MessageLookupByLibrary.simpleMessage("General"),
"generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage( "generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage(
"Generating encryption keys..."), "Generating encryption keys..."),
"genericProgress": m28, "genericProgress": m30,
"goToSettings": MessageLookupByLibrary.simpleMessage("Go to settings"), "goToSettings": MessageLookupByLibrary.simpleMessage("Go to settings"),
"googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"), "googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"),
"grantFullAccessPrompt": MessageLookupByLibrary.simpleMessage( "grantFullAccessPrompt": MessageLookupByLibrary.simpleMessage(
@ -787,7 +795,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"It looks like something went wrong. Please retry after some time. If the error persists, please contact our support team."), "It looks like something went wrong. Please retry after some time. If the error persists, please contact our support team."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Items show the number of days remaining before permanent deletion"), "Items show the number of days remaining before permanent deletion"),
@ -812,7 +820,7 @@ class MessageLookup extends MessageLookupByLibrary {
"linkDeviceLimit": MessageLookupByLibrary.simpleMessage("Device limit"), "linkDeviceLimit": MessageLookupByLibrary.simpleMessage("Device limit"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Enabled"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Enabled"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Expired"), "linkExpired": MessageLookupByLibrary.simpleMessage("Expired"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("Link expiry"), "linkExpiry": MessageLookupByLibrary.simpleMessage("Link expiry"),
"linkHasExpired": "linkHasExpired":
MessageLookupByLibrary.simpleMessage("Link has expired"), MessageLookupByLibrary.simpleMessage("Link has expired"),
@ -861,6 +869,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Logout"), "logout": MessageLookupByLibrary.simpleMessage("Logout"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"This will send across logs to help us debug your issue. Please note that file names will be included to help track issues with specific files."), "This will send across logs to help us debug your issue. Please note that file names will be included to help track issues with specific files."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": "longpressOnAnItemToViewInFullscreen":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Long-press on an item to view in full-screen"), "Long-press on an item to view in full-screen"),
@ -882,7 +893,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Maps"), "maps": MessageLookupByLibrary.simpleMessage("Maps"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"), "merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"),
@ -892,11 +903,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Modify your query, or try searching for"), "Modify your query, or try searching for"),
"moments": MessageLookupByLibrary.simpleMessage("Moments"), "moments": MessageLookupByLibrary.simpleMessage("Moments"),
"monthly": MessageLookupByLibrary.simpleMessage("Monthly"), "monthly": MessageLookupByLibrary.simpleMessage("Monthly"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": MessageLookupByLibrary.simpleMessage("Move to album"), "moveToAlbum": MessageLookupByLibrary.simpleMessage("Move to album"),
"moveToHiddenAlbum": "moveToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Move to hidden album"), MessageLookupByLibrary.simpleMessage("Move to hidden album"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": MessageLookupByLibrary.simpleMessage("Moved to trash"), "movedToTrash": MessageLookupByLibrary.simpleMessage("Moved to trash"),
"movingFilesToAlbum": "movingFilesToAlbum":
MessageLookupByLibrary.simpleMessage("Moving files to album..."), MessageLookupByLibrary.simpleMessage("Moving files to album..."),
@ -965,14 +976,14 @@ class MessageLookup extends MessageLookupByLibrary {
"passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage( "passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage(
"Password changed successfully"), "Password changed successfully"),
"passwordLock": MessageLookupByLibrary.simpleMessage("Password lock"), "passwordLock": MessageLookupByLibrary.simpleMessage("Password lock"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"We don\'t store this password, so if you forget, <underline>we cannot decrypt your data</underline>"), "We don\'t store this password, so if you forget, <underline>we cannot decrypt your data</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Payment details"), MessageLookupByLibrary.simpleMessage("Payment details"),
"paymentFailed": MessageLookupByLibrary.simpleMessage("Payment failed"), "paymentFailed": MessageLookupByLibrary.simpleMessage("Payment failed"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingItems": MessageLookupByLibrary.simpleMessage("Pending items"), "pendingItems": MessageLookupByLibrary.simpleMessage("Pending items"),
"pendingSync": MessageLookupByLibrary.simpleMessage("Pending sync"), "pendingSync": MessageLookupByLibrary.simpleMessage("Pending sync"),
"peopleUsingYourCode": "peopleUsingYourCode":
@ -996,7 +1007,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Pick center point"), MessageLookupByLibrary.simpleMessage("Pick center point"),
"pinAlbum": MessageLookupByLibrary.simpleMessage("Pin album"), "pinAlbum": MessageLookupByLibrary.simpleMessage("Pin album"),
"playOnTv": MessageLookupByLibrary.simpleMessage("Play album on TV"), "playOnTv": MessageLookupByLibrary.simpleMessage("Play album on TV"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("PlayStore subscription"), MessageLookupByLibrary.simpleMessage("PlayStore subscription"),
"pleaseCheckYourInternetConnectionAndTryAgain": "pleaseCheckYourInternetConnectionAndTryAgain":
@ -1008,12 +1019,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Please contact support if the problem persists"), "Please contact support if the problem persists"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": "pleaseGrantPermissions":
MessageLookupByLibrary.simpleMessage("Please grant permissions"), MessageLookupByLibrary.simpleMessage("Please grant permissions"),
"pleaseLoginAgain": "pleaseLoginAgain":
MessageLookupByLibrary.simpleMessage("Please login again"), MessageLookupByLibrary.simpleMessage("Please login again"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": "pleaseTryAgain":
MessageLookupByLibrary.simpleMessage("Please try again"), MessageLookupByLibrary.simpleMessage("Please try again"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -1048,7 +1059,7 @@ class MessageLookup extends MessageLookupByLibrary {
"raiseTicket": MessageLookupByLibrary.simpleMessage("Raise ticket"), "raiseTicket": MessageLookupByLibrary.simpleMessage("Raise ticket"),
"rateTheApp": MessageLookupByLibrary.simpleMessage("Rate the app"), "rateTheApp": MessageLookupByLibrary.simpleMessage("Rate the app"),
"rateUs": MessageLookupByLibrary.simpleMessage("Rate us"), "rateUs": MessageLookupByLibrary.simpleMessage("Rate us"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Recover"), "recover": MessageLookupByLibrary.simpleMessage("Recover"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Recover account"), MessageLookupByLibrary.simpleMessage("Recover account"),
@ -1079,7 +1090,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Give this code to your friends"), "1. Give this code to your friends"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. They sign up for a paid plan"), "2. They sign up for a paid plan"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Referrals"), "referrals": MessageLookupByLibrary.simpleMessage("Referrals"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Referrals are currently paused"), "Referrals are currently paused"),
@ -1103,7 +1114,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Remove link"), "removeLink": MessageLookupByLibrary.simpleMessage("Remove link"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Remove participant"), MessageLookupByLibrary.simpleMessage("Remove participant"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Remove public link"), MessageLookupByLibrary.simpleMessage("Remove public link"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1117,7 +1128,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameFile": MessageLookupByLibrary.simpleMessage("Rename file"), "renameFile": MessageLookupByLibrary.simpleMessage("Rename file"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Renew subscription"), MessageLookupByLibrary.simpleMessage("Renew subscription"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Report a bug"), "reportABug": MessageLookupByLibrary.simpleMessage("Report a bug"),
"reportBug": MessageLookupByLibrary.simpleMessage("Report bug"), "reportBug": MessageLookupByLibrary.simpleMessage("Report bug"),
"resendEmail": MessageLookupByLibrary.simpleMessage("Resend email"), "resendEmail": MessageLookupByLibrary.simpleMessage("Resend email"),
@ -1177,7 +1188,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Group photos that are taken within some radius of a photo"), "Group photos that are taken within some radius of a photo"),
"searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage(
"Invite people, and you\'ll see all photos shared by them here"), "Invite people, and you\'ll see all photos shared by them here"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("Security"), "security": MessageLookupByLibrary.simpleMessage("Security"),
"selectALocation": "selectALocation":
MessageLookupByLibrary.simpleMessage("Select a location"), MessageLookupByLibrary.simpleMessage("Select a location"),
@ -1204,8 +1215,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Selected items will be deleted from all albums and moved to trash."), "Selected items will be deleted from all albums and moved to trash."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Send"), "send": MessageLookupByLibrary.simpleMessage("Send"),
"sendEmail": MessageLookupByLibrary.simpleMessage("Send email"), "sendEmail": MessageLookupByLibrary.simpleMessage("Send email"),
"sendInvite": MessageLookupByLibrary.simpleMessage("Send invite"), "sendInvite": MessageLookupByLibrary.simpleMessage("Send invite"),
@ -1227,16 +1238,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Share an album now"), MessageLookupByLibrary.simpleMessage("Share an album now"),
"shareLink": MessageLookupByLibrary.simpleMessage("Share link"), "shareLink": MessageLookupByLibrary.simpleMessage("Share link"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Share only with the people you want"), "Share only with the people you want"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Download ente so we can easily share original quality photos and videos\n\nhttps://ente.io"), "Download ente so we can easily share original quality photos and videos\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": "shareWithNonenteUsers":
MessageLookupByLibrary.simpleMessage("Share with non-ente users"), MessageLookupByLibrary.simpleMessage("Share with non-ente users"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": "shareYourFirstAlbum":
MessageLookupByLibrary.simpleMessage("Share your first album"), MessageLookupByLibrary.simpleMessage("Share your first album"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1247,7 +1258,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("New shared photos"), MessageLookupByLibrary.simpleMessage("New shared photos"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Receive notifications when someone adds a photo to a shared album that you\'re a part of"), "Receive notifications when someone adds a photo to a shared album that you\'re a part of"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": MessageLookupByLibrary.simpleMessage("Shared with me"), "sharedWithMe": MessageLookupByLibrary.simpleMessage("Shared with me"),
"sharedWithYou": "sharedWithYou":
MessageLookupByLibrary.simpleMessage("Shared with you"), MessageLookupByLibrary.simpleMessage("Shared with you"),
@ -1261,11 +1272,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Sign out other devices"), MessageLookupByLibrary.simpleMessage("Sign out other devices"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"I agree to the <u-terms>terms of service</u-terms> and <u-policy>privacy policy</u-policy>"), "I agree to the <u-terms>terms of service</u-terms> and <u-policy>privacy policy</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"It will be deleted from all albums."), "It will be deleted from all albums."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Skip"), "skip": MessageLookupByLibrary.simpleMessage("Skip"),
"social": MessageLookupByLibrary.simpleMessage("Social"), "social": MessageLookupByLibrary.simpleMessage("Social"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1303,13 +1314,13 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("Storage"), "storage": MessageLookupByLibrary.simpleMessage("Storage"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Family"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Family"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("You"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("You"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": "storageLimitExceeded":
MessageLookupByLibrary.simpleMessage("Storage limit exceeded"), MessageLookupByLibrary.simpleMessage("Storage limit exceeded"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Strong"), "strongStrength": MessageLookupByLibrary.simpleMessage("Strong"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Subscribe"), "subscribe": MessageLookupByLibrary.simpleMessage("Subscribe"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Looks like your subscription has expired. Please subscribe to enable sharing."), "Looks like your subscription has expired. Please subscribe to enable sharing."),
@ -1326,7 +1337,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Suggest features"), MessageLookupByLibrary.simpleMessage("Suggest features"),
"support": MessageLookupByLibrary.simpleMessage("Support"), "support": MessageLookupByLibrary.simpleMessage("Support"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": MessageLookupByLibrary.simpleMessage("Sync stopped"), "syncStopped": MessageLookupByLibrary.simpleMessage("Sync stopped"),
"syncing": MessageLookupByLibrary.simpleMessage("Syncing..."), "syncing": MessageLookupByLibrary.simpleMessage("Syncing..."),
"systemTheme": MessageLookupByLibrary.simpleMessage("System"), "systemTheme": MessageLookupByLibrary.simpleMessage("System"),
@ -1352,7 +1363,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"These items will be deleted from your device."), "These items will be deleted from your device."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"They will be deleted from all albums."), "They will be deleted from all albums."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1368,7 +1379,7 @@ class MessageLookup extends MessageLookupByLibrary {
"This email is already in use"), "This email is already in use"),
"thisImageHasNoExifData": "thisImageHasNoExifData":
MessageLookupByLibrary.simpleMessage("This image has no exif data"), MessageLookupByLibrary.simpleMessage("This image has no exif data"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"This is your Verification ID"), "This is your Verification ID"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1384,7 +1395,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("total"), "total": MessageLookupByLibrary.simpleMessage("total"),
"totalSize": MessageLookupByLibrary.simpleMessage("Total size"), "totalSize": MessageLookupByLibrary.simpleMessage("Total size"),
"trash": MessageLookupByLibrary.simpleMessage("Trash"), "trash": MessageLookupByLibrary.simpleMessage("Trash"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Try again"), "tryAgain": MessageLookupByLibrary.simpleMessage("Try again"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Turn on backup to automatically upload files added to this device folder to ente."), "Turn on backup to automatically upload files added to this device folder to ente."),
@ -1436,7 +1447,7 @@ class MessageLookup extends MessageLookupByLibrary {
"useSelectedPhoto": "useSelectedPhoto":
MessageLookupByLibrary.simpleMessage("Use selected photo"), MessageLookupByLibrary.simpleMessage("Use selected photo"),
"usedSpace": MessageLookupByLibrary.simpleMessage("Used space"), "usedSpace": MessageLookupByLibrary.simpleMessage("Used space"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Verification failed, please try again"), "Verification failed, please try again"),
@ -1444,7 +1455,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Verification ID"), MessageLookupByLibrary.simpleMessage("Verification ID"),
"verify": MessageLookupByLibrary.simpleMessage("Verify"), "verify": MessageLookupByLibrary.simpleMessage("Verify"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("Verify email"), "verifyEmail": MessageLookupByLibrary.simpleMessage("Verify email"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verify"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verify"),
"verifyPasskey": MessageLookupByLibrary.simpleMessage("Verify passkey"), "verifyPasskey": MessageLookupByLibrary.simpleMessage("Verify passkey"),
"verifyPassword": "verifyPassword":
@ -1475,11 +1486,11 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"We don\'t support editing photos and albums that you don\'t own yet"), "We don\'t support editing photos and albums that you don\'t own yet"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Weak"), "weakStrength": MessageLookupByLibrary.simpleMessage("Weak"),
"welcomeBack": MessageLookupByLibrary.simpleMessage("Welcome back!"), "welcomeBack": MessageLookupByLibrary.simpleMessage("Welcome back!"),
"yearly": MessageLookupByLibrary.simpleMessage("Yearly"), "yearly": MessageLookupByLibrary.simpleMessage("Yearly"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Yes"), "yes": MessageLookupByLibrary.simpleMessage("Yes"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Yes, cancel"), "yesCancel": MessageLookupByLibrary.simpleMessage("Yes, cancel"),
"yesConvertToViewer": "yesConvertToViewer":
@ -1509,7 +1520,7 @@ class MessageLookup extends MessageLookupByLibrary {
"You cannot share with yourself"), "You cannot share with yourself"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"You don\'t have any archived items."), "You don\'t have any archived items."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage( "yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage(
"Your account has been deleted"), "Your account has been deleted"),
"yourMap": MessageLookupByLibrary.simpleMessage("Your map"), "yourMap": MessageLookupByLibrary.simpleMessage("Your map"),

View file

@ -21,24 +21,30 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'es'; String get localeName => 'es';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Agregar elemento', other: 'Agregar elementos')}}"; "${Intl.plural(count, one: 'Agregar elemento', other: 'Agregar elementos')}}";
static String m2(emailOrName) => "Añadido por ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Añadido exitosamente a ${albumName}"; static String m4(emailOrName) => "Añadido por ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Añadido exitosamente a ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'No hay Participantes', one: '1 Participante', other: '${count} Participantes')}"; "${Intl.plural(count, zero: 'No hay Participantes', one: '1 Participante', other: '${count} Participantes')}";
static String m5(versionValue) => "Versión: ${versionValue}"; static String m7(versionValue) => "Versión: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Por favor, cancele primero su suscripción existente de ${paymentProvider}"; "Por favor, cancele primero su suscripción existente de ${paymentProvider}";
static String m7(user) => static String m9(user) =>
"${user} no podrá añadir más fotos a este álbum\n\nTodavía podrán eliminar las fotos ya añadidas por ellos"; "${user} no podrá añadir más fotos a este álbum\n\nTodavía podrán eliminar las fotos ya añadidas por ellos";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Su familia ha reclamado ${storageAmountInGb} GB hasta el momento', 'Su familia ha reclamado ${storageAmountInGb} GB hasta el momento',
@ -48,145 +54,146 @@ class MessageLookup extends MessageLookupByLibrary {
'¡Tú has reclamado ${storageAmountInGb} GB hasta el momento!', '¡Tú has reclamado ${storageAmountInGb} GB hasta el momento!',
})}"; })}";
static String m9(albumName) => "Enlace colaborativo creado para ${albumName}"; static String m11(albumName) =>
"Enlace colaborativo creado para ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Por favor contacta con <green>${familyAdminEmail}</green> para administrar tu suscripción"; "Por favor contacta con <green>${familyAdminEmail}</green> para administrar tu suscripción";
static String m11(provider) => static String m13(provider) =>
"Por favor, contáctenos en support@ente.io para gestionar su suscripción a ${provider}."; "Por favor, contáctenos en support@ente.io para gestionar su suscripción a ${provider}.";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Borrando ${currentlyDeleting} / ${totalCount}"; "Borrando ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Esto eliminará el enlace público para acceder a \"${albumName}\"."; "Esto eliminará el enlace público para acceder a \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Por favor, envíe un email a ${supportEmail} desde su dirección de correo electrónico registrada"; "Por favor, envíe un email a ${supportEmail} desde su dirección de correo electrónico registrada";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"¡Has limpiado ${Intl.plural(count, one: '${count} archivo duplicado', other: '${count} archivos duplicados')}, ahorrando (${storageSaved}!)"; "¡Has limpiado ${Intl.plural(count, one: '${count} archivo duplicado', other: '${count} archivos duplicados')}, ahorrando (${storageSaved}!)";
static String m18(newEmail) => "Correo cambiado a ${newEmail}"; static String m20(newEmail) => "Correo cambiado a ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} no tiene una cuenta ente.\n\nEnvíale una invitación para compartir fotos."; "${email} no tiene una cuenta ente.\n\nEnvíale una invitación para compartir fotos.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 archivo', other: '${formattedNumber} archivos')} en este dispositivo han sido respaldados de forma segura"; "${Intl.plural(count, one: '1 archivo', other: '${formattedNumber} archivos')} en este dispositivo han sido respaldados de forma segura";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 archivo', other: '${formattedNumber} archivos')} en este álbum ha sido respaldado de forma segura"; "${Intl.plural(count, one: '1 archivo', other: '${formattedNumber} archivos')} en este álbum ha sido respaldado de forma segura";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB cada vez que alguien se registra en un plan de pago y aplica tu código"; "${storageAmountInGB} GB cada vez que alguien se registra en un plan de pago y aplica tu código";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} gratis"; "${freeAmount} ${storageUnit} gratis";
static String m24(endDate) => "Prueba gratuita válida hasta${endDate}"; static String m26(endDate) => "Prueba gratuita válida hasta${endDate}";
static String m25(count) => static String m27(count) =>
"Aún puedes acceder ${Intl.plural(count, one: 'si', other: 'entonces')} en ente mientras mantengas una suscripción activa"; "Aún puedes acceder ${Intl.plural(count, one: 'si', other: 'entonces')} en ente mientras mantengas una suscripción activa";
static String m26(sizeInMBorGB) => "Liberar ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "Liberar ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Se puede eliminar del dispositivo para liberar ${formattedSize}', other: 'Se pueden eliminar del dispositivo para liberar ${formattedSize}')}"; "${Intl.plural(count, one: 'Se puede eliminar del dispositivo para liberar ${formattedSize}', other: 'Se pueden eliminar del dispositivo para liberar ${formattedSize}')}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} elemento', other: '${count} elementos')}"; "${Intl.plural(count, one: '${count} elemento', other: '${count} elementos')}";
static String m30(expiryTime) => "El enlace caducará en ${expiryTime}"; static String m32(expiryTime) => "El enlace caducará en ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: 'no recuerdos', one: '${formattedCount} recuerdo', other: '${formattedCount} recuerdos')}\n"; "${Intl.plural(count, zero: 'no recuerdos', one: '${formattedCount} recuerdo', other: '${formattedCount} recuerdos')}\n";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Mover elemento', other: 'Mover elementos')}"; "${Intl.plural(count, one: 'Mover elemento', other: 'Mover elementos')}";
static String m33(albumName) => "Movido exitosamente a ${albumName}"; static String m35(albumName) => "Movido exitosamente a ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Seguridad de la contraseña : ${passwordStrengthValue}"; "Seguridad de la contraseña : ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Por favor hable con el soporte de ${providerName} si se le cobró"; "Por favor hable con el soporte de ${providerName} si se le cobró";
static String m36(reason) => static String m38(reason) =>
"Lamentablemente tu pago falló debido a ${reason}"; "Lamentablemente tu pago falló debido a ${reason}";
static String m38(toEmail) => static String m40(toEmail) =>
"Por favor, envíanos un correo electrónico a ${toEmail}"; "Por favor, envíanos un correo electrónico a ${toEmail}";
static String m39(toEmail) => "Por favor, envíe los registros a ${toEmail}"; static String m41(toEmail) => "Por favor, envíe los registros a ${toEmail}";
static String m40(storeName) => "Califícanos en ${storeName}"; static String m42(storeName) => "Califícanos en ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"3. Ambos obtienen ${storageInGB} GB* gratis"; "3. Ambos obtienen ${storageInGB} GB* gratis";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} será eliminado de este álbum compartido\n\nCualquier foto añadida por ellos también será eliminada del álbum"; "${userEmail} será eliminado de este álbum compartido\n\nCualquier foto añadida por ellos también será eliminada del álbum";
static String m43(endDate) => "Se renueva el ${endDate}"; static String m45(endDate) => "Se renueva el ${endDate}";
static String m45(count) => "${count} seleccionados"; static String m47(count) => "${count} seleccionados";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} seleccionados (${yourCount} tuyos)"; "${count} seleccionados (${yourCount} tuyos)";
static String m47(verificationID) => static String m49(verificationID) =>
"Aquí está mi ID de verificación: ${verificationID} para ente.io."; "Aquí está mi ID de verificación: ${verificationID} para ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hola, ¿puedes confirmar que esta es tu ID de verificación ente.io: ${verificationID}?"; "Hola, ¿puedes confirmar que esta es tu ID de verificación ente.io: ${verificationID}?";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente código de referencia: ${referralCode} \n\nAplicarlo en Ajustes → General → Referencias para obtener ${referralStorageInGB} GB gratis después de registrarse en un plan de pago\n\nhttps://ente.io"; "ente código de referencia: ${referralCode} \n\nAplicarlo en Ajustes → General → Referencias para obtener ${referralStorageInGB} GB gratis después de registrarse en un plan de pago\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Compartir con personas específicas', one: 'Compartido con 1 persona', other: 'Compartido con ${numberOfPeople} personas')}"; "${Intl.plural(numberOfPeople, zero: 'Compartir con personas específicas', one: 'Compartido con 1 persona', other: 'Compartido con ${numberOfPeople} personas')}";
static String m51(emailIDs) => "Compartido con ${emailIDs}"; static String m53(emailIDs) => "Compartido con ${emailIDs}";
static String m52(fileType) => static String m54(fileType) =>
"Este ${fileType} se eliminará de tu dispositivo."; "Este ${fileType} se eliminará de tu dispositivo.";
static String m53(fileType) => static String m55(fileType) =>
"Este ${fileType} está tanto en ente como en tu dispositivo."; "Este ${fileType} está tanto en ente como en tu dispositivo.";
static String m54(fileType) => "Este ${fileType} se eliminará de ente."; static String m56(fileType) => "Este ${fileType} se eliminará de ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} de ${totalAmount} ${totalStorageUnit} usados"; "${usedAmount} ${usedStorageUnit} de ${totalAmount} ${totalStorageUnit} usados";
static String m57(id) => static String m59(id) =>
"Su ${id} ya está vinculado a otra cuenta ente.\nSi desea utilizar su ${id} con esta cuenta, póngase en contacto con nuestro servicio de asistencia\'\'"; "Su ${id} ya está vinculado a otra cuenta ente.\nSi desea utilizar su ${id} con esta cuenta, póngase en contacto con nuestro servicio de asistencia\'\'";
static String m58(endDate) => "Tu suscripción se cancelará el ${endDate}"; static String m60(endDate) => "Tu suscripción se cancelará el ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} recuerdos conservados"; "${completed}/${total} recuerdos conservados";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"También obtienen ${storageAmountInGB} GB"; "También obtienen ${storageAmountInGB} GB";
static String m61(email) => "Este es el ID de verificación de ${email}"; static String m63(email) => "Este es el ID de verificación de ${email}";
static String m64(email) => "Verificar ${email}"; static String m66(email) => "Verificar ${email}";
static String m65(email) => static String m67(email) =>
"Hemos enviado un correo a <green>${email}</green>"; "Hemos enviado un correo a <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} hace un año', other: '${count} hace años')}"; "${Intl.plural(count, one: '${count} hace un año', other: '${count} hace años')}";
static String m67(storageSaved) => "¡Has liberado ${storageSaved} con éxito!"; static String m69(storageSaved) => "¡Has liberado ${storageSaved} con éxito!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{ static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
@ -204,7 +211,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Agregar nuevo correo electrónico"), "Agregar nuevo correo electrónico"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Agregar colaborador"), MessageLookupByLibrary.simpleMessage("Agregar colaborador"),
"addItem": m0, "addCollaborators": m0,
"addItem": m2,
"addLocation": "addLocation":
MessageLookupByLibrary.simpleMessage("Agregar ubicación"), MessageLookupByLibrary.simpleMessage("Agregar ubicación"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Añadir"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Añadir"),
@ -214,9 +222,10 @@ class MessageLookup extends MessageLookupByLibrary {
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewer": MessageLookupByLibrary.simpleMessage("Añadir espectador"), "addViewer": MessageLookupByLibrary.simpleMessage("Añadir espectador"),
"addViewers": m1,
"addedAs": MessageLookupByLibrary.simpleMessage("Agregado como"), "addedAs": MessageLookupByLibrary.simpleMessage("Agregado como"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": "addingToFavorites":
MessageLookupByLibrary.simpleMessage("Añadiendo a favoritos..."), MessageLookupByLibrary.simpleMessage("Añadiendo a favoritos..."),
"advanced": MessageLookupByLibrary.simpleMessage("Avanzado"), "advanced": MessageLookupByLibrary.simpleMessage("Avanzado"),
@ -229,7 +238,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Después de una semana"), MessageLookupByLibrary.simpleMessage("Después de una semana"),
"after1Year": MessageLookupByLibrary.simpleMessage("Después de un año"), "after1Year": MessageLookupByLibrary.simpleMessage("Después de un año"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Propietario"), "albumOwner": MessageLookupByLibrary.simpleMessage("Propietario"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Título del álbum"), "albumTitle": MessageLookupByLibrary.simpleMessage("Título del álbum"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Álbum actualizado"), MessageLookupByLibrary.simpleMessage("Álbum actualizado"),
@ -247,7 +256,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Permitir que la gente añada fotos"), "Permitir que la gente añada fotos"),
"androidIosWebDesktop": MessageLookupByLibrary.simpleMessage( "androidIosWebDesktop": MessageLookupByLibrary.simpleMessage(
"Android, iOS, Web, Computadora"), "Android, iOS, Web, Computadora"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("ID de Apple"), "appleId": MessageLookupByLibrary.simpleMessage("ID de Apple"),
"apply": MessageLookupByLibrary.simpleMessage("Aplicar"), "apply": MessageLookupByLibrary.simpleMessage("Aplicar"),
"applyCodeTitle": MessageLookupByLibrary.simpleMessage("Usar código"), "applyCodeTitle": MessageLookupByLibrary.simpleMessage("Usar código"),
@ -329,10 +338,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Sólo puede eliminar archivos de tu propiedad"), "Sólo puede eliminar archivos de tu propiedad"),
"cancel": MessageLookupByLibrary.simpleMessage("Cancelar"), "cancel": MessageLookupByLibrary.simpleMessage("Cancelar"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Cancelar suscripción"), MessageLookupByLibrary.simpleMessage("Cancelar suscripción"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"centerPoint": MessageLookupByLibrary.simpleMessage("Punto central"), "centerPoint": MessageLookupByLibrary.simpleMessage("Punto central"),
"changeEmail": "changeEmail":
MessageLookupByLibrary.simpleMessage("Cambiar correo electrónico"), MessageLookupByLibrary.simpleMessage("Cambiar correo electrónico"),
@ -353,7 +362,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Reclamar almacenamiento gratis"), "Reclamar almacenamiento gratis"),
"claimMore": MessageLookupByLibrary.simpleMessage("¡Reclama más!"), "claimMore": MessageLookupByLibrary.simpleMessage("¡Reclama más!"),
"claimed": MessageLookupByLibrary.simpleMessage("Reclamado"), "claimed": MessageLookupByLibrary.simpleMessage("Reclamado"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"clearCaches": MessageLookupByLibrary.simpleMessage("Limpiar caché"), "clearCaches": MessageLookupByLibrary.simpleMessage("Limpiar caché"),
"click": MessageLookupByLibrary.simpleMessage("• Click"), "click": MessageLookupByLibrary.simpleMessage("• Click"),
"clickOnTheOverflowMenu": MessageLookupByLibrary.simpleMessage( "clickOnTheOverflowMenu": MessageLookupByLibrary.simpleMessage(
@ -371,7 +380,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Crea un enlace para que la gente pueda añadir y ver fotos en tu álbum compartido sin necesidad de la aplicación ente o una cuenta. Genial para recolectar fotos de eventos."), "Crea un enlace para que la gente pueda añadir y ver fotos en tu álbum compartido sin necesidad de la aplicación ente o una cuenta. Genial para recolectar fotos de eventos."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Enlace colaborativo"), MessageLookupByLibrary.simpleMessage("Enlace colaborativo"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Colaborador"), "collaborator": MessageLookupByLibrary.simpleMessage("Colaborador"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -396,10 +405,10 @@ class MessageLookup extends MessageLookupByLibrary {
"Confirmar clave de recuperación"), "Confirmar clave de recuperación"),
"confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage( "confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage(
"Confirme su clave de recuperación"), "Confirme su clave de recuperación"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contactar con soporte"), MessageLookupByLibrary.simpleMessage("Contactar con soporte"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Continuar"), "continueLabel": MessageLookupByLibrary.simpleMessage("Continuar"),
"continueOnFreeTrial": MessageLookupByLibrary.simpleMessage( "continueOnFreeTrial": MessageLookupByLibrary.simpleMessage(
@ -472,7 +481,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Borrar la ubicación"), MessageLookupByLibrary.simpleMessage("Borrar la ubicación"),
"deletePhotos": "deletePhotos":
MessageLookupByLibrary.simpleMessage("Borrar las fotos"), MessageLookupByLibrary.simpleMessage("Borrar las fotos"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Falta una característica clave que necesito"), "Falta una característica clave que necesito"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -506,7 +515,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Los espectadores todavía pueden tomar capturas de pantalla o guardar una copia de sus fotos usando herramientas externas"), "Los espectadores todavía pueden tomar capturas de pantalla o guardar una copia de sus fotos usando herramientas externas"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Por favor tenga en cuenta"), MessageLookupByLibrary.simpleMessage("Por favor tenga en cuenta"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": "disableTwofactor":
MessageLookupByLibrary.simpleMessage("Deshabilitar dos factores"), MessageLookupByLibrary.simpleMessage("Deshabilitar dos factores"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -527,8 +536,8 @@ class MessageLookup extends MessageLookupByLibrary {
"downloadFailed": "downloadFailed":
MessageLookupByLibrary.simpleMessage("Descarga fallida"), MessageLookupByLibrary.simpleMessage("Descarga fallida"),
"downloading": MessageLookupByLibrary.simpleMessage("Descargando..."), "downloading": MessageLookupByLibrary.simpleMessage("Descargando..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"edit": MessageLookupByLibrary.simpleMessage("Editar"), "edit": MessageLookupByLibrary.simpleMessage("Editar"),
"editLocation": MessageLookupByLibrary.simpleMessage("Edit location"), "editLocation": MessageLookupByLibrary.simpleMessage("Edit location"),
"editLocationTagTitle": "editLocationTagTitle":
@ -540,8 +549,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Edits to location will only be seen within Ente"), "Edits to location will only be seen within Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("elegible"), "eligible": MessageLookupByLibrary.simpleMessage("elegible"),
"email": MessageLookupByLibrary.simpleMessage("Correo electrónico"), "email": MessageLookupByLibrary.simpleMessage("Correo electrónico"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailYourLogs": MessageLookupByLibrary.simpleMessage( "emailYourLogs": MessageLookupByLibrary.simpleMessage(
"Envíe sus registros por correo electrónico"), "Envíe sus registros por correo electrónico"),
"empty": MessageLookupByLibrary.simpleMessage("Vaciar"), "empty": MessageLookupByLibrary.simpleMessage("Vaciar"),
@ -630,8 +639,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileSavedToGallery": MessageLookupByLibrary.simpleMessage( "fileSavedToGallery": MessageLookupByLibrary.simpleMessage(
"Archivo guardado en la galería"), "Archivo guardado en la galería"),
"fileTypes": MessageLookupByLibrary.simpleMessage("File types"), "fileTypes": MessageLookupByLibrary.simpleMessage("File types"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": "filesDeleted":
MessageLookupByLibrary.simpleMessage("Archivos eliminados"), MessageLookupByLibrary.simpleMessage("Archivos eliminados"),
"flip": MessageLookupByLibrary.simpleMessage("Voltear"), "flip": MessageLookupByLibrary.simpleMessage("Voltear"),
@ -641,18 +650,18 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Olvidé mi contraseña"), MessageLookupByLibrary.simpleMessage("Olvidé mi contraseña"),
"freeStorageClaimed": MessageLookupByLibrary.simpleMessage( "freeStorageClaimed": MessageLookupByLibrary.simpleMessage(
"Almacenamiento gratuito reclamado"), "Almacenamiento gratuito reclamado"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": MessageLookupByLibrary.simpleMessage( "freeStorageUsable": MessageLookupByLibrary.simpleMessage(
"Almacenamiento libre disponible"), "Almacenamiento libre disponible"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Prueba gratuita"), "freeTrial": MessageLookupByLibrary.simpleMessage("Prueba gratuita"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage( "freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage(
"Liberar espacio del dispositivo"), "Liberar espacio del dispositivo"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("Liberar espacio"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("Liberar espacio"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Hasta 1000 memorias mostradas en la galería"), "Hasta 1000 memorias mostradas en la galería"),
"general": MessageLookupByLibrary.simpleMessage("General"), "general": MessageLookupByLibrary.simpleMessage("General"),
@ -698,7 +707,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Parece que algo salió mal. Por favor, vuelve a intentarlo después de algún tiempo. Si el error persiste, ponte en contacto con nuestro equipo de soporte."), "Parece que algo salió mal. Por favor, vuelve a intentarlo después de algún tiempo. Si el error persiste, ponte en contacto con nuestro equipo de soporte."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Los artículos muestran el número de días restantes antes de ser borrados permanente"), "Los artículos muestran el número de días restantes antes de ser borrados permanente"),
@ -727,7 +736,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Límite del dispositivo"), MessageLookupByLibrary.simpleMessage("Límite del dispositivo"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Habilitado"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Habilitado"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Vencido"), "linkExpired": MessageLookupByLibrary.simpleMessage("Vencido"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("Enlace vence"), "linkExpiry": MessageLookupByLibrary.simpleMessage("Enlace vence"),
"linkHasExpired": "linkHasExpired":
MessageLookupByLibrary.simpleMessage("El enlace ha caducado"), MessageLookupByLibrary.simpleMessage("El enlace ha caducado"),
@ -776,6 +785,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Cerrar sesión"), "logout": MessageLookupByLibrary.simpleMessage("Cerrar sesión"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Esto enviará registros para ayudarnos a depurar su problema. Tenga en cuenta que los nombres de los archivos se incluirán para ayudar a rastrear problemas con archivos específicos."), "Esto enviará registros para ayudarnos a depurar su problema. Tenga en cuenta que los nombres de los archivos se incluirán para ayudar a rastrear problemas con archivos específicos."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage( "longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage(
"Pulsación prolongada en un elemento para ver en pantalla completa"), "Pulsación prolongada en un elemento para ver en pantalla completa"),
"lostDevice": "lostDevice":
@ -793,7 +805,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Administrar tu suscripción"), MessageLookupByLibrary.simpleMessage("Administrar tu suscripción"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Mercancías"), "merchandise": MessageLookupByLibrary.simpleMessage("Mercancías"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Celular, Web, Computadora"), MessageLookupByLibrary.simpleMessage("Celular, Web, Computadora"),
@ -802,11 +814,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Modify your query, or try searching for"), "Modify your query, or try searching for"),
"monthly": MessageLookupByLibrary.simpleMessage("Mensual"), "monthly": MessageLookupByLibrary.simpleMessage("Mensual"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": MessageLookupByLibrary.simpleMessage("Mover al álbum"), "moveToAlbum": MessageLookupByLibrary.simpleMessage("Mover al álbum"),
"moveToHiddenAlbum": "moveToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Move to hidden album"), MessageLookupByLibrary.simpleMessage("Move to hidden album"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": "movedToTrash":
MessageLookupByLibrary.simpleMessage("Movido a la papelera"), MessageLookupByLibrary.simpleMessage("Movido a la papelera"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -856,14 +868,14 @@ class MessageLookup extends MessageLookupByLibrary {
"Contraseña cambiada correctamente"), "Contraseña cambiada correctamente"),
"passwordLock": "passwordLock":
MessageLookupByLibrary.simpleMessage("Bloqueo por contraseña"), MessageLookupByLibrary.simpleMessage("Bloqueo por contraseña"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"No almacenamos esta contraseña, así que si la olvidas, <underline>no podemos descifrar tus datos</underline>"), "No almacenamos esta contraseña, así que si la olvidas, <underline>no podemos descifrar tus datos</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Detalles de pago"), MessageLookupByLibrary.simpleMessage("Detalles de pago"),
"paymentFailed": MessageLookupByLibrary.simpleMessage("Pago fallido"), "paymentFailed": MessageLookupByLibrary.simpleMessage("Pago fallido"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingSync": "pendingSync":
MessageLookupByLibrary.simpleMessage("Sincronización pendiente"), MessageLookupByLibrary.simpleMessage("Sincronización pendiente"),
"peopleUsingYourCode": "peopleUsingYourCode":
@ -890,12 +902,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Por favor contacte a soporte técnico si el problema persiste"), "Por favor contacte a soporte técnico si el problema persiste"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": "pleaseGrantPermissions":
MessageLookupByLibrary.simpleMessage("Por favor, concede permiso"), MessageLookupByLibrary.simpleMessage("Por favor, concede permiso"),
"pleaseLoginAgain": MessageLookupByLibrary.simpleMessage( "pleaseLoginAgain": MessageLookupByLibrary.simpleMessage(
"Por favor, vuelva a iniciar sesión"), "Por favor, vuelva a iniciar sesión"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": MessageLookupByLibrary.simpleMessage( "pleaseTryAgain": MessageLookupByLibrary.simpleMessage(
"Por favor, inténtalo nuevamente"), "Por favor, inténtalo nuevamente"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -929,7 +941,7 @@ class MessageLookup extends MessageLookupByLibrary {
"rateTheApp": "rateTheApp":
MessageLookupByLibrary.simpleMessage("Evalúa la aplicación"), MessageLookupByLibrary.simpleMessage("Evalúa la aplicación"),
"rateUs": MessageLookupByLibrary.simpleMessage("Califícanos"), "rateUs": MessageLookupByLibrary.simpleMessage("Califícanos"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Recuperar"), "recover": MessageLookupByLibrary.simpleMessage("Recuperar"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Recuperar cuenta"), MessageLookupByLibrary.simpleMessage("Recuperar cuenta"),
@ -961,7 +973,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Dale este código a tus amigos"), "1. Dale este código a tus amigos"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Se inscriben a un plan pagado"), "2. Se inscriben a un plan pagado"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Referidos"), "referrals": MessageLookupByLibrary.simpleMessage("Referidos"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Las referencias están actualmente en pausa"), "Las referencias están actualmente en pausa"),
@ -986,7 +998,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Eliminar enlace"), "removeLink": MessageLookupByLibrary.simpleMessage("Eliminar enlace"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Quitar participante"), MessageLookupByLibrary.simpleMessage("Quitar participante"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Quitar enlace público"), MessageLookupByLibrary.simpleMessage("Quitar enlace público"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1000,7 +1012,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameFile": MessageLookupByLibrary.simpleMessage("Renombrar archivo"), "renameFile": MessageLookupByLibrary.simpleMessage("Renombrar archivo"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Renovar suscripción"), MessageLookupByLibrary.simpleMessage("Renovar suscripción"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Reportar un error"), "reportABug": MessageLookupByLibrary.simpleMessage("Reportar un error"),
"reportBug": MessageLookupByLibrary.simpleMessage("Reportar error"), "reportBug": MessageLookupByLibrary.simpleMessage("Reportar error"),
"resendEmail": "resendEmail":
@ -1062,8 +1074,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Los archivos seleccionados serán eliminados de todos los álbumes y movidos a la papelera."), "Los archivos seleccionados serán eliminados de todos los álbumes y movidos a la papelera."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Enviar"), "send": MessageLookupByLibrary.simpleMessage("Enviar"),
"sendEmail": "sendEmail":
MessageLookupByLibrary.simpleMessage("Enviar correo electrónico"), MessageLookupByLibrary.simpleMessage("Enviar correo electrónico"),
@ -1088,32 +1100,32 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Compartir un álbum ahora"), MessageLookupByLibrary.simpleMessage("Compartir un álbum ahora"),
"shareLink": MessageLookupByLibrary.simpleMessage("Compartir enlace"), "shareLink": MessageLookupByLibrary.simpleMessage("Compartir enlace"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Comparte sólo con la gente que quieres"), "Comparte sólo con la gente que quieres"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Descarga ente para que podamos compartir fácilmente fotos y videos en su calidad original\n\nhttps://ente.io"), "Descarga ente para que podamos compartir fácilmente fotos y videos en su calidad original\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Compartir con usuarios no ente"), "Compartir con usuarios no ente"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": "shareYourFirstAlbum":
MessageLookupByLibrary.simpleMessage("Comparte tu primer álbum"), MessageLookupByLibrary.simpleMessage("Comparte tu primer álbum"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
"Crear álbumes compartidos y colaborativos con otros usuarios ente, incluyendo usuarios en planes gratuitos."), "Crear álbumes compartidos y colaborativos con otros usuarios ente, incluyendo usuarios en planes gratuitos."),
"sharedByMe": MessageLookupByLibrary.simpleMessage("Compartido por mí"), "sharedByMe": MessageLookupByLibrary.simpleMessage("Compartido por mí"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": "sharedWithMe":
MessageLookupByLibrary.simpleMessage("Compartido conmigo"), MessageLookupByLibrary.simpleMessage("Compartido conmigo"),
"sharing": MessageLookupByLibrary.simpleMessage("Compartiendo..."), "sharing": MessageLookupByLibrary.simpleMessage("Compartiendo..."),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"Estoy de acuerdo con los <u-terms>términos del servicio</u-terms> y <u-policy> la política de privacidad</u-policy>"), "Estoy de acuerdo con los <u-terms>términos del servicio</u-terms> y <u-policy> la política de privacidad</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Se borrará de todos los álbumes."), "Se borrará de todos los álbumes."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Omitir"), "skip": MessageLookupByLibrary.simpleMessage("Omitir"),
"social": MessageLookupByLibrary.simpleMessage("Social"), "social": MessageLookupByLibrary.simpleMessage("Social"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1148,13 +1160,13 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("Almacenamiento"), "storage": MessageLookupByLibrary.simpleMessage("Almacenamiento"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familia"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familia"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Usted"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Usted"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": "storageLimitExceeded":
MessageLookupByLibrary.simpleMessage("Límite de datos excedido"), MessageLookupByLibrary.simpleMessage("Límite de datos excedido"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Segura"), "strongStrength": MessageLookupByLibrary.simpleMessage("Segura"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Suscribirse"), "subscribe": MessageLookupByLibrary.simpleMessage("Suscribirse"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Parece que su suscripción ha caducado. Por favor, suscríbase para habilitar el compartir."), "Parece que su suscripción ha caducado. Por favor, suscríbase para habilitar el compartir."),
@ -1167,7 +1179,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Sugerir una característica"), MessageLookupByLibrary.simpleMessage("Sugerir una característica"),
"support": MessageLookupByLibrary.simpleMessage("Soporte"), "support": MessageLookupByLibrary.simpleMessage("Soporte"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Sincronización detenida"), MessageLookupByLibrary.simpleMessage("Sincronización detenida"),
"syncing": MessageLookupByLibrary.simpleMessage("Sincronizando..."), "syncing": MessageLookupByLibrary.simpleMessage("Sincronizando..."),
@ -1195,7 +1207,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Estos elementos se eliminarán de tu dispositivo."), "Estos elementos se eliminarán de tu dispositivo."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Se borrarán de todos los álbumes."), "Se borrarán de todos los álbumes."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1211,7 +1223,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Este correo electrónico ya está en uso"), "Este correo electrónico ya está en uso"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Esta imagen no tiene datos exif"), "Esta imagen no tiene datos exif"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"Esta es tu ID de verificación"), "Esta es tu ID de verificación"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1281,7 +1293,7 @@ class MessageLookup extends MessageLookupByLibrary {
"verify": MessageLookupByLibrary.simpleMessage("Verificar"), "verify": MessageLookupByLibrary.simpleMessage("Verificar"),
"verifyEmail": MessageLookupByLibrary.simpleMessage( "verifyEmail": MessageLookupByLibrary.simpleMessage(
"Verificar correo electrónico"), "Verificar correo electrónico"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verificar"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verificar"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Verificar contraseña"), MessageLookupByLibrary.simpleMessage("Verificar contraseña"),
@ -1304,12 +1316,12 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"No admitimos la edición de fotos y álbunes que aún no son tuyos"), "No admitimos la edición de fotos y álbunes que aún no son tuyos"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Poco segura"), "weakStrength": MessageLookupByLibrary.simpleMessage("Poco segura"),
"welcomeBack": "welcomeBack":
MessageLookupByLibrary.simpleMessage("¡Bienvenido de nuevo!"), MessageLookupByLibrary.simpleMessage("¡Bienvenido de nuevo!"),
"yearly": MessageLookupByLibrary.simpleMessage("Anualmente"), "yearly": MessageLookupByLibrary.simpleMessage("Anualmente"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage(""), "yes": MessageLookupByLibrary.simpleMessage(""),
"yesCancel": MessageLookupByLibrary.simpleMessage("Sí, cancelar"), "yesCancel": MessageLookupByLibrary.simpleMessage("Sí, cancelar"),
"yesConvertToViewer": "yesConvertToViewer":
@ -1339,7 +1351,7 @@ class MessageLookup extends MessageLookupByLibrary {
"No puedes compartir contigo mismo"), "No puedes compartir contigo mismo"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"No tienes nada de elementos archivados."), "No tienes nada de elementos archivados."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": "yourAccountHasBeenDeleted":
MessageLookupByLibrary.simpleMessage("Su cuenta ha sido eliminada"), MessageLookupByLibrary.simpleMessage("Su cuenta ha sido eliminada"),
"yourMap": MessageLookupByLibrary.simpleMessage("Your map"), "yourMap": MessageLookupByLibrary.simpleMessage("Your map"),

View file

@ -21,24 +21,30 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'fr'; String get localeName => 'fr';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Ajoutez un objet', other: 'Ajoutez des objets')}"; "${Intl.plural(count, one: 'Ajoutez un objet', other: 'Ajoutez des objets')}";
static String m2(emailOrName) => "Ajouté par ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Ajouté avec succès à ${albumName}"; static String m4(emailOrName) => "Ajouté par ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Ajouté avec succès à ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'Aucun Participant', one: '1 Participant', other: '${count} Participants')}"; "${Intl.plural(count, zero: 'Aucun Participant', one: '1 Participant', other: '${count} Participants')}";
static String m5(versionValue) => "Version : ${versionValue}"; static String m7(versionValue) => "Version : ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Veuillez d\'abord annuler votre abonnement existant de ${paymentProvider}"; "Veuillez d\'abord annuler votre abonnement existant de ${paymentProvider}";
static String m7(user) => static String m9(user) =>
"${user} ne pourra pas ajouter plus de photos à cet album\n\nIl pourrait toujours supprimer les photos existantes ajoutées par eux"; "${user} ne pourra pas ajouter plus de photos à cet album\n\nIl pourrait toujours supprimer les photos existantes ajoutées par eux";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Votre famille a demandé ${storageAmountInGb} GB jusqu\'à présent', 'Votre famille a demandé ${storageAmountInGb} GB jusqu\'à présent',
@ -48,161 +54,161 @@ class MessageLookup extends MessageLookupByLibrary {
'Vous avez réclamé ${storageAmountInGb} GB jusqu\'à présent!', 'Vous avez réclamé ${storageAmountInGb} GB jusqu\'à présent!',
})}"; })}";
static String m9(albumName) => "Lien collaboratif créé pour ${albumName}"; static String m11(albumName) => "Lien collaboratif créé pour ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Veuillez contacter <green>${familyAdminEmail}</green> pour gérer votre abonnement"; "Veuillez contacter <green>${familyAdminEmail}</green> pour gérer votre abonnement";
static String m11(provider) => static String m13(provider) =>
"Veuillez nous contacter à support@ente.io pour gérer votre abonnement ${provider}."; "Veuillez nous contacter à support@ente.io pour gérer votre abonnement ${provider}.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Supprimer le fichier', other: 'Supprimer ${count} fichiers')}"; "${Intl.plural(count, one: 'Supprimer le fichier', other: 'Supprimer ${count} fichiers')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Suppression de ${currentlyDeleting} / ${totalCount}"; "Suppression de ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Cela supprimera le lien public pour accéder à \"${albumName}\"."; "Cela supprimera le lien public pour accéder à \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Veuillez envoyer un e-mail à ${supportEmail} depuis votre adresse enregistrée"; "Veuillez envoyer un e-mail à ${supportEmail} depuis votre adresse enregistrée";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"Vous avez nettoyé ${Intl.plural(count, one: '${count} fichier dupliqué', other: '${count} fichiers dupliqués')}, sauvegarde (${storageSaved}!)"; "Vous avez nettoyé ${Intl.plural(count, one: '${count} fichier dupliqué', other: '${count} fichiers dupliqués')}, sauvegarde (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} fichiers, ${formattedSize} chacun"; "${count} fichiers, ${formattedSize} chacun";
static String m18(newEmail) => "L\'e-mail a été changé en ${newEmail}"; static String m20(newEmail) => "L\'e-mail a été changé en ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} n\'a pas de compte ente.\n\nEnvoyez une invitation pour partager des photos."; "${email} n\'a pas de compte ente.\n\nEnvoyez une invitation pour partager des photos.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 fichier sur cet appareil a été sauvegardé en toute sécurité', other: '${formattedNumber} fichiers sur cet appareil ont été sauvegardés en toute sécurité')}"; "${Intl.plural(count, one: '1 fichier sur cet appareil a été sauvegardé en toute sécurité', other: '${formattedNumber} fichiers sur cet appareil ont été sauvegardés en toute sécurité')}";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 fichier dans cet album a été sauvegardé en toute sécurité', other: '${formattedNumber} fichiers dans cet album ont été sauvegardés en toute sécurité')}"; "${Intl.plural(count, one: '1 fichier dans cet album a été sauvegardé en toute sécurité', other: '${formattedNumber} fichiers dans cet album ont été sauvegardés en toute sécurité')}";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} Go chaque fois que quelqu\'un s\'inscrit à une offre payante et applique votre code"; "${storageAmountInGB} Go chaque fois que quelqu\'un s\'inscrit à une offre payante et applique votre code";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} libre"; "${freeAmount} ${storageUnit} libre";
static String m24(endDate) => "Essai gratuit valide jusquau ${endDate}"; static String m26(endDate) => "Essai gratuit valide jusquau ${endDate}";
static String m25(count) => static String m27(count) =>
"Vous pouvez toujours ${Intl.plural(count, one: 'y', other: 'y')} accéder sur ente tant que vous avez un abonnement actif"; "Vous pouvez toujours ${Intl.plural(count, one: 'y', other: 'y')} accéder sur ente tant que vous avez un abonnement actif";
static String m26(sizeInMBorGB) => "Libérer ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "Libérer ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Peut être supprimé de l\'appareil pour libérer ${formattedSize}', other: 'Peuvent être supprimés de l\'appareil pour libérer ${formattedSize}')}"; "${Intl.plural(count, one: 'Peut être supprimé de l\'appareil pour libérer ${formattedSize}', other: 'Peuvent être supprimés de l\'appareil pour libérer ${formattedSize}')}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} objet', other: '${count} objets')}"; "${Intl.plural(count, one: '${count} objet', other: '${count} objets')}";
static String m30(expiryTime) => "Le lien expirera le ${expiryTime}"; static String m32(expiryTime) => "Le lien expirera le ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, one: '${formattedCount} mémoire', other: '${formattedCount} souvenirs')}"; "${Intl.plural(count, one: '${formattedCount} mémoire', other: '${formattedCount} souvenirs')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Déplacez l\'objet', other: 'Déplacez des objets')}"; "${Intl.plural(count, one: 'Déplacez l\'objet', other: 'Déplacez des objets')}";
static String m33(albumName) => "Déplacé avec succès vers ${albumName}"; static String m35(albumName) => "Déplacé avec succès vers ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Sécurité du mot de passe : ${passwordStrengthValue}"; "Sécurité du mot de passe : ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Veuillez contacter le support ${providerName} si vous avez été facturé"; "Veuillez contacter le support ${providerName} si vous avez été facturé";
static String m36(reason) => static String m38(reason) =>
"Malheureusement, votre paiement a échoué pour ${reason}"; "Malheureusement, votre paiement a échoué pour ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Essai gratuit valable jusqu\'à ${endDate}.\nVous pouvez choisir un plan payant par la suite."; "Essai gratuit valable jusqu\'à ${endDate}.\nVous pouvez choisir un plan payant par la suite.";
static String m38(toEmail) => "Merci de nous envoyer un e-mail à ${toEmail}"; static String m40(toEmail) => "Merci de nous envoyer un e-mail à ${toEmail}";
static String m39(toEmail) => "Envoyez les logs à ${toEmail}"; static String m41(toEmail) => "Envoyez les logs à ${toEmail}";
static String m40(storeName) => "Notez-nous sur ${storeName}"; static String m42(storeName) => "Notez-nous sur ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"3. Vous recevez tous les deux ${storageInGB} GB* gratuits"; "3. Vous recevez tous les deux ${storageInGB} GB* gratuits";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} sera retiré de cet album partagé\n\nToutes les photos ajoutées par eux seront également retirées de l\'album"; "${userEmail} sera retiré de cet album partagé\n\nToutes les photos ajoutées par eux seront également retirées de l\'album";
static String m43(endDate) => "Renouvellement le ${endDate}"; static String m45(endDate) => "Renouvellement le ${endDate}";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, one: '${count} résultat trouvé', other: '${count} résultats trouvés')}"; "${Intl.plural(count, one: '${count} résultat trouvé', other: '${count} résultats trouvés')}";
static String m45(count) => "${count} sélectionné(s)"; static String m47(count) => "${count} sélectionné(s)";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} sélectionné(s) (${yourCount} à vous)"; "${count} sélectionné(s) (${yourCount} à vous)";
static String m47(verificationID) => static String m49(verificationID) =>
"Voici mon ID de vérification : ${verificationID} pour ente.io."; "Voici mon ID de vérification : ${verificationID} pour ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hé, pouvez-vous confirmer qu\'il s\'agit de votre ID de vérification ente.io : ${verificationID}"; "Hé, pouvez-vous confirmer qu\'il s\'agit de votre ID de vérification ente.io : ${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"code de parrainage ente : ${referralCode} \n\nAppliquez le dans Paramètres → Général → Références pour obtenir ${referralStorageInGB} Go gratuitement après votre inscription à un plan payant\n\nhttps://ente.io"; "code de parrainage ente : ${referralCode} \n\nAppliquez le dans Paramètres → Général → Références pour obtenir ${referralStorageInGB} Go gratuitement après votre inscription à un plan payant\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Partagez avec des personnes spécifiques', one: 'Partagé avec 1 personne', other: 'Partagé avec ${numberOfPeople} des gens')}"; "${Intl.plural(numberOfPeople, zero: 'Partagez avec des personnes spécifiques', one: 'Partagé avec 1 personne', other: 'Partagé avec ${numberOfPeople} des gens')}";
static String m51(emailIDs) => "Partagé avec ${emailIDs}"; static String m53(emailIDs) => "Partagé avec ${emailIDs}";
static String m52(fileType) => static String m54(fileType) =>
"Elle ${fileType} sera supprimée de votre appareil."; "Elle ${fileType} sera supprimée de votre appareil.";
static String m53(fileType) => static String m55(fileType) =>
"Cette ${fileType} est à la fois sur ente et sur votre appareil."; "Cette ${fileType} est à la fois sur ente et sur votre appareil.";
static String m54(fileType) => "Ce ${fileType} sera supprimé de ente."; static String m56(fileType) => "Ce ${fileType} sera supprimé de ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} Go"; static String m57(storageAmountInGB) => "${storageAmountInGB} Go";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} sur ${totalAmount} ${totalStorageUnit} utilisé"; "${usedAmount} ${usedStorageUnit} sur ${totalAmount} ${totalStorageUnit} utilisé";
static String m57(id) => static String m59(id) =>
"Votre ${id} est déjà lié à un autre compte ente.\nSi vous souhaitez utiliser votre ${id} avec ce compte, veuillez contacter notre support"; "Votre ${id} est déjà lié à un autre compte ente.\nSi vous souhaitez utiliser votre ${id} avec ce compte, veuillez contacter notre support";
static String m58(endDate) => "Votre abonnement sera annulé le ${endDate}"; static String m60(endDate) => "Votre abonnement sera annulé le ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} souvenirs préservés"; "${completed}/${total} souvenirs préservés";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"Ils obtiennent aussi ${storageAmountInGB} Go"; "Ils obtiennent aussi ${storageAmountInGB} Go";
static String m61(email) => "Ceci est l\'ID de vérification de ${email}"; static String m63(email) => "Ceci est l\'ID de vérification de ${email}";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '0 jour', one: '1 jour', other: '${count} jours')}"; "${Intl.plural(count, zero: '0 jour', one: '1 jour', other: '${count} jours')}";
static String m63(endDate) => "Valable jusqu\'au ${endDate}"; static String m65(endDate) => "Valable jusqu\'au ${endDate}";
static String m64(email) => "Vérifier ${email}"; static String m66(email) => "Vérifier ${email}";
static String m65(email) => static String m67(email) =>
"Nous avons envoyé un e-mail à <green>${email}</green>"; "Nous avons envoyé un e-mail à <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: 'il y a ${count} an', other: 'il y a ${count} ans')}"; "${Intl.plural(count, one: 'il y a ${count} an', other: 'il y a ${count} ans')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"Vous avez libéré ${storageSaved} avec succès !"; "Vous avez libéré ${storageSaved} avec succès !";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -221,9 +227,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Ajouter un nouvel email"), MessageLookupByLibrary.simpleMessage("Ajouter un nouvel email"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Ajouter un collaborateur"), MessageLookupByLibrary.simpleMessage("Ajouter un collaborateur"),
"addCollaborators": m0,
"addFromDevice": "addFromDevice":
MessageLookupByLibrary.simpleMessage("Ajouter depuis l\'appareil"), MessageLookupByLibrary.simpleMessage("Ajouter depuis l\'appareil"),
"addItem": m0, "addItem": m2,
"addLocation": "addLocation":
MessageLookupByLibrary.simpleMessage("Ajouter la localisation"), MessageLookupByLibrary.simpleMessage("Ajouter la localisation"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Ajouter"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Ajouter"),
@ -243,11 +250,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Ajouter à un album masqué"), MessageLookupByLibrary.simpleMessage("Ajouter à un album masqué"),
"addViewer": "addViewer":
MessageLookupByLibrary.simpleMessage("Ajouter un observateur"), MessageLookupByLibrary.simpleMessage("Ajouter un observateur"),
"addViewers": m1,
"addYourPhotosNow": MessageLookupByLibrary.simpleMessage( "addYourPhotosNow": MessageLookupByLibrary.simpleMessage(
"Ajoutez vos photos maintenant"), "Ajoutez vos photos maintenant"),
"addedAs": MessageLookupByLibrary.simpleMessage("Ajouté comme"), "addedAs": MessageLookupByLibrary.simpleMessage("Ajouté comme"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": "addingToFavorites":
MessageLookupByLibrary.simpleMessage("Ajout aux favoris..."), MessageLookupByLibrary.simpleMessage("Ajout aux favoris..."),
"advanced": MessageLookupByLibrary.simpleMessage("Avancé"), "advanced": MessageLookupByLibrary.simpleMessage("Avancé"),
@ -258,7 +266,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("Après 1 semaine"), "after1Week": MessageLookupByLibrary.simpleMessage("Après 1 semaine"),
"after1Year": MessageLookupByLibrary.simpleMessage("Après 1 an"), "after1Year": MessageLookupByLibrary.simpleMessage("Après 1 an"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Propriétaire"), "albumOwner": MessageLookupByLibrary.simpleMessage("Propriétaire"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Titre de l\'album"), "albumTitle": MessageLookupByLibrary.simpleMessage("Titre de l\'album"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Album mis à jour"), MessageLookupByLibrary.simpleMessage("Album mis à jour"),
@ -293,7 +301,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Android, iOS, Web, Ordinateur"), "Android, iOS, Web, Ordinateur"),
"androidSignInTitle": "androidSignInTitle":
MessageLookupByLibrary.simpleMessage("Authentification requise"), MessageLookupByLibrary.simpleMessage("Authentification requise"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("Appliquer"), "apply": MessageLookupByLibrary.simpleMessage("Appliquer"),
"applyCodeTitle": "applyCodeTitle":
@ -383,10 +391,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Vous ne pouvez supprimer que les fichiers que vous possédez"), "Vous ne pouvez supprimer que les fichiers que vous possédez"),
"cancel": MessageLookupByLibrary.simpleMessage("Annuler"), "cancel": MessageLookupByLibrary.simpleMessage("Annuler"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Annuler l\'abonnement"), MessageLookupByLibrary.simpleMessage("Annuler l\'abonnement"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage( "cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage(
"Les fichiers partagés ne peuvent pas être supprimés"), "Les fichiers partagés ne peuvent pas être supprimés"),
"centerPoint": MessageLookupByLibrary.simpleMessage("Point central"), "centerPoint": MessageLookupByLibrary.simpleMessage("Point central"),
@ -409,7 +417,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Réclamer le stockage gratuit"), "Réclamer le stockage gratuit"),
"claimMore": MessageLookupByLibrary.simpleMessage("Réclamez plus !"), "claimMore": MessageLookupByLibrary.simpleMessage("Réclamez plus !"),
"claimed": MessageLookupByLibrary.simpleMessage("Réclamée"), "claimed": MessageLookupByLibrary.simpleMessage("Réclamée"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"clearCaches": "clearCaches":
MessageLookupByLibrary.simpleMessage("Nettoyer le cache"), MessageLookupByLibrary.simpleMessage("Nettoyer le cache"),
"click": MessageLookupByLibrary.simpleMessage("• Click"), "click": MessageLookupByLibrary.simpleMessage("• Click"),
@ -430,7 +438,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Créez un lien pour permettre aux gens d\'ajouter et de voir des photos dans votre album partagé sans avoir besoin d\'une application ente ou d\'un compte. Idéal pour collecter des photos d\'événement."), "Créez un lien pour permettre aux gens d\'ajouter et de voir des photos dans votre album partagé sans avoir besoin d\'une application ente ou d\'un compte. Idéal pour collecter des photos d\'événement."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Lien collaboratif"), MessageLookupByLibrary.simpleMessage("Lien collaboratif"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Collaborateur"), "collaborator": MessageLookupByLibrary.simpleMessage("Collaborateur"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -458,10 +466,10 @@ class MessageLookup extends MessageLookupByLibrary {
"Confirmer la clé de récupération"), "Confirmer la clé de récupération"),
"confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage( "confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage(
"Confirmer la clé de récupération"), "Confirmer la clé de récupération"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contacter l\'assistance"), MessageLookupByLibrary.simpleMessage("Contacter l\'assistance"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
"contents": MessageLookupByLibrary.simpleMessage("Contenus"), "contents": MessageLookupByLibrary.simpleMessage("Contenus"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Continuer"), "continueLabel": MessageLookupByLibrary.simpleMessage("Continuer"),
@ -542,12 +550,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Supprimer de l\'appareil"), MessageLookupByLibrary.simpleMessage("Supprimer de l\'appareil"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Supprimer de ente"), MessageLookupByLibrary.simpleMessage("Supprimer de ente"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": "deleteLocation":
MessageLookupByLibrary.simpleMessage("Supprimer la localisation"), MessageLookupByLibrary.simpleMessage("Supprimer la localisation"),
"deletePhotos": "deletePhotos":
MessageLookupByLibrary.simpleMessage("Supprimer des photos"), MessageLookupByLibrary.simpleMessage("Supprimer des photos"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Il manque une fonction clé dont j\'ai besoin"), "Il manque une fonction clé dont j\'ai besoin"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -581,7 +589,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Les téléspectateurs peuvent toujours prendre des captures d\'écran ou enregistrer une copie de vos photos en utilisant des outils externes"), "Les téléspectateurs peuvent toujours prendre des captures d\'écran ou enregistrer une copie de vos photos en utilisant des outils externes"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Veuillez remarquer"), MessageLookupByLibrary.simpleMessage("Veuillez remarquer"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage( "disableTwofactor": MessageLookupByLibrary.simpleMessage(
"Désactiver la double-authentification"), "Désactiver la double-authentification"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -602,9 +610,9 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Échec du téléchargement"), MessageLookupByLibrary.simpleMessage("Échec du téléchargement"),
"downloading": "downloading":
MessageLookupByLibrary.simpleMessage("Téléchargement en cours..."), MessageLookupByLibrary.simpleMessage("Téléchargement en cours..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Éditer"), "edit": MessageLookupByLibrary.simpleMessage("Éditer"),
"editLocation": MessageLookupByLibrary.simpleMessage("Edit location"), "editLocation": MessageLookupByLibrary.simpleMessage("Edit location"),
"editLocationTagTitle": "editLocationTagTitle":
@ -616,8 +624,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Edits to location will only be seen within Ente"), "Edits to location will only be seen within Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("éligible"), "eligible": MessageLookupByLibrary.simpleMessage("éligible"),
"email": MessageLookupByLibrary.simpleMessage("E-mail"), "email": MessageLookupByLibrary.simpleMessage("E-mail"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": MessageLookupByLibrary.simpleMessage( "emailVerificationToggle": MessageLookupByLibrary.simpleMessage(
"Vérification de l\'adresse e-mail"), "Vérification de l\'adresse e-mail"),
"emailYourLogs": "emailYourLogs":
@ -716,8 +724,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("Types de fichiers"), "fileTypes": MessageLookupByLibrary.simpleMessage("Types de fichiers"),
"fileTypesAndNames": "fileTypesAndNames":
MessageLookupByLibrary.simpleMessage("Types et noms de fichiers"), MessageLookupByLibrary.simpleMessage("Types et noms de fichiers"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": "filesDeleted":
MessageLookupByLibrary.simpleMessage("Fichiers supprimés"), MessageLookupByLibrary.simpleMessage("Fichiers supprimés"),
"flip": MessageLookupByLibrary.simpleMessage("Retourner"), "flip": MessageLookupByLibrary.simpleMessage("Retourner"),
@ -727,19 +735,19 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Mot de passe oublié"), MessageLookupByLibrary.simpleMessage("Mot de passe oublié"),
"freeStorageClaimed": "freeStorageClaimed":
MessageLookupByLibrary.simpleMessage("Stockage gratuit réclamé"), MessageLookupByLibrary.simpleMessage("Stockage gratuit réclamé"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": "freeStorageUsable":
MessageLookupByLibrary.simpleMessage("Stockage gratuit utilisable"), MessageLookupByLibrary.simpleMessage("Stockage gratuit utilisable"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Essai gratuit"), "freeTrial": MessageLookupByLibrary.simpleMessage("Essai gratuit"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage( "freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage(
"Libérer de l\'espace sur l\'appareil"), "Libérer de l\'espace sur l\'appareil"),
"freeUpSpace": "freeUpSpace":
MessageLookupByLibrary.simpleMessage("Libérer de l\'espace"), MessageLookupByLibrary.simpleMessage("Libérer de l\'espace"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Jusqu\'à 1000 souvenirs affichés dans la galerie"), "Jusqu\'à 1000 souvenirs affichés dans la galerie"),
"general": MessageLookupByLibrary.simpleMessage("Général"), "general": MessageLookupByLibrary.simpleMessage("Général"),
@ -806,7 +814,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Il semble qu\'une erreur s\'est produite. Veuillez réessayer après un certain temps. Si l\'erreur persiste, veuillez contacter notre équipe d\'assistance."), "Il semble qu\'une erreur s\'est produite. Veuillez réessayer après un certain temps. Si l\'erreur persiste, veuillez contacter notre équipe d\'assistance."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Les éléments montrent le nombre de jours restants avant la suppression définitive"), "Les éléments montrent le nombre de jours restants avant la suppression définitive"),
@ -835,7 +843,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Limite d\'appareil"), MessageLookupByLibrary.simpleMessage("Limite d\'appareil"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Activé"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Activé"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Expiré"), "linkExpired": MessageLookupByLibrary.simpleMessage("Expiré"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": "linkExpiry":
MessageLookupByLibrary.simpleMessage("Expiration du lien"), MessageLookupByLibrary.simpleMessage("Expiration du lien"),
"linkHasExpired": "linkHasExpired":
@ -884,6 +892,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Déconnexion"), "logout": MessageLookupByLibrary.simpleMessage("Déconnexion"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Cela enverra des logs pour nous aider à déboguer votre problème. Veuillez noter que les noms de fichiers seront inclus pour aider à suivre les problèmes avec des fichiers spécifiques."), "Cela enverra des logs pour nous aider à déboguer votre problème. Veuillez noter que les noms de fichiers seront inclus pour aider à suivre les problèmes avec des fichiers spécifiques."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": "longpressOnAnItemToViewInFullscreen":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Appuyez longuement sur un élément pour le voir en plein écran"), "Appuyez longuement sur un élément pour le voir en plein écran"),
@ -901,7 +912,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Cartes"), "maps": MessageLookupByLibrary.simpleMessage("Cartes"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Marchandise"), "merchandise": MessageLookupByLibrary.simpleMessage("Marchandise"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobile, Web, Ordinateur"), MessageLookupByLibrary.simpleMessage("Mobile, Web, Ordinateur"),
@ -912,12 +923,12 @@ class MessageLookup extends MessageLookupByLibrary {
"Modifiez votre requête, ou essayez de rechercher"), "Modifiez votre requête, ou essayez de rechercher"),
"moments": MessageLookupByLibrary.simpleMessage("Souvenirs"), "moments": MessageLookupByLibrary.simpleMessage("Souvenirs"),
"monthly": MessageLookupByLibrary.simpleMessage("Mensuel"), "monthly": MessageLookupByLibrary.simpleMessage("Mensuel"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": "moveToAlbum":
MessageLookupByLibrary.simpleMessage("Déplacer vers l\'album"), MessageLookupByLibrary.simpleMessage("Déplacer vers l\'album"),
"moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage( "moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage(
"Déplacer vers un album masqué"), "Déplacer vers un album masqué"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": "movedToTrash":
MessageLookupByLibrary.simpleMessage("Déplacé dans la corbeille"), MessageLookupByLibrary.simpleMessage("Déplacé dans la corbeille"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -981,15 +992,15 @@ class MessageLookup extends MessageLookupByLibrary {
"Le mot de passe a été modifié"), "Le mot de passe a été modifié"),
"passwordLock": "passwordLock":
MessageLookupByLibrary.simpleMessage("Mot de passe verrou"), MessageLookupByLibrary.simpleMessage("Mot de passe verrou"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Nous ne stockons pas ce mot de passe, donc si vous l\'oubliez, <underline>nous ne pouvons pas déchiffrer vos données</underline>"), "Nous ne stockons pas ce mot de passe, donc si vous l\'oubliez, <underline>nous ne pouvons pas déchiffrer vos données</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Détails de paiement"), MessageLookupByLibrary.simpleMessage("Détails de paiement"),
"paymentFailed": "paymentFailed":
MessageLookupByLibrary.simpleMessage("Échec du paiement"), MessageLookupByLibrary.simpleMessage("Échec du paiement"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingSync": "pendingSync":
MessageLookupByLibrary.simpleMessage("Synchronisation en attente"), MessageLookupByLibrary.simpleMessage("Synchronisation en attente"),
"peopleUsingYourCode": MessageLookupByLibrary.simpleMessage( "peopleUsingYourCode": MessageLookupByLibrary.simpleMessage(
@ -1012,7 +1023,7 @@ class MessageLookup extends MessageLookupByLibrary {
"pickCenterPoint": MessageLookupByLibrary.simpleMessage( "pickCenterPoint": MessageLookupByLibrary.simpleMessage(
"Sélectionner le point central"), "Sélectionner le point central"),
"pinAlbum": MessageLookupByLibrary.simpleMessage("Épingler l\'album"), "pinAlbum": MessageLookupByLibrary.simpleMessage("Épingler l\'album"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("Abonnement au PlayStore"), MessageLookupByLibrary.simpleMessage("Abonnement au PlayStore"),
"pleaseContactSupportAndWeWillBeHappyToHelp": "pleaseContactSupportAndWeWillBeHappyToHelp":
@ -1021,12 +1032,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Merci de contacter l\'assistance si cette erreur persiste"), "Merci de contacter l\'assistance si cette erreur persiste"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage( "pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage(
"Veuillez accorder la permission"), "Veuillez accorder la permission"),
"pleaseLoginAgain": "pleaseLoginAgain":
MessageLookupByLibrary.simpleMessage("Veuillez vous reconnecter"), MessageLookupByLibrary.simpleMessage("Veuillez vous reconnecter"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": "pleaseTryAgain":
MessageLookupByLibrary.simpleMessage("Veuillez réessayer"), MessageLookupByLibrary.simpleMessage("Veuillez réessayer"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -1062,7 +1073,7 @@ class MessageLookup extends MessageLookupByLibrary {
"rateTheApp": "rateTheApp":
MessageLookupByLibrary.simpleMessage("Évaluer l\'application"), MessageLookupByLibrary.simpleMessage("Évaluer l\'application"),
"rateUs": MessageLookupByLibrary.simpleMessage("Évaluez-nous"), "rateUs": MessageLookupByLibrary.simpleMessage("Évaluez-nous"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Récupérer"), "recover": MessageLookupByLibrary.simpleMessage("Récupérer"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Récupérer un compte"), MessageLookupByLibrary.simpleMessage("Récupérer un compte"),
@ -1093,7 +1104,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Donnez ce code à vos amis"), "1. Donnez ce code à vos amis"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Ils s\'inscrivent à une offre payante"), "2. Ils s\'inscrivent à une offre payante"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Parrainages"), "referrals": MessageLookupByLibrary.simpleMessage("Parrainages"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Les recommandations sont actuellement en pause"), "Les recommandations sont actuellement en pause"),
@ -1119,7 +1130,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Supprimer le lien"), "removeLink": MessageLookupByLibrary.simpleMessage("Supprimer le lien"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Supprimer le participant"), MessageLookupByLibrary.simpleMessage("Supprimer le participant"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Supprimer le lien public"), MessageLookupByLibrary.simpleMessage("Supprimer le lien public"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1135,7 +1146,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Renommer le fichier"), MessageLookupByLibrary.simpleMessage("Renommer le fichier"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Renouveler labonnement"), MessageLookupByLibrary.simpleMessage("Renouveler labonnement"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Signaler un bug"), "reportABug": MessageLookupByLibrary.simpleMessage("Signaler un bug"),
"reportBug": MessageLookupByLibrary.simpleMessage("Signaler un bug"), "reportBug": MessageLookupByLibrary.simpleMessage("Signaler un bug"),
"resendEmail": "resendEmail":
@ -1200,7 +1211,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Grouper les photos qui sont prises dans un certain angle d\'une photo"), "Grouper les photos qui sont prises dans un certain angle d\'une photo"),
"searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage(
"Invitez des gens, et vous verrez ici toutes les photos qu\'ils partagent"), "Invitez des gens, et vous verrez ici toutes les photos qu\'ils partagent"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("Sécurité"), "security": MessageLookupByLibrary.simpleMessage("Sécurité"),
"selectALocation": "selectALocation":
MessageLookupByLibrary.simpleMessage("Select a location"), MessageLookupByLibrary.simpleMessage("Select a location"),
@ -1229,8 +1240,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Les éléments sélectionnés seront supprimés de tous les albums et déplacés dans la corbeille."), "Les éléments sélectionnés seront supprimés de tous les albums et déplacés dans la corbeille."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Envoyer"), "send": MessageLookupByLibrary.simpleMessage("Envoyer"),
"sendEmail": MessageLookupByLibrary.simpleMessage("Envoyer un e-mail"), "sendEmail": MessageLookupByLibrary.simpleMessage("Envoyer un e-mail"),
"sendInvite": "sendInvite":
@ -1256,16 +1267,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": MessageLookupByLibrary.simpleMessage( "shareAnAlbumNow": MessageLookupByLibrary.simpleMessage(
"Partagez un album maintenant"), "Partagez un album maintenant"),
"shareLink": MessageLookupByLibrary.simpleMessage("Partager le lien"), "shareLink": MessageLookupByLibrary.simpleMessage("Partager le lien"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Partager uniquement avec les personnes que vous voulez"), "Partager uniquement avec les personnes que vous voulez"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Téléchargez ente pour que nous puissions facilement partager des photos et des vidéos de qualité originale\n\nhttps://ente.io"), "Téléchargez ente pour que nous puissions facilement partager des photos et des vidéos de qualité originale\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Partager avec des utilisateurs non-ente"), "Partager avec des utilisateurs non-ente"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage( "shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage(
"Partagez votre premier album"), "Partagez votre premier album"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1276,7 +1287,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nouvelles photos partagées"), MessageLookupByLibrary.simpleMessage("Nouvelles photos partagées"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Recevoir des notifications quand quelqu\'un ajoute une photo à un album partagé dont vous faites partie"), "Recevoir des notifications quand quelqu\'un ajoute une photo à un album partagé dont vous faites partie"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": "sharedWithMe":
MessageLookupByLibrary.simpleMessage("Partagés avec moi"), MessageLookupByLibrary.simpleMessage("Partagés avec moi"),
"sharedWithYou": "sharedWithYou":
@ -1286,11 +1297,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Montrer les souvenirs"), MessageLookupByLibrary.simpleMessage("Montrer les souvenirs"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"J\'accepte les <u-terms>conditions d\'utilisation</u-terms> et la <u-policy>politique de confidentialité</u-policy>"), "J\'accepte les <u-terms>conditions d\'utilisation</u-terms> et la <u-policy>politique de confidentialité</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Elle sera supprimée de tous les albums."), "Elle sera supprimée de tous les albums."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Ignorer"), "skip": MessageLookupByLibrary.simpleMessage("Ignorer"),
"social": MessageLookupByLibrary.simpleMessage("Réseaux Sociaux"), "social": MessageLookupByLibrary.simpleMessage("Réseaux Sociaux"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1330,14 +1341,14 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("Stockage"), "storage": MessageLookupByLibrary.simpleMessage("Stockage"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Famille"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Famille"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Vous"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Vous"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": "storageLimitExceeded":
MessageLookupByLibrary.simpleMessage("Limite de stockage atteinte"), MessageLookupByLibrary.simpleMessage("Limite de stockage atteinte"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": "strongStrength":
MessageLookupByLibrary.simpleMessage("Securité forte"), MessageLookupByLibrary.simpleMessage("Securité forte"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("S\'abonner"), "subscribe": MessageLookupByLibrary.simpleMessage("S\'abonner"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Il semble que votre abonnement ait expiré. Veuillez vous abonner pour activer le partage."), "Il semble que votre abonnement ait expiré. Veuillez vous abonner pour activer le partage."),
@ -1354,7 +1365,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": MessageLookupByLibrary.simpleMessage( "suggestFeatures": MessageLookupByLibrary.simpleMessage(
"Suggérer des fonctionnalités"), "Suggérer des fonctionnalités"),
"support": MessageLookupByLibrary.simpleMessage("Support"), "support": MessageLookupByLibrary.simpleMessage("Support"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Synchronisation arrêtée ?"), MessageLookupByLibrary.simpleMessage("Synchronisation arrêtée ?"),
"syncing": MessageLookupByLibrary.simpleMessage( "syncing": MessageLookupByLibrary.simpleMessage(
@ -1383,7 +1394,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Ces éléments seront supprimés de votre appareil."), "Ces éléments seront supprimés de votre appareil."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Ils seront supprimés de tous les albums."), "Ils seront supprimés de tous les albums."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1399,7 +1410,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Cette adresse mail est déjà utilisé"), "Cette adresse mail est déjà utilisé"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Cette image n\'a pas de données exif"), "Cette image n\'a pas de données exif"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"Ceci est votre ID de vérification"), "Ceci est votre ID de vérification"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1415,7 +1426,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("total"), "total": MessageLookupByLibrary.simpleMessage("total"),
"totalSize": MessageLookupByLibrary.simpleMessage("Taille totale"), "totalSize": MessageLookupByLibrary.simpleMessage("Taille totale"),
"trash": MessageLookupByLibrary.simpleMessage("Corbeille"), "trash": MessageLookupByLibrary.simpleMessage("Corbeille"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Réessayer"), "tryAgain": MessageLookupByLibrary.simpleMessage("Réessayer"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Activez la sauvegarde pour télécharger automatiquement les fichiers ajoutés à ce dossier de l\'appareil sur ente."), "Activez la sauvegarde pour télécharger automatiquement les fichiers ajoutés à ce dossier de l\'appareil sur ente."),
@ -1473,7 +1484,7 @@ class MessageLookup extends MessageLookupByLibrary {
"useSelectedPhoto": MessageLookupByLibrary.simpleMessage( "useSelectedPhoto": MessageLookupByLibrary.simpleMessage(
"Utiliser la photo sélectionnée"), "Utiliser la photo sélectionnée"),
"usedSpace": MessageLookupByLibrary.simpleMessage("Mémoire utilisée"), "usedSpace": MessageLookupByLibrary.simpleMessage("Mémoire utilisée"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"La vérification a échouée, veuillez réessayer"), "La vérification a échouée, veuillez réessayer"),
@ -1482,7 +1493,7 @@ class MessageLookup extends MessageLookupByLibrary {
"verify": MessageLookupByLibrary.simpleMessage("Vérifier"), "verify": MessageLookupByLibrary.simpleMessage("Vérifier"),
"verifyEmail": "verifyEmail":
MessageLookupByLibrary.simpleMessage("Vérifier l\'email"), MessageLookupByLibrary.simpleMessage("Vérifier l\'email"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Vérifier"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Vérifier"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Vérifier le mot de passe"), MessageLookupByLibrary.simpleMessage("Vérifier le mot de passe"),
@ -1511,11 +1522,11 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Nous ne prenons pas en charge l\'édition des photos et des albums que vous ne possédez pas encore"), "Nous ne prenons pas en charge l\'édition des photos et des albums que vous ne possédez pas encore"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Securité Faible"), "weakStrength": MessageLookupByLibrary.simpleMessage("Securité Faible"),
"welcomeBack": MessageLookupByLibrary.simpleMessage("Bienvenue !"), "welcomeBack": MessageLookupByLibrary.simpleMessage("Bienvenue !"),
"yearly": MessageLookupByLibrary.simpleMessage("Annuel"), "yearly": MessageLookupByLibrary.simpleMessage("Annuel"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Oui"), "yes": MessageLookupByLibrary.simpleMessage("Oui"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Oui, annuler"), "yesCancel": MessageLookupByLibrary.simpleMessage("Oui, annuler"),
"yesConvertToViewer": MessageLookupByLibrary.simpleMessage( "yesConvertToViewer": MessageLookupByLibrary.simpleMessage(
@ -1546,7 +1557,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Vous ne pouvez pas partager avec vous-même"), "Vous ne pouvez pas partager avec vous-même"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"Vous n\'avez aucun élément archivé."), "Vous n\'avez aucun élément archivé."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": "yourAccountHasBeenDeleted":
MessageLookupByLibrary.simpleMessage("Votre compte a été supprimé"), MessageLookupByLibrary.simpleMessage("Votre compte a été supprimé"),
"yourMap": MessageLookupByLibrary.simpleMessage("Votre carte"), "yourMap": MessageLookupByLibrary.simpleMessage("Votre carte"),

View file

@ -21,24 +21,30 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'it'; String get localeName => 'it';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Aggiungi elemento', other: 'Aggiungi elementi')}"; "${Intl.plural(count, one: 'Aggiungi elemento', other: 'Aggiungi elementi')}";
static String m2(emailOrName) => "Aggiunto da ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Aggiunto con successo su ${albumName}"; static String m4(emailOrName) => "Aggiunto da ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Aggiunto con successo su ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'Nessun partecipante', one: '1 Partecipante', other: '${count} Partecipanti')}"; "${Intl.plural(count, zero: 'Nessun partecipante', one: '1 Partecipante', other: '${count} Partecipanti')}";
static String m5(versionValue) => "Versione: ${versionValue}"; static String m7(versionValue) => "Versione: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Annulla prima il tuo abbonamento esistente da ${paymentProvider}"; "Annulla prima il tuo abbonamento esistente da ${paymentProvider}";
static String m7(user) => static String m9(user) =>
"${user} non sarà più in grado di aggiungere altre foto a questo album\n\nSarà ancora in grado di rimuovere le foto esistenti aggiunte da lui o lei"; "${user} non sarà più in grado di aggiungere altre foto a questo album\n\nSarà ancora in grado di rimuovere le foto esistenti aggiunte da lui o lei";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Il tuo piano famiglia ha già richiesto ${storageAmountInGb} GB finora', 'Il tuo piano famiglia ha già richiesto ${storageAmountInGb} GB finora',
@ -46,158 +52,158 @@ class MessageLookup extends MessageLookupByLibrary {
'other': 'Hai già richiesto ${storageAmountInGb} GB finora!', 'other': 'Hai già richiesto ${storageAmountInGb} GB finora!',
})}"; })}";
static String m9(albumName) => "Link collaborativo creato per ${albumName}"; static String m11(albumName) => "Link collaborativo creato per ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Contatta <green>${familyAdminEmail}</green> per gestire il tuo abbonamento"; "Contatta <green>${familyAdminEmail}</green> per gestire il tuo abbonamento";
static String m11(provider) => static String m13(provider) =>
"Scrivi all\'indirizzo support@ente.io per gestire il tuo abbonamento ${provider}."; "Scrivi all\'indirizzo support@ente.io per gestire il tuo abbonamento ${provider}.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Elimina ${count} elemento', other: 'Elimina ${count} elementi')}"; "${Intl.plural(count, one: 'Elimina ${count} elemento', other: 'Elimina ${count} elementi')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Eliminazione di ${currentlyDeleting} / ${totalCount}"; "Eliminazione di ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Questo rimuoverà il link pubblico per accedere a \"${albumName}\"."; "Questo rimuoverà il link pubblico per accedere a \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Per favore invia un\'email a ${supportEmail} dall\'indirizzo email con cui ti sei registrato"; "Per favore invia un\'email a ${supportEmail} dall\'indirizzo email con cui ti sei registrato";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"Hai ripulito ${Intl.plural(count, one: '${count} doppione', other: '${count} doppioni')}, salvando (${storageSaved}!)"; "Hai ripulito ${Intl.plural(count, one: '${count} doppione', other: '${count} doppioni')}, salvando (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} file, ${formattedSize} l\'uno"; "${count} file, ${formattedSize} l\'uno";
static String m18(newEmail) => "Email cambiata in ${newEmail}"; static String m20(newEmail) => "Email cambiata in ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} non ha un account su ente.\n\nInvia un invito per condividere foto."; "${email} non ha un account su ente.\n\nInvia un invito per condividere foto.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 file', other: '${formattedNumber} file')} di quest\'album sono stati salvati in modo sicuro"; "${Intl.plural(count, one: '1 file', other: '${formattedNumber} file')} di quest\'album sono stati salvati in modo sicuro";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 file', other: '${formattedNumber} file')} di quest\'album sono stati salvati in modo sicuro"; "${Intl.plural(count, one: '1 file', other: '${formattedNumber} file')} di quest\'album sono stati salvati in modo sicuro";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB ogni volta che qualcuno si iscrive a un piano a pagamento e applica il tuo codice"; "${storageAmountInGB} GB ogni volta che qualcuno si iscrive a un piano a pagamento e applica il tuo codice";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} liberi"; "${freeAmount} ${storageUnit} liberi";
static String m24(endDate) => "La prova gratuita termina il ${endDate}"; static String m26(endDate) => "La prova gratuita termina il ${endDate}";
static String m25(count) => static String m27(count) =>
"Puoi ancora accedere a ${Intl.plural(count, one: '', other: 'loro')} su ente finché hai un abbonamento attivo"; "Puoi ancora accedere a ${Intl.plural(count, one: '', other: 'loro')} su ente finché hai un abbonamento attivo";
static String m26(sizeInMBorGB) => "Libera ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "Libera ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Può essere cancellata per liberare ${formattedSize}', other: 'Possono essere cancellati per liberare ${formattedSize}')}"; "${Intl.plural(count, one: 'Può essere cancellata per liberare ${formattedSize}', other: 'Possono essere cancellati per liberare ${formattedSize}')}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} elemento', other: '${count} elementi')}"; "${Intl.plural(count, one: '${count} elemento', other: '${count} elementi')}";
static String m30(expiryTime) => "Il link scadrà il ${expiryTime}"; static String m32(expiryTime) => "Il link scadrà il ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, one: '${formattedCount} ricordo', other: '${formattedCount} ricordi')}"; "${Intl.plural(count, one: '${formattedCount} ricordo', other: '${formattedCount} ricordi')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Sposta elemento', other: 'Sposta elementi')}"; "${Intl.plural(count, one: 'Sposta elemento', other: 'Sposta elementi')}";
static String m33(albumName) => "Spostato con successo su ${albumName}"; static String m35(albumName) => "Spostato con successo su ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Sicurezza password: ${passwordStrengthValue}"; "Sicurezza password: ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Si prega di parlare con il supporto di ${providerName} se ti è stato addebitato qualcosa"; "Si prega di parlare con il supporto di ${providerName} se ti è stato addebitato qualcosa";
static String m36(reason) => static String m38(reason) =>
"Purtroppo il tuo pagamento non è riuscito a causa di ${reason}"; "Purtroppo il tuo pagamento non è riuscito a causa di ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Prova gratuita valida fino al ${endDate}.\nPuoi scegliere un piano a pagamento in seguito."; "Prova gratuita valida fino al ${endDate}.\nPuoi scegliere un piano a pagamento in seguito.";
static String m38(toEmail) => "Per favore invia un\'email a ${toEmail}"; static String m40(toEmail) => "Per favore invia un\'email a ${toEmail}";
static String m39(toEmail) => "Invia i log a \n${toEmail}"; static String m41(toEmail) => "Invia i log a \n${toEmail}";
static String m40(storeName) => "Valutaci su ${storeName}"; static String m42(storeName) => "Valutaci su ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"3. Ottenete entrambi ${storageInGB} GB* gratis"; "3. Ottenete entrambi ${storageInGB} GB* gratis";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} verrà rimosso da questo album condiviso\n\nQualsiasi foto aggiunta dall\'utente verrà rimossa dall\'album"; "${userEmail} verrà rimosso da questo album condiviso\n\nQualsiasi foto aggiunta dall\'utente verrà rimossa dall\'album";
static String m43(endDate) => "Si rinnova il ${endDate}"; static String m45(endDate) => "Si rinnova il ${endDate}";
static String m45(count) => "${count} selezionati"; static String m47(count) => "${count} selezionati";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} selezionato (${yourCount} tuoi)"; "${count} selezionato (${yourCount} tuoi)";
static String m47(verificationID) => static String m49(verificationID) =>
"Ecco il mio ID di verifica: ${verificationID} per ente.io."; "Ecco il mio ID di verifica: ${verificationID} per ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hey, puoi confermare che questo è il tuo ID di verifica: ${verificationID} su ente.io"; "Hey, puoi confermare che questo è il tuo ID di verifica: ${verificationID} su ente.io";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente referral code: ${referralCode} \n\nApplicalo in Impostazioni → Generale → Referral per ottenere ${referralStorageInGB} GB gratis dopo la registrazione di un piano a pagamento\n\nhttps://ente.io"; "ente referral code: ${referralCode} \n\nApplicalo in Impostazioni → Generale → Referral per ottenere ${referralStorageInGB} GB gratis dopo la registrazione di un piano a pagamento\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Condividi con persone specifiche', one: 'Condividi con una persona', other: 'Condividi con ${numberOfPeople} persone')}"; "${Intl.plural(numberOfPeople, zero: 'Condividi con persone specifiche', one: 'Condividi con una persona', other: 'Condividi con ${numberOfPeople} persone')}";
static String m51(emailIDs) => "Condiviso con ${emailIDs}"; static String m53(emailIDs) => "Condiviso con ${emailIDs}";
static String m52(fileType) => static String m54(fileType) =>
"Questo ${fileType} verrà eliminato dal tuo dispositivo."; "Questo ${fileType} verrà eliminato dal tuo dispositivo.";
static String m53(fileType) => static String m55(fileType) =>
"Questo ${fileType} è sia su ente che sul tuo dispositivo."; "Questo ${fileType} è sia su ente che sul tuo dispositivo.";
static String m54(fileType) => "Questo ${fileType} verrà eliminato su ente."; static String m56(fileType) => "Questo ${fileType} verrà eliminato su ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} di ${totalAmount} ${totalStorageUnit} utilizzati"; "${usedAmount} ${usedStorageUnit} di ${totalAmount} ${totalStorageUnit} utilizzati";
static String m57(id) => static String m59(id) =>
"Il tuo ${id} è già collegato ad un altro account ente.\nSe desideri utilizzare il tuo ${id} con questo account, contatta il nostro supporto\'\'"; "Il tuo ${id} è già collegato ad un altro account ente.\nSe desideri utilizzare il tuo ${id} con questo account, contatta il nostro supporto\'\'";
static String m58(endDate) => "L\'abbonamento verrà cancellato il ${endDate}"; static String m60(endDate) => "L\'abbonamento verrà cancellato il ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} ricordi conservati"; "${completed}/${total} ricordi conservati";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"Anche loro riceveranno ${storageAmountInGB} GB"; "Anche loro riceveranno ${storageAmountInGB} GB";
static String m61(email) => "Questo è l\'ID di verifica di ${email}"; static String m63(email) => "Questo è l\'ID di verifica di ${email}";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1 giorno', other: '${count} giorni')}"; "${Intl.plural(count, zero: '', one: '1 giorno', other: '${count} giorni')}";
static String m63(endDate) => "Valido fino al ${endDate}"; static String m65(endDate) => "Valido fino al ${endDate}";
static String m64(email) => "Verifica ${email}"; static String m66(email) => "Verifica ${email}";
static String m65(email) => static String m67(email) =>
"Abbiamo inviato una mail a <green>${email}</green>"; "Abbiamo inviato una mail a <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} anno fa', other: '${count} anni fa')}"; "${Intl.plural(count, one: '${count} anno fa', other: '${count} anni fa')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"Hai liberato con successo ${storageSaved}!"; "Hai liberato con successo ${storageSaved}!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -216,9 +222,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Aggiungi una nuova email"), MessageLookupByLibrary.simpleMessage("Aggiungi una nuova email"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Aggiungi collaboratore"), MessageLookupByLibrary.simpleMessage("Aggiungi collaboratore"),
"addCollaborators": m0,
"addFromDevice": "addFromDevice":
MessageLookupByLibrary.simpleMessage("Aggiungi dal dispositivo"), MessageLookupByLibrary.simpleMessage("Aggiungi dal dispositivo"),
"addItem": m0, "addItem": m2,
"addLocation": MessageLookupByLibrary.simpleMessage("Aggiungi luogo"), "addLocation": MessageLookupByLibrary.simpleMessage("Aggiungi luogo"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Aggiungi"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Aggiungi"),
"addMore": MessageLookupByLibrary.simpleMessage("Aggiungi altri"), "addMore": MessageLookupByLibrary.simpleMessage("Aggiungi altri"),
@ -235,9 +242,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Aggiungi ad album nascosto"), MessageLookupByLibrary.simpleMessage("Aggiungi ad album nascosto"),
"addViewer": "addViewer":
MessageLookupByLibrary.simpleMessage("Aggiungi in sola lettura"), MessageLookupByLibrary.simpleMessage("Aggiungi in sola lettura"),
"addViewers": m1,
"addedAs": MessageLookupByLibrary.simpleMessage("Aggiunto come"), "addedAs": MessageLookupByLibrary.simpleMessage("Aggiunto come"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": "addingToFavorites":
MessageLookupByLibrary.simpleMessage("Aggiunto ai preferiti..."), MessageLookupByLibrary.simpleMessage("Aggiunto ai preferiti..."),
"advanced": MessageLookupByLibrary.simpleMessage("Avanzate"), "advanced": MessageLookupByLibrary.simpleMessage("Avanzate"),
@ -249,7 +257,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Dopo una settimana"), MessageLookupByLibrary.simpleMessage("Dopo una settimana"),
"after1Year": MessageLookupByLibrary.simpleMessage("Dopo un anno"), "after1Year": MessageLookupByLibrary.simpleMessage("Dopo un anno"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Proprietario"), "albumOwner": MessageLookupByLibrary.simpleMessage("Proprietario"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Titolo album"), "albumTitle": MessageLookupByLibrary.simpleMessage("Titolo album"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Album aggiornato"), MessageLookupByLibrary.simpleMessage("Album aggiornato"),
@ -286,7 +294,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"),
"androidSignInTitle": "androidSignInTitle":
MessageLookupByLibrary.simpleMessage("Autenticazione necessaria"), MessageLookupByLibrary.simpleMessage("Autenticazione necessaria"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("Applica"), "apply": MessageLookupByLibrary.simpleMessage("Applica"),
"applyCodeTitle": "applyCodeTitle":
@ -370,10 +378,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Puoi rimuovere solo i file di tua proprietà"), "Puoi rimuovere solo i file di tua proprietà"),
"cancel": MessageLookupByLibrary.simpleMessage("Annulla"), "cancel": MessageLookupByLibrary.simpleMessage("Annulla"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Annulla abbonamento"), MessageLookupByLibrary.simpleMessage("Annulla abbonamento"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage( "cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage(
"Impossibile eliminare i file condivisi"), "Impossibile eliminare i file condivisi"),
"centerPoint": MessageLookupByLibrary.simpleMessage("Punto centrale"), "centerPoint": MessageLookupByLibrary.simpleMessage("Punto centrale"),
@ -396,7 +404,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Richiedi spazio gratuito"), MessageLookupByLibrary.simpleMessage("Richiedi spazio gratuito"),
"claimMore": MessageLookupByLibrary.simpleMessage("Richiedine di più!"), "claimMore": MessageLookupByLibrary.simpleMessage("Richiedine di più!"),
"claimed": MessageLookupByLibrary.simpleMessage("Riscattato"), "claimed": MessageLookupByLibrary.simpleMessage("Riscattato"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"clearCaches": MessageLookupByLibrary.simpleMessage("Svuota cache"), "clearCaches": MessageLookupByLibrary.simpleMessage("Svuota cache"),
"click": MessageLookupByLibrary.simpleMessage("• Clic"), "click": MessageLookupByLibrary.simpleMessage("• Clic"),
"clickOnTheOverflowMenu": "clickOnTheOverflowMenu":
@ -416,7 +424,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Crea un link per consentire alle persone di aggiungere e visualizzare foto nel tuo album condiviso senza bisogno di un\'applicazione o di un account ente. Ottimo per raccogliere foto di un evento."), "Crea un link per consentire alle persone di aggiungere e visualizzare foto nel tuo album condiviso senza bisogno di un\'applicazione o di un account ente. Ottimo per raccogliere foto di un evento."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Link collaborativo"), MessageLookupByLibrary.simpleMessage("Link collaborativo"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Collaboratore"), "collaborator": MessageLookupByLibrary.simpleMessage("Collaboratore"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -444,10 +452,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Conferma chiave di recupero"), MessageLookupByLibrary.simpleMessage("Conferma chiave di recupero"),
"confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage( "confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage(
"Conferma la tua chiave di recupero"), "Conferma la tua chiave di recupero"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contatta il supporto"), MessageLookupByLibrary.simpleMessage("Contatta il supporto"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Continua"), "continueLabel": MessageLookupByLibrary.simpleMessage("Continua"),
"continueOnFreeTrial": "continueOnFreeTrial":
@ -523,11 +531,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Elimina dal dispositivo"), MessageLookupByLibrary.simpleMessage("Elimina dal dispositivo"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Elimina da ente"), MessageLookupByLibrary.simpleMessage("Elimina da ente"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": "deleteLocation":
MessageLookupByLibrary.simpleMessage("Elimina posizione"), MessageLookupByLibrary.simpleMessage("Elimina posizione"),
"deletePhotos": MessageLookupByLibrary.simpleMessage("Elimina foto"), "deletePhotos": MessageLookupByLibrary.simpleMessage("Elimina foto"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Manca una caratteristica chiave di cui ho bisogno"), "Manca una caratteristica chiave di cui ho bisogno"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -561,7 +569,7 @@ class MessageLookup extends MessageLookupByLibrary {
"I visualizzatori possono scattare screenshot o salvare una copia delle foto utilizzando strumenti esterni"), "I visualizzatori possono scattare screenshot o salvare una copia delle foto utilizzando strumenti esterni"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Nota bene"), MessageLookupByLibrary.simpleMessage("Nota bene"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage( "disableTwofactor": MessageLookupByLibrary.simpleMessage(
"Disabilita autenticazione a due fattori"), "Disabilita autenticazione a due fattori"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -582,9 +590,9 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Scaricamento fallito"), MessageLookupByLibrary.simpleMessage("Scaricamento fallito"),
"downloading": "downloading":
MessageLookupByLibrary.simpleMessage("Scaricamento in corso..."), MessageLookupByLibrary.simpleMessage("Scaricamento in corso..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Modifica"), "edit": MessageLookupByLibrary.simpleMessage("Modifica"),
"editLocation": MessageLookupByLibrary.simpleMessage("Edit location"), "editLocation": MessageLookupByLibrary.simpleMessage("Edit location"),
"editLocationTagTitle": "editLocationTagTitle":
@ -595,8 +603,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Edits to location will only be seen within Ente"), "Edits to location will only be seen within Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("idoneo"), "eligible": MessageLookupByLibrary.simpleMessage("idoneo"),
"email": MessageLookupByLibrary.simpleMessage("Email"), "email": MessageLookupByLibrary.simpleMessage("Email"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("Verifica Email"), MessageLookupByLibrary.simpleMessage("Verifica Email"),
"emailYourLogs": MessageLookupByLibrary.simpleMessage( "emailYourLogs": MessageLookupByLibrary.simpleMessage(
@ -689,8 +697,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Aggiungi descrizione..."), MessageLookupByLibrary.simpleMessage("Aggiungi descrizione..."),
"fileSavedToGallery": "fileSavedToGallery":
MessageLookupByLibrary.simpleMessage("File salvato nella galleria"), MessageLookupByLibrary.simpleMessage("File salvato nella galleria"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": MessageLookupByLibrary.simpleMessage("File eliminati"), "filesDeleted": MessageLookupByLibrary.simpleMessage("File eliminati"),
"flip": MessageLookupByLibrary.simpleMessage("Capovolgi"), "flip": MessageLookupByLibrary.simpleMessage("Capovolgi"),
"forYourMemories": "forYourMemories":
@ -699,18 +707,18 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Password dimenticata"), MessageLookupByLibrary.simpleMessage("Password dimenticata"),
"freeStorageClaimed": "freeStorageClaimed":
MessageLookupByLibrary.simpleMessage("Spazio gratuito richiesto"), MessageLookupByLibrary.simpleMessage("Spazio gratuito richiesto"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": "freeStorageUsable":
MessageLookupByLibrary.simpleMessage("Spazio libero utilizzabile"), MessageLookupByLibrary.simpleMessage("Spazio libero utilizzabile"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Prova gratuita"), "freeTrial": MessageLookupByLibrary.simpleMessage("Prova gratuita"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": "freeUpDeviceSpace":
MessageLookupByLibrary.simpleMessage("Libera spazio"), MessageLookupByLibrary.simpleMessage("Libera spazio"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("Libera spazio"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("Libera spazio"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Fino a 1000 ricordi mostrati nella galleria"), "Fino a 1000 ricordi mostrati nella galleria"),
"general": MessageLookupByLibrary.simpleMessage("Generali"), "general": MessageLookupByLibrary.simpleMessage("Generali"),
@ -775,7 +783,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Sembra che qualcosa sia andato storto. Riprova tra un po\'. Se l\'errore persiste, contatta il nostro team di supporto."), "Sembra che qualcosa sia andato storto. Riprova tra un po\'. Se l\'errore persiste, contatta il nostro team di supporto."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Gli elementi mostrano il numero di giorni rimanenti prima della cancellazione permanente"), "Gli elementi mostrano il numero di giorni rimanenti prima della cancellazione permanente"),
@ -804,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Limite dei dispositivi"), MessageLookupByLibrary.simpleMessage("Limite dei dispositivi"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Attivato"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Attivato"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Scaduto"), "linkExpired": MessageLookupByLibrary.simpleMessage("Scaduto"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("Scadenza del link"), "linkExpiry": MessageLookupByLibrary.simpleMessage("Scadenza del link"),
"linkHasExpired": "linkHasExpired":
MessageLookupByLibrary.simpleMessage("Il link è scaduto"), MessageLookupByLibrary.simpleMessage("Il link è scaduto"),
@ -852,6 +860,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Disconnetti"), "logout": MessageLookupByLibrary.simpleMessage("Disconnetti"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Invia i log per aiutarci a risolvere il tuo problema. Si prega di notare che i nomi dei file saranno inclusi per aiutare a tenere traccia di problemi con file specifici."), "Invia i log per aiutarci a risolvere il tuo problema. Si prega di notare che i nomi dei file saranno inclusi per aiutare a tenere traccia di problemi con file specifici."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": "longpressOnAnItemToViewInFullscreen":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Premi a lungo su un elemento per visualizzarlo a schermo intero"), "Premi a lungo su un elemento per visualizzarlo a schermo intero"),
@ -870,7 +881,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Mappe"), "maps": MessageLookupByLibrary.simpleMessage("Mappe"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"), "merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"),
@ -879,12 +890,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Modify your query, or try searching for"), "Modify your query, or try searching for"),
"monthly": MessageLookupByLibrary.simpleMessage("Mensile"), "monthly": MessageLookupByLibrary.simpleMessage("Mensile"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": "moveToAlbum":
MessageLookupByLibrary.simpleMessage("Sposta nell\'album"), MessageLookupByLibrary.simpleMessage("Sposta nell\'album"),
"moveToHiddenAlbum": "moveToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Sposta in album nascosto"), MessageLookupByLibrary.simpleMessage("Sposta in album nascosto"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": "movedToTrash":
MessageLookupByLibrary.simpleMessage("Spostato nel cestino"), MessageLookupByLibrary.simpleMessage("Spostato nel cestino"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -948,15 +959,15 @@ class MessageLookup extends MessageLookupByLibrary {
"Password modificata con successo"), "Password modificata con successo"),
"passwordLock": "passwordLock":
MessageLookupByLibrary.simpleMessage("Blocco con password"), MessageLookupByLibrary.simpleMessage("Blocco con password"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Noi non memorizziamo la tua password, quindi se te la dimentichi, <underline>non possiamo decriptare i tuoi dati</underline>"), "Noi non memorizziamo la tua password, quindi se te la dimentichi, <underline>non possiamo decriptare i tuoi dati</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Dettagli di Pagamento"), MessageLookupByLibrary.simpleMessage("Dettagli di Pagamento"),
"paymentFailed": "paymentFailed":
MessageLookupByLibrary.simpleMessage("Pagamento non riuscito"), MessageLookupByLibrary.simpleMessage("Pagamento non riuscito"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingSync": "pendingSync":
MessageLookupByLibrary.simpleMessage("Sincronizzazione in sospeso"), MessageLookupByLibrary.simpleMessage("Sincronizzazione in sospeso"),
"peopleUsingYourCode": MessageLookupByLibrary.simpleMessage( "peopleUsingYourCode": MessageLookupByLibrary.simpleMessage(
@ -976,7 +987,7 @@ class MessageLookup extends MessageLookupByLibrary {
"pickCenterPoint": MessageLookupByLibrary.simpleMessage( "pickCenterPoint": MessageLookupByLibrary.simpleMessage(
"Selezionare il punto centrale"), "Selezionare il punto centrale"),
"pinAlbum": MessageLookupByLibrary.simpleMessage("Fissa l\'album"), "pinAlbum": MessageLookupByLibrary.simpleMessage("Fissa l\'album"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("Abbonamento su PlayStore"), MessageLookupByLibrary.simpleMessage("Abbonamento su PlayStore"),
"pleaseContactSupportAndWeWillBeHappyToHelp": "pleaseContactSupportAndWeWillBeHappyToHelp":
@ -985,12 +996,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Riprova. Se il problema persiste, ti invitiamo a contattare l\'assistenza"), "Riprova. Se il problema persiste, ti invitiamo a contattare l\'assistenza"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": "pleaseGrantPermissions":
MessageLookupByLibrary.simpleMessage("Concedi i permessi"), MessageLookupByLibrary.simpleMessage("Concedi i permessi"),
"pleaseLoginAgain": MessageLookupByLibrary.simpleMessage( "pleaseLoginAgain": MessageLookupByLibrary.simpleMessage(
"Effettua nuovamente l\'accesso"), "Effettua nuovamente l\'accesso"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": MessageLookupByLibrary.simpleMessage("Riprova"), "pleaseTryAgain": MessageLookupByLibrary.simpleMessage("Riprova"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -1024,7 +1035,7 @@ class MessageLookup extends MessageLookupByLibrary {
"raiseTicket": MessageLookupByLibrary.simpleMessage("Invia ticket"), "raiseTicket": MessageLookupByLibrary.simpleMessage("Invia ticket"),
"rateTheApp": MessageLookupByLibrary.simpleMessage("Valuta l\'app"), "rateTheApp": MessageLookupByLibrary.simpleMessage("Valuta l\'app"),
"rateUs": MessageLookupByLibrary.simpleMessage("Lascia una recensione"), "rateUs": MessageLookupByLibrary.simpleMessage("Lascia una recensione"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Recupera"), "recover": MessageLookupByLibrary.simpleMessage("Recupera"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Recupera account"), MessageLookupByLibrary.simpleMessage("Recupera account"),
@ -1056,7 +1067,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Condividi questo codice con i tuoi amici"), "1. Condividi questo codice con i tuoi amici"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Si iscrivono per un piano a pagamento"), "2. Si iscrivono per un piano a pagamento"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Invita un Amico"), "referrals": MessageLookupByLibrary.simpleMessage("Invita un Amico"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"I referral code sono attualmente in pausa"), "I referral code sono attualmente in pausa"),
@ -1080,7 +1091,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Elimina link"), "removeLink": MessageLookupByLibrary.simpleMessage("Elimina link"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Rimuovi partecipante"), MessageLookupByLibrary.simpleMessage("Rimuovi partecipante"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Rimuovi link pubblico"), MessageLookupByLibrary.simpleMessage("Rimuovi link pubblico"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1094,7 +1105,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameFile": MessageLookupByLibrary.simpleMessage("Rinomina file"), "renameFile": MessageLookupByLibrary.simpleMessage("Rinomina file"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Rinnova abbonamento"), MessageLookupByLibrary.simpleMessage("Rinnova abbonamento"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Segnala un bug"), "reportABug": MessageLookupByLibrary.simpleMessage("Segnala un bug"),
"reportBug": MessageLookupByLibrary.simpleMessage("Segnala un bug"), "reportBug": MessageLookupByLibrary.simpleMessage("Segnala un bug"),
"resendEmail": MessageLookupByLibrary.simpleMessage("Rinvia email"), "resendEmail": MessageLookupByLibrary.simpleMessage("Rinvia email"),
@ -1159,8 +1170,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Gli elementi selezionati verranno eliminati da tutti gli album e spostati nel cestino."), "Gli elementi selezionati verranno eliminati da tutti gli album e spostati nel cestino."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Invia"), "send": MessageLookupByLibrary.simpleMessage("Invia"),
"sendEmail": MessageLookupByLibrary.simpleMessage("Invia email"), "sendEmail": MessageLookupByLibrary.simpleMessage("Invia email"),
"sendInvite": MessageLookupByLibrary.simpleMessage("Invita"), "sendInvite": MessageLookupByLibrary.simpleMessage("Invita"),
@ -1184,16 +1195,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Condividi un album"), MessageLookupByLibrary.simpleMessage("Condividi un album"),
"shareLink": MessageLookupByLibrary.simpleMessage("Condividi link"), "shareLink": MessageLookupByLibrary.simpleMessage("Condividi link"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Condividi solo con le persone che vuoi"), "Condividi solo con le persone che vuoi"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Scarica ente in modo da poter facilmente condividere foto e video senza perdita di qualità\n\nhttps://ente.io"), "Scarica ente in modo da poter facilmente condividere foto e video senza perdita di qualità\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Condividi con utenti che non hanno un account ente"), "Condividi con utenti che non hanno un account ente"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage( "shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage(
"Condividi il tuo primo album"), "Condividi il tuo primo album"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1204,7 +1215,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nuove foto condivise"), MessageLookupByLibrary.simpleMessage("Nuove foto condivise"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Ricevi notifiche quando qualcuno aggiunge una foto a un album condiviso, di cui fai parte"), "Ricevi notifiche quando qualcuno aggiunge una foto a un album condiviso, di cui fai parte"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": "sharedWithMe":
MessageLookupByLibrary.simpleMessage("Condivisi con me"), MessageLookupByLibrary.simpleMessage("Condivisi con me"),
"sharedWithYou": "sharedWithYou":
@ -1214,11 +1225,11 @@ class MessageLookup extends MessageLookupByLibrary {
"showMemories": MessageLookupByLibrary.simpleMessage("Mostra ricordi"), "showMemories": MessageLookupByLibrary.simpleMessage("Mostra ricordi"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"Accetto i <u-terms>termini di servizio</u-terms> e la <u-policy>politica sulla privacy</u-policy>"), "Accetto i <u-terms>termini di servizio</u-terms> e la <u-policy>politica sulla privacy</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Verrà eliminato da tutti gli album."), "Verrà eliminato da tutti gli album."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Salta"), "skip": MessageLookupByLibrary.simpleMessage("Salta"),
"social": MessageLookupByLibrary.simpleMessage("Social"), "social": MessageLookupByLibrary.simpleMessage("Social"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1259,13 +1270,13 @@ class MessageLookup extends MessageLookupByLibrary {
"storageBreakupFamily": "storageBreakupFamily":
MessageLookupByLibrary.simpleMessage("Famiglia"), MessageLookupByLibrary.simpleMessage("Famiglia"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Tu"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Tu"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": MessageLookupByLibrary.simpleMessage( "storageLimitExceeded": MessageLookupByLibrary.simpleMessage(
"Limite d\'archiviazione superato"), "Limite d\'archiviazione superato"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Forte"), "strongStrength": MessageLookupByLibrary.simpleMessage("Forte"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Iscriviti"), "subscribe": MessageLookupByLibrary.simpleMessage("Iscriviti"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Sembra che il tuo abbonamento sia scaduto. Iscriviti per abilitare la condivisione."), "Sembra che il tuo abbonamento sia scaduto. Iscriviti per abilitare la condivisione."),
@ -1282,7 +1293,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Suggerisci una funzionalità"), MessageLookupByLibrary.simpleMessage("Suggerisci una funzionalità"),
"support": MessageLookupByLibrary.simpleMessage("Assistenza"), "support": MessageLookupByLibrary.simpleMessage("Assistenza"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Sincronizzazione interrotta"), MessageLookupByLibrary.simpleMessage("Sincronizzazione interrotta"),
"syncing": MessageLookupByLibrary.simpleMessage( "syncing": MessageLookupByLibrary.simpleMessage(
@ -1311,7 +1322,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Questi file verranno eliminati dal tuo dispositivo."), "Questi file verranno eliminati dal tuo dispositivo."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Verranno eliminati da tutti gli album."), "Verranno eliminati da tutti gli album."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1328,7 +1339,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Questo indirizzo email è già registrato"), "Questo indirizzo email è già registrato"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Questa immagine non ha dati EXIF"), "Questa immagine non ha dati EXIF"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"Questo è il tuo ID di verifica"), "Questo è il tuo ID di verifica"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1344,7 +1355,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("totale"), "total": MessageLookupByLibrary.simpleMessage("totale"),
"totalSize": MessageLookupByLibrary.simpleMessage("Dimensioni totali"), "totalSize": MessageLookupByLibrary.simpleMessage("Dimensioni totali"),
"trash": MessageLookupByLibrary.simpleMessage("Cestino"), "trash": MessageLookupByLibrary.simpleMessage("Cestino"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Riprova"), "tryAgain": MessageLookupByLibrary.simpleMessage("Riprova"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Attiva il backup per caricare automaticamente i file aggiunti in questa cartella del dispositivo su ente."), "Attiva il backup per caricare automaticamente i file aggiunti in questa cartella del dispositivo su ente."),
@ -1401,7 +1412,7 @@ class MessageLookup extends MessageLookupByLibrary {
"useSelectedPhoto": "useSelectedPhoto":
MessageLookupByLibrary.simpleMessage("Usa la foto selezionata"), MessageLookupByLibrary.simpleMessage("Usa la foto selezionata"),
"usedSpace": MessageLookupByLibrary.simpleMessage("Spazio utilizzato"), "usedSpace": MessageLookupByLibrary.simpleMessage("Spazio utilizzato"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Verifica fallita, per favore prova di nuovo"), "Verifica fallita, per favore prova di nuovo"),
@ -1409,7 +1420,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("ID di verifica"), MessageLookupByLibrary.simpleMessage("ID di verifica"),
"verify": MessageLookupByLibrary.simpleMessage("Verifica"), "verify": MessageLookupByLibrary.simpleMessage("Verifica"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("Verifica email"), "verifyEmail": MessageLookupByLibrary.simpleMessage("Verifica email"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verifica"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verifica"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Verifica password"), MessageLookupByLibrary.simpleMessage("Verifica password"),
@ -1436,11 +1447,11 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Non puoi modificare foto e album che non possiedi"), "Non puoi modificare foto e album che non possiedi"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Debole"), "weakStrength": MessageLookupByLibrary.simpleMessage("Debole"),
"welcomeBack": MessageLookupByLibrary.simpleMessage("Bentornato/a!"), "welcomeBack": MessageLookupByLibrary.simpleMessage("Bentornato/a!"),
"yearly": MessageLookupByLibrary.simpleMessage("Annuale"), "yearly": MessageLookupByLibrary.simpleMessage("Annuale"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Si"), "yes": MessageLookupByLibrary.simpleMessage("Si"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Sì, cancella"), "yesCancel": MessageLookupByLibrary.simpleMessage("Sì, cancella"),
"yesConvertToViewer": MessageLookupByLibrary.simpleMessage( "yesConvertToViewer": MessageLookupByLibrary.simpleMessage(
@ -1470,7 +1481,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Non puoi condividere con te stesso"), "Non puoi condividere con te stesso"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"Non hai nulla di archiviato."), "Non hai nulla di archiviato."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage( "yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage(
"Il tuo account è stato eliminato"), "Il tuo account è stato eliminato"),
"yourMap": MessageLookupByLibrary.simpleMessage("Your map"), "yourMap": MessageLookupByLibrary.simpleMessage("Your map"),

View file

@ -20,10 +20,18 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary { class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'ko'; String get localeName => 'ko';
static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{ static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
"addCollaborators": m0,
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewers": m1,
"changeLocationOfSelectedItems": MessageLookupByLibrary.simpleMessage( "changeLocationOfSelectedItems": MessageLookupByLibrary.simpleMessage(
"Change location of selected items?"), "Change location of selected items?"),
"contacts": MessageLookupByLibrary.simpleMessage("Contacts"), "contacts": MessageLookupByLibrary.simpleMessage("Contacts"),
@ -37,6 +45,9 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("File types"), "fileTypes": MessageLookupByLibrary.simpleMessage("File types"),
"joinDiscord": MessageLookupByLibrary.simpleMessage("Join Discord"), "joinDiscord": MessageLookupByLibrary.simpleMessage("Join Discord"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Locations"),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"modifyYourQueryOrTrySearchingFor": "modifyYourQueryOrTrySearchingFor":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Modify your query, or try searching for"), "Modify your query, or try searching for"),

View file

@ -21,27 +21,33 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'nl'; String get localeName => 'nl';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Bestand toevoegen', other: 'Bestanden toevoegen')}"; "${Intl.plural(count, one: 'Bestand toevoegen', other: 'Bestanden toevoegen')}";
static String m1(storageAmount, endDate) => static String m3(storageAmount, endDate) =>
"Jouw ${storageAmount} add-on is geldig tot ${endDate}"; "Jouw ${storageAmount} add-on is geldig tot ${endDate}";
static String m2(emailOrName) => "Toegevoegd door ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Succesvol toegevoegd aan ${albumName}"; static String m4(emailOrName) => "Toegevoegd door ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Succesvol toegevoegd aan ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'Geen deelnemers', one: '1 deelnemer', other: '${count} deelnemers')}"; "${Intl.plural(count, zero: 'Geen deelnemers', one: '1 deelnemer', other: '${count} deelnemers')}";
static String m5(versionValue) => "Versie: ${versionValue}"; static String m7(versionValue) => "Versie: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Annuleer eerst uw bestaande abonnement bij ${paymentProvider}"; "Annuleer eerst uw bestaande abonnement bij ${paymentProvider}";
static String m7(user) => static String m9(user) =>
"${user} zal geen foto\'s meer kunnen toevoegen aan dit album\n\nDe gebruiker zal nog steeds bestaande foto\'s kunnen verwijderen die door hen zijn toegevoegd"; "${user} zal geen foto\'s meer kunnen toevoegen aan dit album\n\nDe gebruiker zal nog steeds bestaande foto\'s kunnen verwijderen die door hen zijn toegevoegd";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Jouw familie heeft ${storageAmountInGb} GB geclaimd tot nu toe', 'Jouw familie heeft ${storageAmountInGb} GB geclaimd tot nu toe',
@ -49,167 +55,167 @@ class MessageLookup extends MessageLookupByLibrary {
'other': 'Je hebt ${storageAmountInGb} GB geclaimd tot nu toe!', 'other': 'Je hebt ${storageAmountInGb} GB geclaimd tot nu toe!',
})}"; })}";
static String m9(albumName) => static String m11(albumName) =>
"Gezamenlijke link aangemaakt voor ${albumName}"; "Gezamenlijke link aangemaakt voor ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Neem contact op met <green>${familyAdminEmail}</green> om uw abonnement te beheren"; "Neem contact op met <green>${familyAdminEmail}</green> om uw abonnement te beheren";
static String m11(provider) => static String m13(provider) =>
"Neem contact met ons op via support@ente.io om uw ${provider} abonnement te beheren."; "Neem contact met ons op via support@ente.io om uw ${provider} abonnement te beheren.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Verwijder ${count} bestand', other: 'Verwijder ${count} bestanden')}"; "${Intl.plural(count, one: 'Verwijder ${count} bestand', other: 'Verwijder ${count} bestanden')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Verwijderen van ${currentlyDeleting} / ${totalCount}"; "Verwijderen van ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Dit verwijdert de openbare link voor toegang tot \"${albumName}\"."; "Dit verwijdert de openbare link voor toegang tot \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Stuur een e-mail naar ${supportEmail} vanaf het door jou geregistreerde e-mailadres"; "Stuur een e-mail naar ${supportEmail} vanaf het door jou geregistreerde e-mailadres";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"Je hebt ${Intl.plural(count, one: '${count} dubbel bestand', other: '${count} dubbele bestanden')} opgeruimd, totaal (${storageSaved}!)"; "Je hebt ${Intl.plural(count, one: '${count} dubbel bestand', other: '${count} dubbele bestanden')} opgeruimd, totaal (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} bestanden, elk ${formattedSize}"; "${count} bestanden, elk ${formattedSize}";
static String m18(newEmail) => "E-mailadres gewijzigd naar ${newEmail}"; static String m20(newEmail) => "E-mailadres gewijzigd naar ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} heeft geen ente account.\n\nStuur ze een uitnodiging om foto\'s te delen."; "${email} heeft geen ente account.\n\nStuur ze een uitnodiging om foto\'s te delen.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 bestand', other: '${formattedNumber} bestanden')} in dit album zijn veilig geback-upt"; "${Intl.plural(count, one: '1 bestand', other: '${formattedNumber} bestanden')} in dit album zijn veilig geback-upt";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 bestand', other: '${formattedNumber} bestanden')} in dit album is veilig geback-upt"; "${Intl.plural(count, one: '1 bestand', other: '${formattedNumber} bestanden')} in dit album is veilig geback-upt";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB telkens als iemand zich aanmeldt voor een betaald abonnement en je code toepast"; "${storageAmountInGB} GB telkens als iemand zich aanmeldt voor een betaald abonnement en je code toepast";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} vrij"; "${freeAmount} ${storageUnit} vrij";
static String m24(endDate) => "Gratis proefversie geldig tot ${endDate}"; static String m26(endDate) => "Gratis proefversie geldig tot ${endDate}";
static String m25(count) => static String m27(count) =>
"U heeft nog steeds toegang tot ${Intl.plural(count, one: 'het', other: 'ze')} op ente zolang u een actief abonnement heeft"; "U heeft nog steeds toegang tot ${Intl.plural(count, one: 'het', other: 'ze')} op ente zolang u een actief abonnement heeft";
static String m26(sizeInMBorGB) => "Maak ${sizeInMBorGB} vrij"; static String m28(sizeInMBorGB) => "Maak ${sizeInMBorGB} vrij";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Het kan verwijderd worden van het apparaat om ${formattedSize} vrij te maken', other: 'Ze kunnen verwijderd worden van het apparaat om ${formattedSize} vrij te maken')}"; "${Intl.plural(count, one: 'Het kan verwijderd worden van het apparaat om ${formattedSize} vrij te maken', other: 'Ze kunnen verwijderd worden van het apparaat om ${formattedSize} vrij te maken')}";
static String m28(currentlyProcessing, totalCount) => static String m30(currentlyProcessing, totalCount) =>
"Verwerken van ${currentlyProcessing} / ${totalCount}"; "Verwerken van ${currentlyProcessing} / ${totalCount}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} item', other: '${count} items')}"; "${Intl.plural(count, one: '${count} item', other: '${count} items')}";
static String m30(expiryTime) => "Link vervalt op ${expiryTime}"; static String m32(expiryTime) => "Link vervalt op ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: 'geen herinneringen', one: '${formattedCount} herinnering', other: '${formattedCount} herinneringen')}"; "${Intl.plural(count, zero: 'geen herinneringen', one: '${formattedCount} herinnering', other: '${formattedCount} herinneringen')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Bestand verplaatsen', other: 'Bestanden verplaatsen')}"; "${Intl.plural(count, one: 'Bestand verplaatsen', other: 'Bestanden verplaatsen')}";
static String m33(albumName) => "Succesvol verplaatst naar ${albumName}"; static String m35(albumName) => "Succesvol verplaatst naar ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Wachtwoord sterkte: ${passwordStrengthValue}"; "Wachtwoord sterkte: ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Praat met ${providerName} klantenservice als u in rekening bent gebracht"; "Praat met ${providerName} klantenservice als u in rekening bent gebracht";
static String m36(reason) => static String m38(reason) =>
"Helaas is uw betaling mislukt vanwege ${reason}"; "Helaas is uw betaling mislukt vanwege ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Gratis proefperiode geldig tot ${endDate}.\nU kunt naderhand een betaald abonnement kiezen."; "Gratis proefperiode geldig tot ${endDate}.\nU kunt naderhand een betaald abonnement kiezen.";
static String m38(toEmail) => "Stuur ons een e-mail op ${toEmail}"; static String m40(toEmail) => "Stuur ons een e-mail op ${toEmail}";
static String m39(toEmail) => static String m41(toEmail) =>
"Verstuur de logboeken alstublieft naar ${toEmail}"; "Verstuur de logboeken alstublieft naar ${toEmail}";
static String m40(storeName) => "Beoordeel ons op ${storeName}"; static String m42(storeName) => "Beoordeel ons op ${storeName}";
static String m41(storageInGB) => static String m43(storageInGB) =>
"Jullie krijgen allebei ${storageInGB} GB* gratis"; "Jullie krijgen allebei ${storageInGB} GB* gratis";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} zal worden verwijderd uit dit gedeelde album\n\nAlle door hen toegevoegde foto\'s worden ook uit het album verwijderd"; "${userEmail} zal worden verwijderd uit dit gedeelde album\n\nAlle door hen toegevoegde foto\'s worden ook uit het album verwijderd";
static String m43(endDate) => "Wordt verlengd op ${endDate}"; static String m45(endDate) => "Wordt verlengd op ${endDate}";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, one: '${count} resultaat gevonden', other: '${count} resultaten gevonden')}"; "${Intl.plural(count, one: '${count} resultaat gevonden', other: '${count} resultaten gevonden')}";
static String m45(count) => "${count} geselecteerd"; static String m47(count) => "${count} geselecteerd";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} geselecteerd (${yourCount} van jou)"; "${count} geselecteerd (${yourCount} van jou)";
static String m47(verificationID) => static String m49(verificationID) =>
"Hier is mijn verificatie-ID: ${verificationID} voor ente.io."; "Hier is mijn verificatie-ID: ${verificationID} voor ente.io.";
static String m48(verificationID) => static String m50(verificationID) =>
"Hey, kunt u bevestigen dat dit uw ente.io verificatie-ID is: ${verificationID}"; "Hey, kunt u bevestigen dat dit uw ente.io verificatie-ID is: ${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente verwijzingscode: ${referralCode} \n\nPas het toe bij Instellingen → Algemeen → Verwijzingen om ${referralStorageInGB} GB gratis te krijgen nadat je je hebt aangemeld voor een betaald abonnement\n\nhttps://ente.io"; "ente verwijzingscode: ${referralCode} \n\nPas het toe bij Instellingen → Algemeen → Verwijzingen om ${referralStorageInGB} GB gratis te krijgen nadat je je hebt aangemeld voor een betaald abonnement\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Deel met specifieke mensen', one: 'Gedeeld met 1 persoon', other: 'Gedeeld met ${numberOfPeople} mensen')}"; "${Intl.plural(numberOfPeople, zero: 'Deel met specifieke mensen', one: 'Gedeeld met 1 persoon', other: 'Gedeeld met ${numberOfPeople} mensen')}";
static String m51(emailIDs) => "Gedeeld met ${emailIDs}"; static String m53(emailIDs) => "Gedeeld met ${emailIDs}";
static String m52(fileType) =>
"Deze ${fileType} zal worden verwijderd van jouw apparaat.";
static String m53(fileType) =>
"Deze ${fileType} staat zowel in ente als op jouw apparaat.";
static String m54(fileType) => static String m54(fileType) =>
"Deze ${fileType} zal worden verwijderd van jouw apparaat.";
static String m55(fileType) =>
"Deze ${fileType} staat zowel in ente als op jouw apparaat.";
static String m56(fileType) =>
"Deze ${fileType} zal worden verwijderd uit ente."; "Deze ${fileType} zal worden verwijderd uit ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} van ${totalAmount} ${totalStorageUnit} gebruikt"; "${usedAmount} ${usedStorageUnit} van ${totalAmount} ${totalStorageUnit} gebruikt";
static String m57(id) => static String m59(id) =>
"Uw ${id} is al aan een ander ente account gekoppeld.\nAls u uw ${id} wilt gebruiken met dit account, neem dan contact op met onze klantenservice"; "Uw ${id} is al aan een ander ente account gekoppeld.\nAls u uw ${id} wilt gebruiken met dit account, neem dan contact op met onze klantenservice";
static String m58(endDate) => "Uw abonnement loopt af op ${endDate}"; static String m60(endDate) => "Uw abonnement loopt af op ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} herinneringen bewaard"; "${completed}/${total} herinneringen bewaard";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"Zij krijgen ook ${storageAmountInGB} GB"; "Zij krijgen ook ${storageAmountInGB} GB";
static String m61(email) => "Dit is de verificatie-ID van ${email}"; static String m63(email) => "Dit is de verificatie-ID van ${email}";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1 dag', other: '${count} dagen')}"; "${Intl.plural(count, zero: '', one: '1 dag', other: '${count} dagen')}";
static String m63(endDate) => "Geldig tot ${endDate}"; static String m65(endDate) => "Geldig tot ${endDate}";
static String m64(email) => "Verifieer ${email}"; static String m66(email) => "Verifieer ${email}";
static String m65(email) => static String m67(email) =>
"We hebben een e-mail gestuurd naar <green>${email}</green>"; "We hebben een e-mail gestuurd naar <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} jaar geleden', other: '${count} jaar geleden')}"; "${Intl.plural(count, one: '${count} jaar geleden', other: '${count} jaar geleden')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"Je hebt ${storageSaved} succesvol vrijgemaakt!"; "Je hebt ${storageSaved} succesvol vrijgemaakt!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -228,9 +234,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nieuw e-mailadres toevoegen"), MessageLookupByLibrary.simpleMessage("Nieuw e-mailadres toevoegen"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Samenwerker toevoegen"), MessageLookupByLibrary.simpleMessage("Samenwerker toevoegen"),
"addCollaborators": m0,
"addFromDevice": "addFromDevice":
MessageLookupByLibrary.simpleMessage("Toevoegen vanaf apparaat"), MessageLookupByLibrary.simpleMessage("Toevoegen vanaf apparaat"),
"addItem": m0, "addItem": m2,
"addLocation": "addLocation":
MessageLookupByLibrary.simpleMessage("Locatie toevoegen"), MessageLookupByLibrary.simpleMessage("Locatie toevoegen"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Toevoegen"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Toevoegen"),
@ -238,7 +245,7 @@ class MessageLookup extends MessageLookupByLibrary {
"addNew": MessageLookupByLibrary.simpleMessage("Nieuwe toevoegen"), "addNew": MessageLookupByLibrary.simpleMessage("Nieuwe toevoegen"),
"addOnPageSubtitle": "addOnPageSubtitle":
MessageLookupByLibrary.simpleMessage("Details van add-ons"), MessageLookupByLibrary.simpleMessage("Details van add-ons"),
"addOnValidTill": m1, "addOnValidTill": m3,
"addOns": MessageLookupByLibrary.simpleMessage("Add-ons"), "addOns": MessageLookupByLibrary.simpleMessage("Add-ons"),
"addPhotos": MessageLookupByLibrary.simpleMessage("Foto\'s toevoegen"), "addPhotos": MessageLookupByLibrary.simpleMessage("Foto\'s toevoegen"),
"addSelected": "addSelected":
@ -249,11 +256,12 @@ class MessageLookup extends MessageLookupByLibrary {
"addToHiddenAlbum": MessageLookupByLibrary.simpleMessage( "addToHiddenAlbum": MessageLookupByLibrary.simpleMessage(
"Toevoegen aan verborgen album"), "Toevoegen aan verborgen album"),
"addViewer": MessageLookupByLibrary.simpleMessage("Voeg kijker toe"), "addViewer": MessageLookupByLibrary.simpleMessage("Voeg kijker toe"),
"addViewers": m1,
"addYourPhotosNow": "addYourPhotosNow":
MessageLookupByLibrary.simpleMessage("Voeg nu je foto\'s toe"), MessageLookupByLibrary.simpleMessage("Voeg nu je foto\'s toe"),
"addedAs": MessageLookupByLibrary.simpleMessage("Toegevoegd als"), "addedAs": MessageLookupByLibrary.simpleMessage("Toegevoegd als"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": "addingToFavorites":
MessageLookupByLibrary.simpleMessage("Toevoegen aan favorieten..."), MessageLookupByLibrary.simpleMessage("Toevoegen aan favorieten..."),
"advanced": MessageLookupByLibrary.simpleMessage("Geavanceerd"), "advanced": MessageLookupByLibrary.simpleMessage("Geavanceerd"),
@ -264,7 +272,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("Na 1 week"), "after1Week": MessageLookupByLibrary.simpleMessage("Na 1 week"),
"after1Year": MessageLookupByLibrary.simpleMessage("Na 1 jaar"), "after1Year": MessageLookupByLibrary.simpleMessage("Na 1 jaar"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Eigenaar"), "albumOwner": MessageLookupByLibrary.simpleMessage("Eigenaar"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Albumtitel"), "albumTitle": MessageLookupByLibrary.simpleMessage("Albumtitel"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Album bijgewerkt"), MessageLookupByLibrary.simpleMessage("Album bijgewerkt"),
@ -300,7 +308,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"),
"androidSignInTitle": "androidSignInTitle":
MessageLookupByLibrary.simpleMessage("Verificatie vereist"), MessageLookupByLibrary.simpleMessage("Verificatie vereist"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("Toepassen"), "apply": MessageLookupByLibrary.simpleMessage("Toepassen"),
"applyCodeTitle": "applyCodeTitle":
@ -386,10 +394,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Kan alleen bestanden verwijderen die jouw eigendom zijn"), "Kan alleen bestanden verwijderen die jouw eigendom zijn"),
"cancel": MessageLookupByLibrary.simpleMessage("Annuleer"), "cancel": MessageLookupByLibrary.simpleMessage("Annuleer"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Abonnement opzeggen"), MessageLookupByLibrary.simpleMessage("Abonnement opzeggen"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage( "cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage(
"Kan gedeelde bestanden niet verwijderen"), "Kan gedeelde bestanden niet verwijderen"),
"castInstruction": MessageLookupByLibrary.simpleMessage( "castInstruction": MessageLookupByLibrary.simpleMessage(
@ -413,7 +421,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Claim gratis opslag"), MessageLookupByLibrary.simpleMessage("Claim gratis opslag"),
"claimMore": MessageLookupByLibrary.simpleMessage("Claim meer!"), "claimMore": MessageLookupByLibrary.simpleMessage("Claim meer!"),
"claimed": MessageLookupByLibrary.simpleMessage("Geclaimd"), "claimed": MessageLookupByLibrary.simpleMessage("Geclaimd"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"cleanUncategorized": "cleanUncategorized":
MessageLookupByLibrary.simpleMessage("Ongecategoriseerd opschonen"), MessageLookupByLibrary.simpleMessage("Ongecategoriseerd opschonen"),
"clearCaches": MessageLookupByLibrary.simpleMessage("Cache legen"), "clearCaches": MessageLookupByLibrary.simpleMessage("Cache legen"),
@ -436,7 +444,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Maak een link waarmee mensen foto\'s in jouw gedeelde album kunnen toevoegen en bekijken zonder dat ze daarvoor een ente app of account nodig hebben. Handig voor het verzamelen van foto\'s van evenementen."), "Maak een link waarmee mensen foto\'s in jouw gedeelde album kunnen toevoegen en bekijken zonder dat ze daarvoor een ente app of account nodig hebben. Handig voor het verzamelen van foto\'s van evenementen."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Gezamenlijke link"), MessageLookupByLibrary.simpleMessage("Gezamenlijke link"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Samenwerker"), "collaborator": MessageLookupByLibrary.simpleMessage("Samenwerker"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -464,10 +472,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Bevestig herstelsleutel"), MessageLookupByLibrary.simpleMessage("Bevestig herstelsleutel"),
"confirmYourRecoveryKey": "confirmYourRecoveryKey":
MessageLookupByLibrary.simpleMessage("Bevestig herstelsleutel"), MessageLookupByLibrary.simpleMessage("Bevestig herstelsleutel"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contacteer klantenservice"), MessageLookupByLibrary.simpleMessage("Contacteer klantenservice"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contacten"), "contacts": MessageLookupByLibrary.simpleMessage("Contacten"),
"contents": MessageLookupByLibrary.simpleMessage("Inhoud"), "contents": MessageLookupByLibrary.simpleMessage("Inhoud"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Doorgaan"), "continueLabel": MessageLookupByLibrary.simpleMessage("Doorgaan"),
@ -544,12 +552,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Verwijder van apparaat"), MessageLookupByLibrary.simpleMessage("Verwijder van apparaat"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Verwijder van ente"), MessageLookupByLibrary.simpleMessage("Verwijder van ente"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": "deleteLocation":
MessageLookupByLibrary.simpleMessage("Verwijder locatie"), MessageLookupByLibrary.simpleMessage("Verwijder locatie"),
"deletePhotos": "deletePhotos":
MessageLookupByLibrary.simpleMessage("Foto\'s verwijderen"), MessageLookupByLibrary.simpleMessage("Foto\'s verwijderen"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Ik mis een belangrijke functie"), "Ik mis een belangrijke functie"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -587,7 +595,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Kijkers kunnen nog steeds screenshots maken of een kopie van je foto\'s opslaan met behulp van externe tools"), "Kijkers kunnen nog steeds screenshots maken of een kopie van je foto\'s opslaan met behulp van externe tools"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Let op"), MessageLookupByLibrary.simpleMessage("Let op"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage( "disableTwofactor": MessageLookupByLibrary.simpleMessage(
"Tweestapsverificatie uitschakelen"), "Tweestapsverificatie uitschakelen"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -608,9 +616,9 @@ class MessageLookup extends MessageLookupByLibrary {
"downloadFailed": "downloadFailed":
MessageLookupByLibrary.simpleMessage("Download mislukt"), MessageLookupByLibrary.simpleMessage("Download mislukt"),
"downloading": MessageLookupByLibrary.simpleMessage("Downloaden..."), "downloading": MessageLookupByLibrary.simpleMessage("Downloaden..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Bewerken"), "edit": MessageLookupByLibrary.simpleMessage("Bewerken"),
"editLocation": "editLocation":
MessageLookupByLibrary.simpleMessage("Locatie bewerken"), MessageLookupByLibrary.simpleMessage("Locatie bewerken"),
@ -623,8 +631,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Bewerkte locatie wordt alleen gezien binnen Ente"), "Bewerkte locatie wordt alleen gezien binnen Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("gerechtigd"), "eligible": MessageLookupByLibrary.simpleMessage("gerechtigd"),
"email": MessageLookupByLibrary.simpleMessage("E-mail"), "email": MessageLookupByLibrary.simpleMessage("E-mail"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("E-mailverificatie"), MessageLookupByLibrary.simpleMessage("E-mailverificatie"),
"emailYourLogs": "emailYourLogs":
@ -728,8 +736,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("Bestandstype"), "fileTypes": MessageLookupByLibrary.simpleMessage("Bestandstype"),
"fileTypesAndNames": "fileTypesAndNames":
MessageLookupByLibrary.simpleMessage("Bestandstypen en namen"), MessageLookupByLibrary.simpleMessage("Bestandstypen en namen"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": "filesDeleted":
MessageLookupByLibrary.simpleMessage("Bestanden verwijderd"), MessageLookupByLibrary.simpleMessage("Bestanden verwijderd"),
"flip": MessageLookupByLibrary.simpleMessage("Omdraaien"), "flip": MessageLookupByLibrary.simpleMessage("Omdraaien"),
@ -739,24 +747,24 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Wachtwoord vergeten"), MessageLookupByLibrary.simpleMessage("Wachtwoord vergeten"),
"freeStorageClaimed": "freeStorageClaimed":
MessageLookupByLibrary.simpleMessage("Gratis opslag geclaimd"), MessageLookupByLibrary.simpleMessage("Gratis opslag geclaimd"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": "freeStorageUsable":
MessageLookupByLibrary.simpleMessage("Gratis opslag bruikbaar"), MessageLookupByLibrary.simpleMessage("Gratis opslag bruikbaar"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Gratis proefversie"), "freeTrial": MessageLookupByLibrary.simpleMessage("Gratis proefversie"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": "freeUpDeviceSpace":
MessageLookupByLibrary.simpleMessage("Apparaatruimte vrijmaken"), MessageLookupByLibrary.simpleMessage("Apparaatruimte vrijmaken"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("Ruimte vrijmaken"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("Ruimte vrijmaken"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Tot 1000 herinneringen getoond in de galerij"), "Tot 1000 herinneringen getoond in de galerij"),
"general": MessageLookupByLibrary.simpleMessage("Algemeen"), "general": MessageLookupByLibrary.simpleMessage("Algemeen"),
"generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage( "generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage(
"Encryptiesleutels genereren..."), "Encryptiesleutels genereren..."),
"genericProgress": m28, "genericProgress": m30,
"goToSettings": "goToSettings":
MessageLookupByLibrary.simpleMessage("Ga naar instellingen"), MessageLookupByLibrary.simpleMessage("Ga naar instellingen"),
"googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"), "googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"),
@ -817,7 +825,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Het lijkt erop dat er iets fout is gegaan. Probeer het later opnieuw. Als de fout zich blijft voordoen, neem dan contact op met ons supportteam."), "Het lijkt erop dat er iets fout is gegaan. Probeer het later opnieuw. Als de fout zich blijft voordoen, neem dan contact op met ons supportteam."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Bestanden tonen het aantal resterende dagen voordat ze permanent worden verwijderd"), "Bestanden tonen het aantal resterende dagen voordat ze permanent worden verwijderd"),
@ -844,7 +852,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Apparaat limiet"), MessageLookupByLibrary.simpleMessage("Apparaat limiet"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Ingeschakeld"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Ingeschakeld"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Verlopen"), "linkExpired": MessageLookupByLibrary.simpleMessage("Verlopen"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("Vervaldatum"), "linkExpiry": MessageLookupByLibrary.simpleMessage("Vervaldatum"),
"linkHasExpired": "linkHasExpired":
MessageLookupByLibrary.simpleMessage("Link is vervallen"), MessageLookupByLibrary.simpleMessage("Link is vervallen"),
@ -893,6 +901,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Uitloggen"), "logout": MessageLookupByLibrary.simpleMessage("Uitloggen"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Dit zal logboeken verzenden om ons te helpen uw probleem op te lossen. Houd er rekening mee dat bestandsnamen zullen worden meegenomen om problemen met specifieke bestanden bij te houden."), "Dit zal logboeken verzenden om ons te helpen uw probleem op te lossen. Houd er rekening mee dat bestandsnamen zullen worden meegenomen om problemen met specifieke bestanden bij te houden."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage( "longpressOnAnItemToViewInFullscreen": MessageLookupByLibrary.simpleMessage(
"Houd een bestand lang ingedrukt om te bekijken op volledig scherm"), "Houd een bestand lang ingedrukt om te bekijken op volledig scherm"),
"lostDevice": "lostDevice":
@ -916,7 +927,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Kaarten"), "maps": MessageLookupByLibrary.simpleMessage("Kaarten"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"), "merchandise": MessageLookupByLibrary.simpleMessage("Merchandise"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobiel, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Mobiel, Web, Desktop"),
@ -926,12 +937,12 @@ class MessageLookup extends MessageLookupByLibrary {
"Pas je zoekopdracht aan of zoek naar"), "Pas je zoekopdracht aan of zoek naar"),
"moments": MessageLookupByLibrary.simpleMessage("Momenten"), "moments": MessageLookupByLibrary.simpleMessage("Momenten"),
"monthly": MessageLookupByLibrary.simpleMessage("Maandelijks"), "monthly": MessageLookupByLibrary.simpleMessage("Maandelijks"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": "moveToAlbum":
MessageLookupByLibrary.simpleMessage("Verplaats naar album"), MessageLookupByLibrary.simpleMessage("Verplaats naar album"),
"moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage( "moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage(
"Verplaatsen naar verborgen album"), "Verplaatsen naar verborgen album"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": "movedToTrash":
MessageLookupByLibrary.simpleMessage("Naar prullenbak verplaatst"), MessageLookupByLibrary.simpleMessage("Naar prullenbak verplaatst"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -1001,15 +1012,15 @@ class MessageLookup extends MessageLookupByLibrary {
"passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage( "passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage(
"Wachtwoord succesvol aangepast"), "Wachtwoord succesvol aangepast"),
"passwordLock": MessageLookupByLibrary.simpleMessage("Wachtwoord slot"), "passwordLock": MessageLookupByLibrary.simpleMessage("Wachtwoord slot"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Wij slaan dit wachtwoord niet op, dus als je het vergeet, kunnen <underline>we je gegevens niet ontsleutelen</underline>"), "Wij slaan dit wachtwoord niet op, dus als je het vergeet, kunnen <underline>we je gegevens niet ontsleutelen</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Betaalgegevens"), MessageLookupByLibrary.simpleMessage("Betaalgegevens"),
"paymentFailed": "paymentFailed":
MessageLookupByLibrary.simpleMessage("Betaling mislukt"), MessageLookupByLibrary.simpleMessage("Betaling mislukt"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingItems": "pendingItems":
MessageLookupByLibrary.simpleMessage("Bestanden in behandeling"), MessageLookupByLibrary.simpleMessage("Bestanden in behandeling"),
"pendingSync": MessageLookupByLibrary.simpleMessage( "pendingSync": MessageLookupByLibrary.simpleMessage(
@ -1037,7 +1048,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Album bovenaan vastzetten"), MessageLookupByLibrary.simpleMessage("Album bovenaan vastzetten"),
"playOnTv": "playOnTv":
MessageLookupByLibrary.simpleMessage("Album afspelen op TV"), MessageLookupByLibrary.simpleMessage("Album afspelen op TV"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("PlayStore abonnement"), MessageLookupByLibrary.simpleMessage("PlayStore abonnement"),
"pleaseCheckYourInternetConnectionAndTryAgain": "pleaseCheckYourInternetConnectionAndTryAgain":
@ -1049,12 +1060,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Neem contact op met klantenservice als het probleem aanhoudt"), "Neem contact op met klantenservice als het probleem aanhoudt"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage( "pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage(
"Geef alstublieft toestemming"), "Geef alstublieft toestemming"),
"pleaseLoginAgain": "pleaseLoginAgain":
MessageLookupByLibrary.simpleMessage("Log opnieuw in"), MessageLookupByLibrary.simpleMessage("Log opnieuw in"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": "pleaseTryAgain":
MessageLookupByLibrary.simpleMessage("Probeer het nog eens"), MessageLookupByLibrary.simpleMessage("Probeer het nog eens"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -1089,7 +1100,7 @@ class MessageLookup extends MessageLookupByLibrary {
"raiseTicket": MessageLookupByLibrary.simpleMessage("Meld probleem"), "raiseTicket": MessageLookupByLibrary.simpleMessage("Meld probleem"),
"rateTheApp": MessageLookupByLibrary.simpleMessage("Beoordeel de app"), "rateTheApp": MessageLookupByLibrary.simpleMessage("Beoordeel de app"),
"rateUs": MessageLookupByLibrary.simpleMessage("Beoordeel ons"), "rateUs": MessageLookupByLibrary.simpleMessage("Beoordeel ons"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Herstellen"), "recover": MessageLookupByLibrary.simpleMessage("Herstellen"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Account herstellen"), MessageLookupByLibrary.simpleMessage("Account herstellen"),
@ -1120,7 +1131,7 @@ class MessageLookup extends MessageLookupByLibrary {
"1. Geef deze code aan je vrienden"), "1. Geef deze code aan je vrienden"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Ze registreren voor een betaald plan"), "2. Ze registreren voor een betaald plan"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Referenties"), "referrals": MessageLookupByLibrary.simpleMessage("Referenties"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Verwijzingen zijn momenteel gepauzeerd"), "Verwijzingen zijn momenteel gepauzeerd"),
@ -1146,7 +1157,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Verwijder link"), "removeLink": MessageLookupByLibrary.simpleMessage("Verwijder link"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Deelnemer verwijderen"), MessageLookupByLibrary.simpleMessage("Deelnemer verwijderen"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Verwijder publieke link"), MessageLookupByLibrary.simpleMessage("Verwijder publieke link"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1162,7 +1173,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Bestandsnaam wijzigen"), MessageLookupByLibrary.simpleMessage("Bestandsnaam wijzigen"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Abonnement verlengen"), MessageLookupByLibrary.simpleMessage("Abonnement verlengen"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("Een fout melden"), "reportABug": MessageLookupByLibrary.simpleMessage("Een fout melden"),
"reportBug": MessageLookupByLibrary.simpleMessage("Fout melden"), "reportBug": MessageLookupByLibrary.simpleMessage("Fout melden"),
"resendEmail": "resendEmail":
@ -1224,7 +1235,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Foto\'s groeperen die in een bepaalde straal van een foto worden genomen"), "Foto\'s groeperen die in een bepaalde straal van een foto worden genomen"),
"searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage(
"Nodig mensen uit, en je ziet alle foto\'s die door hen worden gedeeld hier"), "Nodig mensen uit, en je ziet alle foto\'s die door hen worden gedeeld hier"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("Beveiliging"), "security": MessageLookupByLibrary.simpleMessage("Beveiliging"),
"selectALocation": "selectALocation":
MessageLookupByLibrary.simpleMessage("Selecteer een locatie"), MessageLookupByLibrary.simpleMessage("Selecteer een locatie"),
@ -1251,8 +1262,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Geselecteerde bestanden worden verwijderd uit alle albums en verplaatst naar de prullenbak."), "Geselecteerde bestanden worden verwijderd uit alle albums en verplaatst naar de prullenbak."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Verzenden"), "send": MessageLookupByLibrary.simpleMessage("Verzenden"),
"sendEmail": MessageLookupByLibrary.simpleMessage("E-mail versturen"), "sendEmail": MessageLookupByLibrary.simpleMessage("E-mail versturen"),
"sendInvite": "sendInvite":
@ -1276,16 +1287,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Deel nu een album"), MessageLookupByLibrary.simpleMessage("Deel nu een album"),
"shareLink": MessageLookupByLibrary.simpleMessage("Link delen"), "shareLink": MessageLookupByLibrary.simpleMessage("Link delen"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Deel alleen met de mensen die u wilt"), "Deel alleen met de mensen die u wilt"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Download ente zodat we gemakkelijk foto\'s en video\'s van originele kwaliteit kunnen delen\n\nhttps://ente.io"), "Download ente zodat we gemakkelijk foto\'s en video\'s van originele kwaliteit kunnen delen\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Delen met niet-ente gebruikers"), "Delen met niet-ente gebruikers"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": "shareYourFirstAlbum":
MessageLookupByLibrary.simpleMessage("Deel jouw eerste album"), MessageLookupByLibrary.simpleMessage("Deel jouw eerste album"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1296,7 +1307,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Nieuwe gedeelde foto\'s"), MessageLookupByLibrary.simpleMessage("Nieuwe gedeelde foto\'s"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Ontvang meldingen wanneer iemand een foto toevoegt aan een gedeeld album waar je deel van uitmaakt"), "Ontvang meldingen wanneer iemand een foto toevoegt aan een gedeeld album waar je deel van uitmaakt"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": MessageLookupByLibrary.simpleMessage("Gedeeld met mij"), "sharedWithMe": MessageLookupByLibrary.simpleMessage("Gedeeld met mij"),
"sharedWithYou": "sharedWithYou":
MessageLookupByLibrary.simpleMessage("Gedeeld met jou"), MessageLookupByLibrary.simpleMessage("Gedeeld met jou"),
@ -1311,11 +1322,11 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Log uit op andere apparaten"), MessageLookupByLibrary.simpleMessage("Log uit op andere apparaten"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"Ik ga akkoord met de <u-terms>gebruiksvoorwaarden</u-terms> en <u-policy>privacybeleid</u-policy>"), "Ik ga akkoord met de <u-terms>gebruiksvoorwaarden</u-terms> en <u-policy>privacybeleid</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Het wordt uit alle albums verwijderd."), "Het wordt uit alle albums verwijderd."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Overslaan"), "skip": MessageLookupByLibrary.simpleMessage("Overslaan"),
"social": MessageLookupByLibrary.simpleMessage("Sociale media"), "social": MessageLookupByLibrary.simpleMessage("Sociale media"),
"someItemsAreInBothEnteAndYourDevice": MessageLookupByLibrary.simpleMessage( "someItemsAreInBothEnteAndYourDevice": MessageLookupByLibrary.simpleMessage(
@ -1353,13 +1364,13 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("Opslagruimte"), "storage": MessageLookupByLibrary.simpleMessage("Opslagruimte"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familie"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Familie"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Jij"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Jij"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": "storageLimitExceeded":
MessageLookupByLibrary.simpleMessage("Opslaglimiet overschreden"), MessageLookupByLibrary.simpleMessage("Opslaglimiet overschreden"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Sterk"), "strongStrength": MessageLookupByLibrary.simpleMessage("Sterk"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Abonneer"), "subscribe": MessageLookupByLibrary.simpleMessage("Abonneer"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Het lijkt erop dat je abonnement is verlopen. Abonneer om delen mogelijk te maken."), "Het lijkt erop dat je abonnement is verlopen. Abonneer om delen mogelijk te maken."),
@ -1376,7 +1387,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Features voorstellen"), MessageLookupByLibrary.simpleMessage("Features voorstellen"),
"support": MessageLookupByLibrary.simpleMessage("Ondersteuning"), "support": MessageLookupByLibrary.simpleMessage("Ondersteuning"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Synchronisatie gestopt"), MessageLookupByLibrary.simpleMessage("Synchronisatie gestopt"),
"syncing": MessageLookupByLibrary.simpleMessage("Synchroniseren..."), "syncing": MessageLookupByLibrary.simpleMessage("Synchroniseren..."),
@ -1404,7 +1415,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Deze bestanden zullen worden verwijderd van uw apparaat."), "Deze bestanden zullen worden verwijderd van uw apparaat."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Ze zullen uit alle albums worden verwijderd."), "Ze zullen uit alle albums worden verwijderd."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1420,7 +1431,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Dit e-mailadres is al in gebruik"), "Dit e-mailadres is al in gebruik"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Deze foto heeft geen exif gegevens"), "Deze foto heeft geen exif gegevens"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": "thisIsYourVerificationId":
MessageLookupByLibrary.simpleMessage("Dit is uw verificatie-ID"), MessageLookupByLibrary.simpleMessage("Dit is uw verificatie-ID"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1437,7 +1448,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("totaal"), "total": MessageLookupByLibrary.simpleMessage("totaal"),
"totalSize": MessageLookupByLibrary.simpleMessage("Totale grootte"), "totalSize": MessageLookupByLibrary.simpleMessage("Totale grootte"),
"trash": MessageLookupByLibrary.simpleMessage("Prullenbak"), "trash": MessageLookupByLibrary.simpleMessage("Prullenbak"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Probeer opnieuw"), "tryAgain": MessageLookupByLibrary.simpleMessage("Probeer opnieuw"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Schakel back-up in om bestanden die toegevoegd zijn aan deze map op dit apparaat automatisch te uploaden."), "Schakel back-up in om bestanden die toegevoegd zijn aan deze map op dit apparaat automatisch te uploaden."),
@ -1493,7 +1504,7 @@ class MessageLookup extends MessageLookupByLibrary {
"useSelectedPhoto": "useSelectedPhoto":
MessageLookupByLibrary.simpleMessage("Gebruik geselecteerde foto"), MessageLookupByLibrary.simpleMessage("Gebruik geselecteerde foto"),
"usedSpace": MessageLookupByLibrary.simpleMessage("Gebruikte ruimte"), "usedSpace": MessageLookupByLibrary.simpleMessage("Gebruikte ruimte"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Verificatie mislukt, probeer het opnieuw"), "Verificatie mislukt, probeer het opnieuw"),
@ -1501,7 +1512,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Verificatie ID"), MessageLookupByLibrary.simpleMessage("Verificatie ID"),
"verify": MessageLookupByLibrary.simpleMessage("Verifiëren"), "verify": MessageLookupByLibrary.simpleMessage("Verifiëren"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("Bevestig e-mail"), "verifyEmail": MessageLookupByLibrary.simpleMessage("Bevestig e-mail"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verifiëren"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verifiëren"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Bevestig wachtwoord"), MessageLookupByLibrary.simpleMessage("Bevestig wachtwoord"),
@ -1530,11 +1541,11 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"We ondersteunen het bewerken van foto\'s en albums waar je niet de eigenaar van bent nog niet"), "We ondersteunen het bewerken van foto\'s en albums waar je niet de eigenaar van bent nog niet"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Zwak"), "weakStrength": MessageLookupByLibrary.simpleMessage("Zwak"),
"welcomeBack": MessageLookupByLibrary.simpleMessage("Welkom terug!"), "welcomeBack": MessageLookupByLibrary.simpleMessage("Welkom terug!"),
"yearly": MessageLookupByLibrary.simpleMessage("Jaarlijks"), "yearly": MessageLookupByLibrary.simpleMessage("Jaarlijks"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Ja"), "yes": MessageLookupByLibrary.simpleMessage("Ja"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Ja, opzeggen"), "yesCancel": MessageLookupByLibrary.simpleMessage("Ja, opzeggen"),
"yesConvertToViewer": "yesConvertToViewer":
@ -1564,7 +1575,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Je kunt niet met jezelf delen"), "Je kunt niet met jezelf delen"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"U heeft geen gearchiveerde bestanden."), "U heeft geen gearchiveerde bestanden."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": "yourAccountHasBeenDeleted":
MessageLookupByLibrary.simpleMessage("Je account is verwijderd"), MessageLookupByLibrary.simpleMessage("Je account is verwijderd"),
"yourMap": MessageLookupByLibrary.simpleMessage("Jouw kaart"), "yourMap": MessageLookupByLibrary.simpleMessage("Jouw kaart"),

View file

@ -20,12 +20,20 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary { class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'no'; String get localeName => 'no';
static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{ static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
"accountWelcomeBack": "accountWelcomeBack":
MessageLookupByLibrary.simpleMessage("Velkommen tilbake!"), MessageLookupByLibrary.simpleMessage("Velkommen tilbake!"),
"addCollaborators": m0,
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewers": m1,
"askDeleteReason": MessageLookupByLibrary.simpleMessage( "askDeleteReason": MessageLookupByLibrary.simpleMessage(
"Hva er hovedårsaken til at du sletter kontoen din?"), "Hva er hovedårsaken til at du sletter kontoen din?"),
"cancel": MessageLookupByLibrary.simpleMessage("Avbryt"), "cancel": MessageLookupByLibrary.simpleMessage("Avbryt"),
@ -59,6 +67,9 @@ class MessageLookup extends MessageLookupByLibrary {
"kindlyHelpUsWithThisInformation": MessageLookupByLibrary.simpleMessage( "kindlyHelpUsWithThisInformation": MessageLookupByLibrary.simpleMessage(
"Vær vennlig og hjelp oss med denne informasjonen"), "Vær vennlig og hjelp oss med denne informasjonen"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Locations"),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"modifyYourQueryOrTrySearchingFor": "modifyYourQueryOrTrySearchingFor":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Modify your query, or try searching for"), "Modify your query, or try searching for"),

View file

@ -20,7 +20,13 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary { class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'pl'; String get localeName => 'pl';
static String m34(passwordStrengthValue) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m36(passwordStrengthValue) =>
"Siła hasła: ${passwordStrengthValue}"; "Siła hasła: ${passwordStrengthValue}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -28,8 +34,10 @@ class MessageLookup extends MessageLookupByLibrary {
"accountWelcomeBack": "accountWelcomeBack":
MessageLookupByLibrary.simpleMessage("Witaj ponownie!"), MessageLookupByLibrary.simpleMessage("Witaj ponownie!"),
"activeSessions": MessageLookupByLibrary.simpleMessage("Aktywne sesje"), "activeSessions": MessageLookupByLibrary.simpleMessage("Aktywne sesje"),
"addCollaborators": m0,
"addToHiddenAlbum": "addToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Add to hidden album"), MessageLookupByLibrary.simpleMessage("Add to hidden album"),
"addViewers": m1,
"askDeleteReason": MessageLookupByLibrary.simpleMessage( "askDeleteReason": MessageLookupByLibrary.simpleMessage(
"Jaka jest przyczyna usunięcia konta?"), "Jaka jest przyczyna usunięcia konta?"),
"cancel": MessageLookupByLibrary.simpleMessage("Anuluj"), "cancel": MessageLookupByLibrary.simpleMessage("Anuluj"),
@ -119,6 +127,9 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Pomóż nam z tą informacją"), MessageLookupByLibrary.simpleMessage("Pomóż nam z tą informacją"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Locations"),
"logInLabel": MessageLookupByLibrary.simpleMessage("Zaloguj się"), "logInLabel": MessageLookupByLibrary.simpleMessage("Zaloguj się"),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"moderateStrength": MessageLookupByLibrary.simpleMessage("Umiarkowana"), "moderateStrength": MessageLookupByLibrary.simpleMessage("Umiarkowana"),
"modifyYourQueryOrTrySearchingFor": "modifyYourQueryOrTrySearchingFor":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -134,7 +145,7 @@ class MessageLookup extends MessageLookupByLibrary {
"password": MessageLookupByLibrary.simpleMessage("Hasło"), "password": MessageLookupByLibrary.simpleMessage("Hasło"),
"passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage( "passwordChangedSuccessfully": MessageLookupByLibrary.simpleMessage(
"Hasło zostało pomyślnie zmienione"), "Hasło zostało pomyślnie zmienione"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Nie przechowujemy tego hasła, więc jeśli go zapomnisz, <underline>nie będziemy w stanie odszyfrować Twoich danych</underline>"), "Nie przechowujemy tego hasła, więc jeśli go zapomnisz, <underline>nie będziemy w stanie odszyfrować Twoich danych</underline>"),
"pleaseTryAgain": "pleaseTryAgain":

View file

@ -21,27 +21,33 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'pt'; String get localeName => 'pt';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: 'Adicionar item', other: 'Adicionar itens')}"; "${Intl.plural(count, one: 'Adicionar item', other: 'Adicionar itens')}";
static String m1(storageAmount, endDate) => static String m3(storageAmount, endDate) =>
"Seu complemento ${storageAmount} é válido até o dia ${endDate}"; "Seu complemento ${storageAmount} é válido até o dia ${endDate}";
static String m2(emailOrName) => "Adicionado por ${emailOrName}"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "Adicionado com sucesso a ${albumName}"; static String m4(emailOrName) => "Adicionado por ${emailOrName}";
static String m4(count) => static String m5(albumName) => "Adicionado com sucesso a ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: 'Nenhum Participante', one: '1 Participante', other: '${count} Participantes')}"; "${Intl.plural(count, zero: 'Nenhum Participante', one: '1 Participante', other: '${count} Participantes')}";
static String m5(versionValue) => "Versão: ${versionValue}"; static String m7(versionValue) => "Versão: ${versionValue}";
static String m6(paymentProvider) => static String m8(paymentProvider) =>
"Por favor, cancele sua assinatura existente do ${paymentProvider} primeiro"; "Por favor, cancele sua assinatura existente do ${paymentProvider} primeiro";
static String m7(user) => static String m9(user) =>
"${user} Não poderá adicionar mais fotos a este álbum\n\nEles ainda poderão remover as fotos existentes adicionadas por eles"; "${user} Não poderá adicionar mais fotos a este álbum\n\nEles ainda poderão remover as fotos existentes adicionadas por eles";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': 'true':
'Sua família reeinvindicou ${storageAmountInGb} GB até agora', 'Sua família reeinvindicou ${storageAmountInGb} GB até agora',
@ -49,163 +55,163 @@ class MessageLookup extends MessageLookupByLibrary {
'other': 'Você reeinvindicou ${storageAmountInGb} GB até agora', 'other': 'Você reeinvindicou ${storageAmountInGb} GB até agora',
})}"; })}";
static String m9(albumName) => "Link colaborativo criado para ${albumName}"; static String m11(albumName) => "Link colaborativo criado para ${albumName}";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"Entre em contato com <green>${familyAdminEmail}</green> para gerenciar sua assinatura"; "Entre em contato com <green>${familyAdminEmail}</green> para gerenciar sua assinatura";
static String m11(provider) => static String m13(provider) =>
"Entre em contato conosco pelo e-mail support@ente.io para gerenciar sua assinatura ${provider}."; "Entre em contato conosco pelo e-mail support@ente.io para gerenciar sua assinatura ${provider}.";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: 'Excluir ${count} item', other: 'Excluir ${count} itens')}"; "${Intl.plural(count, one: 'Excluir ${count} item', other: 'Excluir ${count} itens')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"Excluindo ${currentlyDeleting} / ${totalCount}"; "Excluindo ${currentlyDeleting} / ${totalCount}";
static String m14(albumName) => static String m16(albumName) =>
"Isso removerá o link público para acessar \"${albumName}\"."; "Isso removerá o link público para acessar \"${albumName}\".";
static String m15(supportEmail) => static String m17(supportEmail) =>
"Por favor, envie um e-mail para ${supportEmail} a partir do seu endereço de e-mail registrado"; "Por favor, envie um e-mail para ${supportEmail} a partir do seu endereço de e-mail registrado";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"Você limpou ${Intl.plural(count, one: '${count} arquivo duplicado', other: '${count} arquivos duplicados')}, salvando (${storageSaved}!)"; "Você limpou ${Intl.plural(count, one: '${count} arquivo duplicado', other: '${count} arquivos duplicados')}, salvando (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} Arquivos, ${formattedSize} cada"; "${count} Arquivos, ${formattedSize} cada";
static String m18(newEmail) => "E-mail alterado para ${newEmail}"; static String m20(newEmail) => "E-mail alterado para ${newEmail}";
static String m19(email) => static String m21(email) =>
"${email} Não possui uma conta Ente.\n\nEnvie um convite para compartilhar fotos."; "${email} Não possui uma conta Ente.\n\nEnvie um convite para compartilhar fotos.";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"${Intl.plural(count, one: '1 arquivo', other: '${formattedNumber} arquivos')} neste dispositivo teve um backup seguro"; "${Intl.plural(count, one: '1 arquivo', other: '${formattedNumber} arquivos')} neste dispositivo teve um backup seguro";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"${Intl.plural(count, one: '1 arquivo', other: '${formattedNumber} arquivos')} neste álbum teve um backup seguro"; "${Intl.plural(count, one: '1 arquivo', other: '${formattedNumber} arquivos')} neste álbum teve um backup seguro";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"${storageAmountInGB} GB cada vez que alguém se inscrever para um plano pago e aplica o seu código"; "${storageAmountInGB} GB cada vez que alguém se inscrever para um plano pago e aplica o seu código";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} grátis"; "${freeAmount} ${storageUnit} grátis";
static String m24(endDate) => "Teste gratuito acaba em ${endDate}"; static String m26(endDate) => "Teste gratuito acaba em ${endDate}";
static String m25(count) => static String m27(count) =>
"Você ainda pode acessar ${Intl.plural(count, one: 'ele', other: 'eles')} no ente contanto que você tenha uma assinatura ativa"; "Você ainda pode acessar ${Intl.plural(count, one: 'ele', other: 'eles')} no ente contanto que você tenha uma assinatura ativa";
static String m26(sizeInMBorGB) => "Liberar ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "Liberar ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: 'Pode ser excluído do dispositivo para liberar ${formattedSize}', other: 'Eles podem ser excluídos do dispositivo para liberar ${formattedSize}')}"; "${Intl.plural(count, one: 'Pode ser excluído do dispositivo para liberar ${formattedSize}', other: 'Eles podem ser excluídos do dispositivo para liberar ${formattedSize}')}";
static String m28(currentlyProcessing, totalCount) => static String m30(currentlyProcessing, totalCount) =>
"Processando ${currentlyProcessing} / ${totalCount}"; "Processando ${currentlyProcessing} / ${totalCount}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} item', other: '${count} items')}"; "${Intl.plural(count, one: '${count} item', other: '${count} items')}";
static String m30(expiryTime) => "O link irá expirar em ${expiryTime}"; static String m32(expiryTime) => "O link irá expirar em ${expiryTime}";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: 'no memories', one: '${formattedCount} memory', other: '${formattedCount} memories')}"; "${Intl.plural(count, zero: 'no memories', one: '${formattedCount} memory', other: '${formattedCount} memories')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: 'Mover item', other: 'Mover itens')}"; "${Intl.plural(count, one: 'Mover item', other: 'Mover itens')}";
static String m33(albumName) => "Movido com sucesso para ${albumName}"; static String m35(albumName) => "Movido com sucesso para ${albumName}";
static String m34(passwordStrengthValue) => static String m36(passwordStrengthValue) =>
"Segurança da senha: ${passwordStrengthValue}"; "Segurança da senha: ${passwordStrengthValue}";
static String m35(providerName) => static String m37(providerName) =>
"Por favor, fale com o suporte ${providerName} se você foi cobrado"; "Por favor, fale com o suporte ${providerName} se você foi cobrado";
static String m36(reason) => static String m38(reason) =>
"Infelizmente o seu pagamento falhou devido a ${reason}"; "Infelizmente o seu pagamento falhou devido a ${reason}";
static String m37(endDate) => static String m39(endDate) =>
"Teste gratuito válido até ${endDate}.\nVocê pode escolher um plano pago depois."; "Teste gratuito válido até ${endDate}.\nVocê pode escolher um plano pago depois.";
static String m38(toEmail) => static String m40(toEmail) =>
"Por favor, envie-nos um e-mail para ${toEmail}"; "Por favor, envie-nos um e-mail para ${toEmail}";
static String m39(toEmail) => "Por favor, envie os logs para \n${toEmail}"; static String m41(toEmail) => "Por favor, envie os logs para \n${toEmail}";
static String m40(storeName) => "Avalie-nos em ${storeName}"; static String m42(storeName) => "Avalie-nos em ${storeName}";
static String m41(storageInGB) => "3. Ambos ganham ${storageInGB} GB* grátis"; static String m43(storageInGB) => "3. Ambos ganham ${storageInGB} GB* grátis";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} será removido deste álbum compartilhado\n\nQuaisquer fotos adicionadas por eles também serão removidas do álbum"; "${userEmail} será removido deste álbum compartilhado\n\nQuaisquer fotos adicionadas por eles também serão removidas do álbum";
static String m43(endDate) => "Renovação de assinatura em ${endDate}"; static String m45(endDate) => "Renovação de assinatura em ${endDate}";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, one: '${count} resultado encontrado', other: '${count} resultado encontrado')}"; "${Intl.plural(count, one: '${count} resultado encontrado', other: '${count} resultado encontrado')}";
static String m45(count) => "${count} Selecionados"; static String m47(count) => "${count} Selecionados";
static String m46(count, yourCount) => static String m48(count, yourCount) =>
"${count} Selecionado (${yourCount} seus)"; "${count} Selecionado (${yourCount} seus)";
static String m47(verificationID) => static String m49(verificationID) =>
"Aqui está meu ID de verificação para o Ente.io: ${verificationID}"; "Aqui está meu ID de verificação para o Ente.io: ${verificationID}";
static String m48(verificationID) => static String m50(verificationID) =>
"Ei, você pode confirmar que este é seu ID de verificação do Ente.io? ${verificationID}"; "Ei, você pode confirmar que este é seu ID de verificação do Ente.io? ${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"Código de referência do ente: ${referralCode} \n\nAplique em Configurações → Geral → Indicações para obter ${referralStorageInGB} GB gratuitamente após a sua inscrição em um plano pago\n\nhttps://ente.io"; "Código de referência do ente: ${referralCode} \n\nAplique em Configurações → Geral → Indicações para obter ${referralStorageInGB} GB gratuitamente após a sua inscrição em um plano pago\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: 'Compartilhe com pessoas específicas', one: 'Compartilhado com 1 pessoa', other: 'Compartilhado com ${numberOfPeople} pessoas')}"; "${Intl.plural(numberOfPeople, zero: 'Compartilhe com pessoas específicas', one: 'Compartilhado com 1 pessoa', other: 'Compartilhado com ${numberOfPeople} pessoas')}";
static String m51(emailIDs) => "Compartilhado com ${emailIDs}"; static String m53(emailIDs) => "Compartilhado com ${emailIDs}";
static String m52(fileType) => static String m54(fileType) =>
"Este ${fileType} será excluído do seu dispositivo."; "Este ${fileType} será excluído do seu dispositivo.";
static String m53(fileType) => static String m55(fileType) =>
"Este ${fileType} está em ente e no seu dispositivo."; "Este ${fileType} está em ente e no seu dispositivo.";
static String m54(fileType) => "Este ${fileType} será excluído do ente."; static String m56(fileType) => "Este ${fileType} será excluído do ente.";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"${usedAmount} ${usedStorageUnit} de ${totalAmount} ${totalStorageUnit} usado"; "${usedAmount} ${usedStorageUnit} de ${totalAmount} ${totalStorageUnit} usado";
static String m57(id) => static String m59(id) =>
"Seu ${id} já está vinculado a outra conta ente.\nSe você gostaria de usar seu ${id} com esta conta, por favor contate nosso suporte\'\'"; "Seu ${id} já está vinculado a outra conta ente.\nSe você gostaria de usar seu ${id} com esta conta, por favor contate nosso suporte\'\'";
static String m58(endDate) => "Sua assinatura será cancelada em ${endDate}"; static String m60(endDate) => "Sua assinatura será cancelada em ${endDate}";
static String m59(completed, total) => static String m61(completed, total) =>
"${completed}/${total} memórias preservadas"; "${completed}/${total} memórias preservadas";
static String m60(storageAmountInGB) => static String m62(storageAmountInGB) =>
"Eles também recebem ${storageAmountInGB} GB"; "Eles também recebem ${storageAmountInGB} GB";
static String m61(email) => "Este é o ID de verificação de ${email}"; static String m63(email) => "Este é o ID de verificação de ${email}";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1 dia', other: '${count} dias')}"; "${Intl.plural(count, zero: '', one: '1 dia', other: '${count} dias')}";
static String m63(endDate) => "Válido até ${endDate}"; static String m65(endDate) => "Válido até ${endDate}";
static String m64(email) => "Verificar ${email}"; static String m66(email) => "Verificar ${email}";
static String m65(email) => "Enviamos um e-mail à <green>${email}</green>"; static String m67(email) => "Enviamos um e-mail à <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} anos atrás', other: '${count} anos atrás')}"; "${Intl.plural(count, one: '${count} anos atrás', other: '${count} anos atrás')}";
static String m67(storageSaved) => static String m69(storageSaved) =>
"Você liberou ${storageSaved} com sucesso!"; "Você liberou ${storageSaved} com sucesso!";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
@ -224,16 +230,17 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Adicionar um novo email"), MessageLookupByLibrary.simpleMessage("Adicionar um novo email"),
"addCollaborator": "addCollaborator":
MessageLookupByLibrary.simpleMessage("Adicionar colaborador"), MessageLookupByLibrary.simpleMessage("Adicionar colaborador"),
"addCollaborators": m0,
"addFromDevice": MessageLookupByLibrary.simpleMessage( "addFromDevice": MessageLookupByLibrary.simpleMessage(
"Adicionar a partir do dispositivo"), "Adicionar a partir do dispositivo"),
"addItem": m0, "addItem": m2,
"addLocation": MessageLookupByLibrary.simpleMessage("Adicionar local"), "addLocation": MessageLookupByLibrary.simpleMessage("Adicionar local"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("Adicionar"), "addLocationButton": MessageLookupByLibrary.simpleMessage("Adicionar"),
"addMore": MessageLookupByLibrary.simpleMessage("Adicione mais"), "addMore": MessageLookupByLibrary.simpleMessage("Adicione mais"),
"addNew": MessageLookupByLibrary.simpleMessage("Adicionar novo"), "addNew": MessageLookupByLibrary.simpleMessage("Adicionar novo"),
"addOnPageSubtitle": "addOnPageSubtitle":
MessageLookupByLibrary.simpleMessage("Detalhes dos complementos"), MessageLookupByLibrary.simpleMessage("Detalhes dos complementos"),
"addOnValidTill": m1, "addOnValidTill": m3,
"addOns": MessageLookupByLibrary.simpleMessage("Complementos"), "addOns": MessageLookupByLibrary.simpleMessage("Complementos"),
"addPhotos": MessageLookupByLibrary.simpleMessage("Adicionar fotos"), "addPhotos": MessageLookupByLibrary.simpleMessage("Adicionar fotos"),
"addSelected": "addSelected":
@ -245,11 +252,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Adicionar a álbum oculto"), MessageLookupByLibrary.simpleMessage("Adicionar a álbum oculto"),
"addViewer": "addViewer":
MessageLookupByLibrary.simpleMessage("Adicionar visualizador"), MessageLookupByLibrary.simpleMessage("Adicionar visualizador"),
"addViewers": m1,
"addYourPhotosNow": "addYourPhotosNow":
MessageLookupByLibrary.simpleMessage("Adicione suas fotos agora"), MessageLookupByLibrary.simpleMessage("Adicione suas fotos agora"),
"addedAs": MessageLookupByLibrary.simpleMessage("Adicionado como"), "addedAs": MessageLookupByLibrary.simpleMessage("Adicionado como"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": MessageLookupByLibrary.simpleMessage( "addingToFavorites": MessageLookupByLibrary.simpleMessage(
"Adicionando aos favoritos..."), "Adicionando aos favoritos..."),
"advanced": MessageLookupByLibrary.simpleMessage("Avançado"), "advanced": MessageLookupByLibrary.simpleMessage("Avançado"),
@ -260,7 +268,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("Após 1 semana"), "after1Week": MessageLookupByLibrary.simpleMessage("Após 1 semana"),
"after1Year": MessageLookupByLibrary.simpleMessage("Após 1 ano"), "after1Year": MessageLookupByLibrary.simpleMessage("Após 1 ano"),
"albumOwner": MessageLookupByLibrary.simpleMessage("Proprietário"), "albumOwner": MessageLookupByLibrary.simpleMessage("Proprietário"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("Título do álbum"), "albumTitle": MessageLookupByLibrary.simpleMessage("Título do álbum"),
"albumUpdated": "albumUpdated":
MessageLookupByLibrary.simpleMessage("Álbum atualizado"), MessageLookupByLibrary.simpleMessage("Álbum atualizado"),
@ -297,7 +305,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Android, iOS, Web, Desktop"),
"androidSignInTitle": "androidSignInTitle":
MessageLookupByLibrary.simpleMessage("Autenticação necessária"), MessageLookupByLibrary.simpleMessage("Autenticação necessária"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("ID da Apple"), "appleId": MessageLookupByLibrary.simpleMessage("ID da Apple"),
"apply": MessageLookupByLibrary.simpleMessage("Aplicar"), "apply": MessageLookupByLibrary.simpleMessage("Aplicar"),
"applyCodeTitle": "applyCodeTitle":
@ -384,10 +392,10 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage( "canOnlyRemoveFilesOwnedByYou": MessageLookupByLibrary.simpleMessage(
"Só é possível remover arquivos de sua propriedade"), "Só é possível remover arquivos de sua propriedade"),
"cancel": MessageLookupByLibrary.simpleMessage("Cancelar"), "cancel": MessageLookupByLibrary.simpleMessage("Cancelar"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": "cancelSubscription":
MessageLookupByLibrary.simpleMessage("Cancelar assinatura"), MessageLookupByLibrary.simpleMessage("Cancelar assinatura"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage( "cannotDeleteSharedFiles": MessageLookupByLibrary.simpleMessage(
"Não é possível excluir arquivos compartilhados"), "Não é possível excluir arquivos compartilhados"),
"castInstruction": MessageLookupByLibrary.simpleMessage( "castInstruction": MessageLookupByLibrary.simpleMessage(
@ -411,9 +419,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Reivindicar armazenamento gratuito"), "Reivindicar armazenamento gratuito"),
"claimMore": MessageLookupByLibrary.simpleMessage("Reivindique mais!"), "claimMore": MessageLookupByLibrary.simpleMessage("Reivindique mais!"),
"claimed": MessageLookupByLibrary.simpleMessage("Reivindicado"), "claimed": MessageLookupByLibrary.simpleMessage("Reivindicado"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"cleanUncategorized": "cleanUncategorized":
MessageLookupByLibrary.simpleMessage("Limpar Sem Categoria"), MessageLookupByLibrary.simpleMessage("Limpar Sem Categoria"),
"cleanUncategorizedDescription": MessageLookupByLibrary.simpleMessage(
"Remover todos os arquivos de Não Categorizados que estão presentes em outros álbuns"),
"clearCaches": MessageLookupByLibrary.simpleMessage("Limpar cache"), "clearCaches": MessageLookupByLibrary.simpleMessage("Limpar cache"),
"clearIndexes": MessageLookupByLibrary.simpleMessage("Limpar índices"), "clearIndexes": MessageLookupByLibrary.simpleMessage("Limpar índices"),
"click": MessageLookupByLibrary.simpleMessage("Clique"), "click": MessageLookupByLibrary.simpleMessage("Clique"),
@ -434,7 +444,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Crie um link para permitir pessoas adicionar e ver fotos no seu álbum compartilhado sem a necessidade do aplicativo ou uma conta Ente. Ótimo para colecionar fotos de eventos."), "Crie um link para permitir pessoas adicionar e ver fotos no seu álbum compartilhado sem a necessidade do aplicativo ou uma conta Ente. Ótimo para colecionar fotos de eventos."),
"collaborativeLink": "collaborativeLink":
MessageLookupByLibrary.simpleMessage("Link Colaborativo"), MessageLookupByLibrary.simpleMessage("Link Colaborativo"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("Colaborador"), "collaborator": MessageLookupByLibrary.simpleMessage("Colaborador"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
@ -461,10 +471,10 @@ class MessageLookup extends MessageLookupByLibrary {
"Confirme a chave de recuperação"), "Confirme a chave de recuperação"),
"confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage( "confirmYourRecoveryKey": MessageLookupByLibrary.simpleMessage(
"Confirme sua chave de recuperação"), "Confirme sua chave de recuperação"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": "contactSupport":
MessageLookupByLibrary.simpleMessage("Contate o suporte"), MessageLookupByLibrary.simpleMessage("Contate o suporte"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("Contatos"), "contacts": MessageLookupByLibrary.simpleMessage("Contatos"),
"contents": MessageLookupByLibrary.simpleMessage("Conteúdos"), "contents": MessageLookupByLibrary.simpleMessage("Conteúdos"),
"continueLabel": MessageLookupByLibrary.simpleMessage("Continuar"), "continueLabel": MessageLookupByLibrary.simpleMessage("Continuar"),
@ -540,10 +550,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Excluir do dispositivo"), MessageLookupByLibrary.simpleMessage("Excluir do dispositivo"),
"deleteFromEnte": "deleteFromEnte":
MessageLookupByLibrary.simpleMessage("Excluir do ente"), MessageLookupByLibrary.simpleMessage("Excluir do ente"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": MessageLookupByLibrary.simpleMessage("Excluir Local"), "deleteLocation": MessageLookupByLibrary.simpleMessage("Excluir Local"),
"deletePhotos": MessageLookupByLibrary.simpleMessage("Excluir fotos"), "deletePhotos": MessageLookupByLibrary.simpleMessage("Excluir fotos"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage( "deleteReason1": MessageLookupByLibrary.simpleMessage(
"Está faltando um recurso-chave que eu preciso"), "Está faltando um recurso-chave que eu preciso"),
"deleteReason2": MessageLookupByLibrary.simpleMessage( "deleteReason2": MessageLookupByLibrary.simpleMessage(
@ -558,7 +568,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Excluir álbum compartilhado?"), "Excluir álbum compartilhado?"),
"deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage( "deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage(
"O álbum será apagado para todos\n\nVocê perderá o acesso a fotos compartilhadas neste álbum que pertencem aos outros"), "O álbum será apagado para todos\n\nVocê perderá o acesso a fotos compartilhadas neste álbum que pertencem aos outros"),
"descriptions": MessageLookupByLibrary.simpleMessage("Descriptions"), "descriptions": MessageLookupByLibrary.simpleMessage("Descrições"),
"deselectAll": MessageLookupByLibrary.simpleMessage("Desmarcar todos"), "deselectAll": MessageLookupByLibrary.simpleMessage("Desmarcar todos"),
"designedToOutlive": "designedToOutlive":
MessageLookupByLibrary.simpleMessage("Feito para ter logenvidade"), MessageLookupByLibrary.simpleMessage("Feito para ter logenvidade"),
@ -580,7 +590,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Os espectadores ainda podem tirar screenshots ou salvar uma cópia de suas fotos usando ferramentas externas"), "Os espectadores ainda podem tirar screenshots ou salvar uma cópia de suas fotos usando ferramentas externas"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("Observe"), MessageLookupByLibrary.simpleMessage("Observe"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage( "disableTwofactor": MessageLookupByLibrary.simpleMessage(
"Desativar autenticação de dois fatores"), "Desativar autenticação de dois fatores"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
@ -603,9 +613,9 @@ class MessageLookup extends MessageLookupByLibrary {
"downloadFailed": "downloadFailed":
MessageLookupByLibrary.simpleMessage("Falha ao baixar"), MessageLookupByLibrary.simpleMessage("Falha ao baixar"),
"downloading": MessageLookupByLibrary.simpleMessage("Baixando..."), "downloading": MessageLookupByLibrary.simpleMessage("Baixando..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("Editar"), "edit": MessageLookupByLibrary.simpleMessage("Editar"),
"editLocation": MessageLookupByLibrary.simpleMessage("Editar local"), "editLocation": MessageLookupByLibrary.simpleMessage("Editar local"),
"editLocationTagTitle": "editLocationTagTitle":
@ -616,8 +626,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Edições para local só serão vistas dentro do Ente"), "Edições para local só serão vistas dentro do Ente"),
"eligible": MessageLookupByLibrary.simpleMessage("elegível"), "eligible": MessageLookupByLibrary.simpleMessage("elegível"),
"email": MessageLookupByLibrary.simpleMessage("E-mail"), "email": MessageLookupByLibrary.simpleMessage("E-mail"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("Verificação de e-mail"), MessageLookupByLibrary.simpleMessage("Verificação de e-mail"),
"emailYourLogs": "emailYourLogs":
@ -716,8 +726,8 @@ class MessageLookup extends MessageLookupByLibrary {
"fileTypes": MessageLookupByLibrary.simpleMessage("Tipos de arquivo"), "fileTypes": MessageLookupByLibrary.simpleMessage("Tipos de arquivo"),
"fileTypesAndNames": "fileTypesAndNames":
MessageLookupByLibrary.simpleMessage("Tipos de arquivo e nomes"), MessageLookupByLibrary.simpleMessage("Tipos de arquivo e nomes"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": "filesDeleted":
MessageLookupByLibrary.simpleMessage("Arquivos excluídos"), MessageLookupByLibrary.simpleMessage("Arquivos excluídos"),
"flip": MessageLookupByLibrary.simpleMessage("Inverter"), "flip": MessageLookupByLibrary.simpleMessage("Inverter"),
@ -727,24 +737,24 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Esqueceu sua senha"), MessageLookupByLibrary.simpleMessage("Esqueceu sua senha"),
"freeStorageClaimed": MessageLookupByLibrary.simpleMessage( "freeStorageClaimed": MessageLookupByLibrary.simpleMessage(
"Armazenamento gratuito reivindicado"), "Armazenamento gratuito reivindicado"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": MessageLookupByLibrary.simpleMessage( "freeStorageUsable": MessageLookupByLibrary.simpleMessage(
"Armazenamento livre utilizável"), "Armazenamento livre utilizável"),
"freeTrial": MessageLookupByLibrary.simpleMessage("Teste gratuito"), "freeTrial": MessageLookupByLibrary.simpleMessage("Teste gratuito"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage( "freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage(
"Liberar espaço no dispositivo"), "Liberar espaço no dispositivo"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("Liberar espaço"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("Liberar espaço"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage( "galleryMemoryLimitInfo": MessageLookupByLibrary.simpleMessage(
"Até 1000 memórias mostradas na galeria"), "Até 1000 memórias mostradas na galeria"),
"general": MessageLookupByLibrary.simpleMessage("Geral"), "general": MessageLookupByLibrary.simpleMessage("Geral"),
"generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage( "generatingEncryptionKeys": MessageLookupByLibrary.simpleMessage(
"Gerando chaves de criptografia..."), "Gerando chaves de criptografia..."),
"genericProgress": m28, "genericProgress": m30,
"goToSettings": "goToSettings":
MessageLookupByLibrary.simpleMessage("Ir para Configurações"), MessageLookupByLibrary.simpleMessage("Ir para Configurações"),
"googlePlayId": "googlePlayId":
@ -806,7 +816,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Parece que algo deu errado. Por favor, tente novamente mais tarde. Se o erro persistir, entre em contato com nossa equipe de suporte."), "Parece que algo deu errado. Por favor, tente novamente mais tarde. Se o erro persistir, entre em contato com nossa equipe de suporte."),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Os itens mostram o número de dias restantes antes da exclusão permanente"), "Os itens mostram o número de dias restantes antes da exclusão permanente"),
@ -834,7 +844,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Limite do dispositivo"), MessageLookupByLibrary.simpleMessage("Limite do dispositivo"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("Ativado"), "linkEnabled": MessageLookupByLibrary.simpleMessage("Ativado"),
"linkExpired": MessageLookupByLibrary.simpleMessage("Expirado"), "linkExpired": MessageLookupByLibrary.simpleMessage("Expirado"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("Expiração do link"), "linkExpiry": MessageLookupByLibrary.simpleMessage("Expiração do link"),
"linkHasExpired": "linkHasExpired":
MessageLookupByLibrary.simpleMessage("O link expirou"), MessageLookupByLibrary.simpleMessage("O link expirou"),
@ -872,7 +882,7 @@ class MessageLookup extends MessageLookupByLibrary {
"locationName": MessageLookupByLibrary.simpleMessage("Nome do Local"), "locationName": MessageLookupByLibrary.simpleMessage("Nome do Local"),
"locationTagFeatureDescription": MessageLookupByLibrary.simpleMessage( "locationTagFeatureDescription": MessageLookupByLibrary.simpleMessage(
"Uma tag em grupo de todas as fotos que foram tiradas dentro de algum raio de uma foto"), "Uma tag em grupo de todas as fotos que foram tiradas dentro de algum raio de uma foto"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("Locais"),
"lockButtonLabel": MessageLookupByLibrary.simpleMessage("Bloquear"), "lockButtonLabel": MessageLookupByLibrary.simpleMessage("Bloquear"),
"lockScreenEnablePreSteps": MessageLookupByLibrary.simpleMessage( "lockScreenEnablePreSteps": MessageLookupByLibrary.simpleMessage(
"Para ativar o bloqueio de tela, por favor ative um método de autenticação nas configurações do sistema do seu dispositivo."), "Para ativar o bloqueio de tela, por favor ative um método de autenticação nas configurações do sistema do seu dispositivo."),
@ -884,6 +894,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("Encerrar sessão"), "logout": MessageLookupByLibrary.simpleMessage("Encerrar sessão"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"Isso enviará através dos logs para nos ajudar a depurar o seu problema. Por favor, note que nomes de arquivos serão incluídos para ajudar a rastrear problemas com arquivos específicos."), "Isso enviará através dos logs para nos ajudar a depurar o seu problema. Por favor, note que nomes de arquivos serão incluídos para ajudar a rastrear problemas com arquivos específicos."),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": "longpressOnAnItemToViewInFullscreen":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Pressione e segure em um item para exibir em tela cheia"), "Pressione e segure em um item para exibir em tela cheia"),
@ -907,7 +920,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("Mapas"), "maps": MessageLookupByLibrary.simpleMessage("Mapas"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("Produtos"), "merchandise": MessageLookupByLibrary.simpleMessage("Produtos"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"), MessageLookupByLibrary.simpleMessage("Mobile, Web, Desktop"),
@ -917,11 +930,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Modifique sua consulta ou tente procurar por"), "Modifique sua consulta ou tente procurar por"),
"moments": MessageLookupByLibrary.simpleMessage("Momentos"), "moments": MessageLookupByLibrary.simpleMessage("Momentos"),
"monthly": MessageLookupByLibrary.simpleMessage("Mensal"), "monthly": MessageLookupByLibrary.simpleMessage("Mensal"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": MessageLookupByLibrary.simpleMessage("Mover para álbum"), "moveToAlbum": MessageLookupByLibrary.simpleMessage("Mover para álbum"),
"moveToHiddenAlbum": "moveToHiddenAlbum":
MessageLookupByLibrary.simpleMessage("Mover para álbum oculto"), MessageLookupByLibrary.simpleMessage("Mover para álbum oculto"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": "movedToTrash":
MessageLookupByLibrary.simpleMessage("Movido para a lixeira"), MessageLookupByLibrary.simpleMessage("Movido para a lixeira"),
"movingFilesToAlbum": MessageLookupByLibrary.simpleMessage( "movingFilesToAlbum": MessageLookupByLibrary.simpleMessage(
@ -994,15 +1007,15 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Senha alterada com sucesso"), MessageLookupByLibrary.simpleMessage("Senha alterada com sucesso"),
"passwordLock": "passwordLock":
MessageLookupByLibrary.simpleMessage("Bloqueio de senha"), MessageLookupByLibrary.simpleMessage("Bloqueio de senha"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"Nós não salvamos essa senha, se você esquecer <underline> nós não poderemos descriptografar seus dados</underline>"), "Nós não salvamos essa senha, se você esquecer <underline> nós não poderemos descriptografar seus dados</underline>"),
"paymentDetails": "paymentDetails":
MessageLookupByLibrary.simpleMessage("Detalhes de pagamento"), MessageLookupByLibrary.simpleMessage("Detalhes de pagamento"),
"paymentFailed": "paymentFailed":
MessageLookupByLibrary.simpleMessage("Falha no pagamento"), MessageLookupByLibrary.simpleMessage("Falha no pagamento"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingItems": MessageLookupByLibrary.simpleMessage("Itens pendentes"), "pendingItems": MessageLookupByLibrary.simpleMessage("Itens pendentes"),
"pendingSync": "pendingSync":
MessageLookupByLibrary.simpleMessage("Sincronização pendente"), MessageLookupByLibrary.simpleMessage("Sincronização pendente"),
@ -1028,7 +1041,7 @@ class MessageLookup extends MessageLookupByLibrary {
"pinAlbum": MessageLookupByLibrary.simpleMessage("Fixar álbum"), "pinAlbum": MessageLookupByLibrary.simpleMessage("Fixar álbum"),
"playOnTv": "playOnTv":
MessageLookupByLibrary.simpleMessage("Reproduzir álbum na TV"), MessageLookupByLibrary.simpleMessage("Reproduzir álbum na TV"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("Assinatura da PlayStore"), MessageLookupByLibrary.simpleMessage("Assinatura da PlayStore"),
"pleaseCheckYourInternetConnectionAndTryAgain": "pleaseCheckYourInternetConnectionAndTryAgain":
@ -1040,12 +1053,12 @@ class MessageLookup extends MessageLookupByLibrary {
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Por favor, contate o suporte se o problema persistir"), "Por favor, contate o suporte se o problema persistir"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage( "pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage(
"Por favor, conceda as permissões"), "Por favor, conceda as permissões"),
"pleaseLoginAgain": MessageLookupByLibrary.simpleMessage( "pleaseLoginAgain": MessageLookupByLibrary.simpleMessage(
"Por favor, faça login novamente"), "Por favor, faça login novamente"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": "pleaseTryAgain":
MessageLookupByLibrary.simpleMessage("Por favor, tente novamente"), MessageLookupByLibrary.simpleMessage("Por favor, tente novamente"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
@ -1082,7 +1095,7 @@ class MessageLookup extends MessageLookupByLibrary {
"rateTheApp": "rateTheApp":
MessageLookupByLibrary.simpleMessage("Avalie o aplicativo"), MessageLookupByLibrary.simpleMessage("Avalie o aplicativo"),
"rateUs": MessageLookupByLibrary.simpleMessage("Avalie-nos"), "rateUs": MessageLookupByLibrary.simpleMessage("Avalie-nos"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("Recuperar"), "recover": MessageLookupByLibrary.simpleMessage("Recuperar"),
"recoverAccount": "recoverAccount":
MessageLookupByLibrary.simpleMessage("Recuperar conta"), MessageLookupByLibrary.simpleMessage("Recuperar conta"),
@ -1114,7 +1127,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Envie esse código aos seus amigos"), "Envie esse código aos seus amigos"),
"referralStep2": MessageLookupByLibrary.simpleMessage( "referralStep2": MessageLookupByLibrary.simpleMessage(
"2. Eles se inscreveram para um plano pago"), "2. Eles se inscreveram para um plano pago"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("Indicações"), "referrals": MessageLookupByLibrary.simpleMessage("Indicações"),
"referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage( "referralsAreCurrentlyPaused": MessageLookupByLibrary.simpleMessage(
"Referências estão atualmente pausadas"), "Referências estão atualmente pausadas"),
@ -1138,7 +1151,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Remover link"), "removeLink": MessageLookupByLibrary.simpleMessage("Remover link"),
"removeParticipant": "removeParticipant":
MessageLookupByLibrary.simpleMessage("Remover participante"), MessageLookupByLibrary.simpleMessage("Remover participante"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": "removePublicLink":
MessageLookupByLibrary.simpleMessage("Remover link público"), MessageLookupByLibrary.simpleMessage("Remover link público"),
"removeShareItemsWarning": MessageLookupByLibrary.simpleMessage( "removeShareItemsWarning": MessageLookupByLibrary.simpleMessage(
@ -1152,7 +1165,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameFile": MessageLookupByLibrary.simpleMessage("Renomear arquivo"), "renameFile": MessageLookupByLibrary.simpleMessage("Renomear arquivo"),
"renewSubscription": "renewSubscription":
MessageLookupByLibrary.simpleMessage("Renovar assinatura"), MessageLookupByLibrary.simpleMessage("Renovar assinatura"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": "reportABug":
MessageLookupByLibrary.simpleMessage("Reportar um problema"), MessageLookupByLibrary.simpleMessage("Reportar um problema"),
"reportBug": "reportBug":
@ -1217,7 +1230,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Fotos de grupo que estão sendo tiradas em algum raio da foto"), "Fotos de grupo que estão sendo tiradas em algum raio da foto"),
"searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage(
"Convide pessoas e você verá todas as fotos compartilhadas por elas aqui"), "Convide pessoas e você verá todas as fotos compartilhadas por elas aqui"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("Segurança"), "security": MessageLookupByLibrary.simpleMessage("Segurança"),
"selectALocation": "selectALocation":
MessageLookupByLibrary.simpleMessage("Selecionar um local"), MessageLookupByLibrary.simpleMessage("Selecionar um local"),
@ -1245,8 +1258,8 @@ class MessageLookup extends MessageLookupByLibrary {
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Os itens selecionados serão excluídos de todos os álbuns e movidos para o lixo."), "Os itens selecionados serão excluídos de todos os álbuns e movidos para o lixo."),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("Enviar"), "send": MessageLookupByLibrary.simpleMessage("Enviar"),
"sendEmail": MessageLookupByLibrary.simpleMessage("Enviar e-mail"), "sendEmail": MessageLookupByLibrary.simpleMessage("Enviar e-mail"),
"sendInvite": MessageLookupByLibrary.simpleMessage("Enviar convite"), "sendInvite": MessageLookupByLibrary.simpleMessage("Enviar convite"),
@ -1270,16 +1283,16 @@ class MessageLookup extends MessageLookupByLibrary {
"shareAnAlbumNow": "shareAnAlbumNow":
MessageLookupByLibrary.simpleMessage("Compartilhar um álbum agora"), MessageLookupByLibrary.simpleMessage("Compartilhar um álbum agora"),
"shareLink": MessageLookupByLibrary.simpleMessage("Compartilhar link"), "shareLink": MessageLookupByLibrary.simpleMessage("Compartilhar link"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage( "shareOnlyWithThePeopleYouWant": MessageLookupByLibrary.simpleMessage(
"Compartilhar apenas com as pessoas que você quiser"), "Compartilhar apenas com as pessoas que você quiser"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"Baixe o Ente para podermos compartilhar facilmente fotos e vídeos de alta qualidade\n\nhttps://ente.io"), "Baixe o Ente para podermos compartilhar facilmente fotos e vídeos de alta qualidade\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage( "shareWithNonenteUsers": MessageLookupByLibrary.simpleMessage(
"Compartilhar com usuários não-Ente"), "Compartilhar com usuários não-Ente"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage( "shareYourFirstAlbum": MessageLookupByLibrary.simpleMessage(
"Compartilhar seu primeiro álbum"), "Compartilhar seu primeiro álbum"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1292,7 +1305,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Novas fotos compartilhadas"), MessageLookupByLibrary.simpleMessage("Novas fotos compartilhadas"),
"sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage( "sharedPhotoNotificationsExplanation": MessageLookupByLibrary.simpleMessage(
"Receber notificações quando alguém adicionar uma foto em um álbum compartilhado que você faz parte"), "Receber notificações quando alguém adicionar uma foto em um álbum compartilhado que você faz parte"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": "sharedWithMe":
MessageLookupByLibrary.simpleMessage("Compartilhado comigo"), MessageLookupByLibrary.simpleMessage("Compartilhado comigo"),
"sharedWithYou": "sharedWithYou":
@ -1308,11 +1321,11 @@ class MessageLookup extends MessageLookupByLibrary {
"Terminar sessão em outros dispositivos"), "Terminar sessão em outros dispositivos"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"Eu concordo com os <u-terms>termos de serviço</u-terms> e a <u-policy>política de privacidade</u-policy>"), "Eu concordo com os <u-terms>termos de serviço</u-terms> e a <u-policy>política de privacidade</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage( "singleFileDeleteHighlight": MessageLookupByLibrary.simpleMessage(
"Ele será excluído de todos os álbuns."), "Ele será excluído de todos os álbuns."),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("Pular"), "skip": MessageLookupByLibrary.simpleMessage("Pular"),
"social": MessageLookupByLibrary.simpleMessage("Redes sociais"), "social": MessageLookupByLibrary.simpleMessage("Redes sociais"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1353,13 +1366,13 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("Armazenamento"), "storage": MessageLookupByLibrary.simpleMessage("Armazenamento"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Família"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("Família"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage("Você"), "storageBreakupYou": MessageLookupByLibrary.simpleMessage("Você"),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": MessageLookupByLibrary.simpleMessage( "storageLimitExceeded": MessageLookupByLibrary.simpleMessage(
"Limite de armazenamento excedido"), "Limite de armazenamento excedido"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage("Forte"), "strongStrength": MessageLookupByLibrary.simpleMessage("Forte"),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("Assinar"), "subscribe": MessageLookupByLibrary.simpleMessage("Assinar"),
"subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage( "subscribeToEnableSharing": MessageLookupByLibrary.simpleMessage(
"Parece que sua assinatura expirou. Por favor inscreva-se para ativar o compartilhamento."), "Parece que sua assinatura expirou. Por favor inscreva-se para ativar o compartilhamento."),
@ -1376,7 +1389,7 @@ class MessageLookup extends MessageLookupByLibrary {
"suggestFeatures": "suggestFeatures":
MessageLookupByLibrary.simpleMessage("Sugerir funcionalidades"), MessageLookupByLibrary.simpleMessage("Sugerir funcionalidades"),
"support": MessageLookupByLibrary.simpleMessage("Suporte"), "support": MessageLookupByLibrary.simpleMessage("Suporte"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": "syncStopped":
MessageLookupByLibrary.simpleMessage("Sincronização interrompida"), MessageLookupByLibrary.simpleMessage("Sincronização interrompida"),
"syncing": MessageLookupByLibrary.simpleMessage("Sincronizando..."), "syncing": MessageLookupByLibrary.simpleMessage("Sincronizando..."),
@ -1403,7 +1416,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Estes itens serão excluídos do seu dispositivo."), "Estes itens serão excluídos do seu dispositivo."),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage( "theyWillBeDeletedFromAllAlbums": MessageLookupByLibrary.simpleMessage(
"Ele será excluído de todos os álbuns."), "Ele será excluído de todos os álbuns."),
"thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage( "thisActionCannotBeUndone": MessageLookupByLibrary.simpleMessage(
@ -1419,7 +1432,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("Este e-mail já está em uso"), MessageLookupByLibrary.simpleMessage("Este e-mail já está em uso"),
"thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage( "thisImageHasNoExifData": MessageLookupByLibrary.simpleMessage(
"Esta imagem não tem dados exif"), "Esta imagem não tem dados exif"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage( "thisIsYourVerificationId": MessageLookupByLibrary.simpleMessage(
"Este é o seu ID de verificação"), "Este é o seu ID de verificação"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1435,7 +1448,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("total"), "total": MessageLookupByLibrary.simpleMessage("total"),
"totalSize": MessageLookupByLibrary.simpleMessage("Tamanho total"), "totalSize": MessageLookupByLibrary.simpleMessage("Tamanho total"),
"trash": MessageLookupByLibrary.simpleMessage("Lixeira"), "trash": MessageLookupByLibrary.simpleMessage("Lixeira"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("Tente novamente"), "tryAgain": MessageLookupByLibrary.simpleMessage("Tente novamente"),
"turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage( "turnOnBackupForAutoUpload": MessageLookupByLibrary.simpleMessage(
"Ative o backup para enviar automaticamente arquivos adicionados a esta pasta do dispositivo para o ente."), "Ative o backup para enviar automaticamente arquivos adicionados a esta pasta do dispositivo para o ente."),
@ -1488,7 +1501,7 @@ class MessageLookup extends MessageLookupByLibrary {
"useSelectedPhoto": "useSelectedPhoto":
MessageLookupByLibrary.simpleMessage("Utilizar foto selecionada"), MessageLookupByLibrary.simpleMessage("Utilizar foto selecionada"),
"usedSpace": MessageLookupByLibrary.simpleMessage("Espaço em uso"), "usedSpace": MessageLookupByLibrary.simpleMessage("Espaço em uso"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Falha na verificação, por favor, tente novamente"), "Falha na verificação, por favor, tente novamente"),
@ -1496,8 +1509,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("ID de Verificação"), MessageLookupByLibrary.simpleMessage("ID de Verificação"),
"verify": MessageLookupByLibrary.simpleMessage("Verificar"), "verify": MessageLookupByLibrary.simpleMessage("Verificar"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("Verificar email"), "verifyEmail": MessageLookupByLibrary.simpleMessage("Verificar email"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verificar"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verificar"),
"verifyPasskey":
MessageLookupByLibrary.simpleMessage("Verificar chave de acesso"),
"verifyPassword": "verifyPassword":
MessageLookupByLibrary.simpleMessage("Verificar senha"), MessageLookupByLibrary.simpleMessage("Verificar senha"),
"verifying": MessageLookupByLibrary.simpleMessage("Verificando..."), "verifying": MessageLookupByLibrary.simpleMessage("Verificando..."),
@ -1518,6 +1533,8 @@ class MessageLookup extends MessageLookupByLibrary {
"viewer": MessageLookupByLibrary.simpleMessage("Visualizador"), "viewer": MessageLookupByLibrary.simpleMessage("Visualizador"),
"visitWebToManage": MessageLookupByLibrary.simpleMessage( "visitWebToManage": MessageLookupByLibrary.simpleMessage(
"Por favor visite web.ente.io para gerenciar sua assinatura"), "Por favor visite web.ente.io para gerenciar sua assinatura"),
"waitingForVerification": MessageLookupByLibrary.simpleMessage(
"Esperando por verificação..."),
"waitingForWifi": "waitingForWifi":
MessageLookupByLibrary.simpleMessage("Esperando por Wi-Fi..."), MessageLookupByLibrary.simpleMessage("Esperando por Wi-Fi..."),
"weAreOpenSource": "weAreOpenSource":
@ -1525,12 +1542,12 @@ class MessageLookup extends MessageLookupByLibrary {
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"Não suportamos a edição de fotos e álbuns que você ainda não possui"), "Não suportamos a edição de fotos e álbuns que você ainda não possui"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage("Fraca"), "weakStrength": MessageLookupByLibrary.simpleMessage("Fraca"),
"welcomeBack": "welcomeBack":
MessageLookupByLibrary.simpleMessage("Bem-vindo de volta!"), MessageLookupByLibrary.simpleMessage("Bem-vindo de volta!"),
"yearly": MessageLookupByLibrary.simpleMessage("Anual"), "yearly": MessageLookupByLibrary.simpleMessage("Anual"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage("Sim"), "yes": MessageLookupByLibrary.simpleMessage("Sim"),
"yesCancel": MessageLookupByLibrary.simpleMessage("Sim, cancelar"), "yesCancel": MessageLookupByLibrary.simpleMessage("Sim, cancelar"),
"yesConvertToViewer": MessageLookupByLibrary.simpleMessage( "yesConvertToViewer": MessageLookupByLibrary.simpleMessage(
@ -1561,7 +1578,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Você não pode compartilhar consigo mesmo"), "Você não pode compartilhar consigo mesmo"),
"youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage( "youDontHaveAnyArchivedItems": MessageLookupByLibrary.simpleMessage(
"Você não tem nenhum item arquivado."), "Você não tem nenhum item arquivado."),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": "yourAccountHasBeenDeleted":
MessageLookupByLibrary.simpleMessage("Sua conta foi excluída"), MessageLookupByLibrary.simpleMessage("Sua conta foi excluída"),
"yourMap": MessageLookupByLibrary.simpleMessage("Seu mapa"), "yourMap": MessageLookupByLibrary.simpleMessage("Seu mapa"),

View file

@ -21,174 +21,180 @@ class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'zh'; String get localeName => 'zh';
static String m0(count) => static String m0(count) =>
"${Intl.plural(count, zero: 'Add collaborator', one: 'Add collaborator', other: 'Add collaborators')}";
static String m2(count) =>
"${Intl.plural(count, one: '添加一个项目', other: '添加一些项目')}"; "${Intl.plural(count, one: '添加一个项目', other: '添加一些项目')}";
static String m1(storageAmount, endDate) => static String m3(storageAmount, endDate) =>
"您的 ${storageAmount} 插件有效期至 ${endDate}"; "您的 ${storageAmount} 插件有效期至 ${endDate}";
static String m2(emailOrName) => "${emailOrName} 添加"; static String m1(count) =>
"${Intl.plural(count, zero: 'Add viewer', one: 'Add viewer', other: 'Add viewers')}";
static String m3(albumName) => "成功添加到 ${albumName}"; static String m4(emailOrName) => "${emailOrName} 添加";
static String m4(count) => static String m5(albumName) => "成功添加到 ${albumName}";
static String m6(count) =>
"${Intl.plural(count, zero: '无参与者', one: '1个参与者', other: '${count} 个参与者')}"; "${Intl.plural(count, zero: '无参与者', one: '1个参与者', other: '${count} 个参与者')}";
static String m5(versionValue) => "版本: ${versionValue}"; static String m7(versionValue) => "版本: ${versionValue}";
static String m6(paymentProvider) => "请先取消您现有的订阅 ${paymentProvider}"; static String m8(paymentProvider) => "请先取消您现有的订阅 ${paymentProvider}";
static String m7(user) => "${user} 将无法添加更多照片到此相册\n\n他们仍然能够删除他们添加的现有照片"; static String m9(user) => "${user} 将无法添加更多照片到此相册\n\n他们仍然能够删除他们添加的现有照片";
static String m8(isFamilyMember, storageAmountInGb) => static String m10(isFamilyMember, storageAmountInGb) =>
"${Intl.select(isFamilyMember, { "${Intl.select(isFamilyMember, {
'true': '到目前为止,您的家庭已经领取了 ${storageAmountInGb} GB', 'true': '到目前为止,您的家庭已经领取了 ${storageAmountInGb} GB',
'false': '到目前为止,您已经领取了 ${storageAmountInGb} GB', 'false': '到目前为止,您已经领取了 ${storageAmountInGb} GB',
'other': '到目前为止,您已经领取了${storageAmountInGb} GB', 'other': '到目前为止,您已经领取了${storageAmountInGb} GB',
})}"; })}";
static String m9(albumName) => "${albumName} 创建了协作链接"; static String m11(albumName) => "${albumName} 创建了协作链接";
static String m10(familyAdminEmail) => static String m12(familyAdminEmail) =>
"请联系 <green>${familyAdminEmail}</green> 来管理您的订阅"; "请联系 <green>${familyAdminEmail}</green> 来管理您的订阅";
static String m11(provider) => static String m13(provider) =>
"请通过support@ente.io 用英语联系我们来管理您的 ${provider} 订阅。"; "请通过support@ente.io 用英语联系我们来管理您的 ${provider} 订阅。";
static String m12(count) => static String m14(count) =>
"${Intl.plural(count, one: '删除 ${count} 个项目', other: '删除 ${count} 个项目')}"; "${Intl.plural(count, one: '删除 ${count} 个项目', other: '删除 ${count} 个项目')}";
static String m13(currentlyDeleting, totalCount) => static String m15(currentlyDeleting, totalCount) =>
"正在删除 ${currentlyDeleting} /共 ${totalCount}"; "正在删除 ${currentlyDeleting} /共 ${totalCount}";
static String m14(albumName) => "这将删除用于访问\"${albumName}\"的公共链接。"; static String m16(albumName) => "这将删除用于访问\"${albumName}\"的公共链接。";
static String m15(supportEmail) => "请从您注册的邮箱发送一封邮件到 ${supportEmail}"; static String m17(supportEmail) => "请从您注册的邮箱发送一封邮件到 ${supportEmail}";
static String m16(count, storageSaved) => static String m18(count, storageSaved) =>
"您已经清理了 ${Intl.plural(count, other: '${count} 个重复文件')}, 释放了 (${storageSaved}!)"; "您已经清理了 ${Intl.plural(count, other: '${count} 个重复文件')}, 释放了 (${storageSaved}!)";
static String m17(count, formattedSize) => static String m19(count, formattedSize) =>
"${count} 个文件,每个文件 ${formattedSize}"; "${count} 个文件,每个文件 ${formattedSize}";
static String m18(newEmail) => "电子邮件已更改为 ${newEmail}"; static String m20(newEmail) => "电子邮件已更改为 ${newEmail}";
static String m19(email) => "${email} 没有 ente 账户。\n\n向他们发送分享照片的邀请。"; static String m21(email) => "${email} 没有 ente 账户。\n\n向他们发送分享照片的邀请。";
static String m20(count, formattedNumber) => static String m22(count, formattedNumber) =>
"此设备上的 ${Intl.plural(count, one: '1 个文件', other: '${formattedNumber} 个文件')} 已安全备份"; "此设备上的 ${Intl.plural(count, one: '1 个文件', other: '${formattedNumber} 个文件')} 已安全备份";
static String m21(count, formattedNumber) => static String m23(count, formattedNumber) =>
"此相册中的 ${Intl.plural(count, one: '1 个文件', other: '${formattedNumber} 个文件')} 已安全备份"; "此相册中的 ${Intl.plural(count, one: '1 个文件', other: '${formattedNumber} 个文件')} 已安全备份";
static String m22(storageAmountInGB) => static String m24(storageAmountInGB) =>
"每当有人使用您的代码注册付费计划时您将获得${storageAmountInGB} GB"; "每当有人使用您的代码注册付费计划时您将获得${storageAmountInGB} GB";
static String m23(freeAmount, storageUnit) => static String m25(freeAmount, storageUnit) =>
"${freeAmount} ${storageUnit} 空闲"; "${freeAmount} ${storageUnit} 空闲";
static String m24(endDate) => "免费试用有效期至 ${endDate}"; static String m26(endDate) => "免费试用有效期至 ${endDate}";
static String m25(count) => static String m27(count) =>
"只要您有有效的订阅,您仍然可以在 ente 上访问 ${Intl.plural(count, one: 'it', other: 'them')}"; "只要您有有效的订阅,您仍然可以在 ente 上访问 ${Intl.plural(count, one: 'it', other: 'them')}";
static String m26(sizeInMBorGB) => "释放 ${sizeInMBorGB}"; static String m28(sizeInMBorGB) => "释放 ${sizeInMBorGB}";
static String m27(count, formattedSize) => static String m29(count, formattedSize) =>
"${Intl.plural(count, one: '它可以从设备中删除以释放 ${formattedSize}', other: '它们可以从设备中删除以释放 ${formattedSize}')}"; "${Intl.plural(count, one: '它可以从设备中删除以释放 ${formattedSize}', other: '它们可以从设备中删除以释放 ${formattedSize}')}";
static String m28(currentlyProcessing, totalCount) => static String m30(currentlyProcessing, totalCount) =>
"正在处理 ${currentlyProcessing} / ${totalCount}"; "正在处理 ${currentlyProcessing} / ${totalCount}";
static String m29(count) => static String m31(count) =>
"${Intl.plural(count, one: '${count} 个项目', other: '${count} 个项目')}"; "${Intl.plural(count, one: '${count} 个项目', other: '${count} 个项目')}";
static String m30(expiryTime) => "链接将在 ${expiryTime} 过期"; static String m32(expiryTime) => "链接将在 ${expiryTime} 过期";
static String m31(count, formattedCount) => static String m33(count, formattedCount) =>
"${Intl.plural(count, zero: '没有回忆', one: '${formattedCount} 个回忆', other: '${formattedCount} 个回忆')}"; "${Intl.plural(count, zero: '没有回忆', one: '${formattedCount} 个回忆', other: '${formattedCount} 个回忆')}";
static String m32(count) => static String m34(count) =>
"${Intl.plural(count, one: '移动一个项目', other: '移动一些项目')}"; "${Intl.plural(count, one: '移动一个项目', other: '移动一些项目')}";
static String m33(albumName) => "成功移动到 ${albumName}"; static String m35(albumName) => "成功移动到 ${albumName}";
static String m34(passwordStrengthValue) => "密码强度: ${passwordStrengthValue}"; static String m36(passwordStrengthValue) => "密码强度: ${passwordStrengthValue}";
static String m35(providerName) => "如果您被收取费用,请用英语与 ${providerName} 的客服聊天"; static String m37(providerName) => "如果您被收取费用,请用英语与 ${providerName} 的客服聊天";
static String m36(reason) => "很抱歉,您的支付因 ${reason} 而失败"; static String m38(reason) => "很抱歉,您的支付因 ${reason} 而失败";
static String m37(endDate) => "免费试用有效期至 ${endDate}\n之后您可以选择付费计划。"; static String m39(endDate) => "免费试用有效期至 ${endDate}\n之后您可以选择付费计划。";
static String m38(toEmail) => "请给我们发送电子邮件至 ${toEmail}"; static String m40(toEmail) => "请给我们发送电子邮件至 ${toEmail}";
static String m39(toEmail) => "请将日志发送至 \n${toEmail}"; static String m41(toEmail) => "请将日志发送至 \n${toEmail}";
static String m40(storeName) => "${storeName} 上给我们评分"; static String m42(storeName) => "${storeName} 上给我们评分";
static String m41(storageInGB) => "3. 你和朋友都将免费获得 ${storageInGB} GB*"; static String m43(storageInGB) => "3. 你和朋友都将免费获得 ${storageInGB} GB*";
static String m42(userEmail) => static String m44(userEmail) =>
"${userEmail} 将从这个共享相册中删除\n\nTA们添加的任何照片也将从相册中删除"; "${userEmail} 将从这个共享相册中删除\n\nTA们添加的任何照片也将从相册中删除";
static String m43(endDate) => "${endDate} 前续费"; static String m45(endDate) => "${endDate} 前续费";
static String m44(count) => static String m46(count) =>
"${Intl.plural(count, other: '已找到 ${count} 个结果')}"; "${Intl.plural(count, other: '已找到 ${count} 个结果')}";
static String m45(count) => "已选择 ${count}"; static String m47(count) => "已选择 ${count}";
static String m46(count, yourCount) => "选择了 ${count} 个 (您的 ${yourCount} 个)"; static String m48(count, yourCount) => "选择了 ${count} 个 (您的 ${yourCount} 个)";
static String m47(verificationID) => "这是我的ente.io 的验证 ID ${verificationID}"; static String m49(verificationID) => "这是我的ente.io 的验证 ID ${verificationID}";
static String m48(verificationID) => static String m50(verificationID) =>
"嘿,你能确认这是你的 ente.io 验证 ID吗${verificationID}"; "嘿,你能确认这是你的 ente.io 验证 ID吗${verificationID}";
static String m49(referralCode, referralStorageInGB) => static String m51(referralCode, referralStorageInGB) =>
"ente推荐码: ${referralCode} \n\n注册付费计划后在设置 → 常规 → 推荐中应用它以免费获得 ${referralStorageInGB} GB空间\n\nhttps://ente.io"; "ente推荐码: ${referralCode} \n\n注册付费计划后在设置 → 常规 → 推荐中应用它以免费获得 ${referralStorageInGB} GB空间\n\nhttps://ente.io";
static String m50(numberOfPeople) => static String m52(numberOfPeople) =>
"${Intl.plural(numberOfPeople, zero: '与特定人员共享', one: '与 1 人共享', other: '${numberOfPeople} 人共享')}"; "${Intl.plural(numberOfPeople, zero: '与特定人员共享', one: '与 1 人共享', other: '${numberOfPeople} 人共享')}";
static String m51(emailIDs) => "${emailIDs} 共享"; static String m53(emailIDs) => "${emailIDs} 共享";
static String m52(fileType) => "${fileType} 将从您的设备中删除。"; static String m54(fileType) => "${fileType} 将从您的设备中删除。";
static String m53(fileType) => "${fileType} 同时在ente和您的设备中。"; static String m55(fileType) => "${fileType} 同时在ente和您的设备中。";
static String m54(fileType) => "${fileType} 将从ente中删除。"; static String m56(fileType) => "${fileType} 将从ente中删除。";
static String m55(storageAmountInGB) => "${storageAmountInGB} GB"; static String m57(storageAmountInGB) => "${storageAmountInGB} GB";
static String m56( static String m58(
usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) => usedAmount, usedStorageUnit, totalAmount, totalStorageUnit) =>
"已使用 ${usedAmount} ${usedStorageUnit} / ${totalAmount} ${totalStorageUnit}"; "已使用 ${usedAmount} ${usedStorageUnit} / ${totalAmount} ${totalStorageUnit}";
static String m57(id) => static String m59(id) =>
"您的 ${id} 已经链接到另一个ente账户。\n如果您想要通过此账户使用您的 ${id} ,请联系我们的客服\'\'"; "您的 ${id} 已经链接到另一个ente账户。\n如果您想要通过此账户使用您的 ${id} ,请联系我们的客服\'\'";
static String m58(endDate) => "您的订阅将于 ${endDate} 取消"; static String m60(endDate) => "您的订阅将于 ${endDate} 取消";
static String m59(completed, total) => "已保存的回忆 ${completed}/共 ${total}"; static String m61(completed, total) => "已保存的回忆 ${completed}/共 ${total}";
static String m60(storageAmountInGB) => "他们也会获得 ${storageAmountInGB} GB"; static String m62(storageAmountInGB) => "他们也会获得 ${storageAmountInGB} GB";
static String m61(email) => "这是 ${email} 的验证ID"; static String m63(email) => "这是 ${email} 的验证ID";
static String m62(count) => static String m64(count) =>
"${Intl.plural(count, zero: '', one: '1天', other: '${count} 天')}"; "${Intl.plural(count, zero: '', one: '1天', other: '${count} 天')}";
static String m63(endDate) => "有效期至 ${endDate}"; static String m65(endDate) => "有效期至 ${endDate}";
static String m64(email) => "验证 ${email}"; static String m66(email) => "验证 ${email}";
static String m65(email) => "我们已经发送邮件到 <green>${email}</green>"; static String m67(email) => "我们已经发送邮件到 <green>${email}</green>";
static String m66(count) => static String m68(count) =>
"${Intl.plural(count, one: '${count} 年前', other: '${count} 年前')}"; "${Intl.plural(count, one: '${count} 年前', other: '${count} 年前')}";
static String m67(storageSaved) => "您已成功释放了 ${storageSaved}"; static String m69(storageSaved) => "您已成功释放了 ${storageSaved}";
final messages = _notInlinedMessages(_notInlinedMessages); final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{ static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
@ -202,14 +208,15 @@ class MessageLookup extends MessageLookupByLibrary {
"activeSessions": MessageLookupByLibrary.simpleMessage("已登录的设备"), "activeSessions": MessageLookupByLibrary.simpleMessage("已登录的设备"),
"addANewEmail": MessageLookupByLibrary.simpleMessage("添加新的电子邮件"), "addANewEmail": MessageLookupByLibrary.simpleMessage("添加新的电子邮件"),
"addCollaborator": MessageLookupByLibrary.simpleMessage("添加协作者"), "addCollaborator": MessageLookupByLibrary.simpleMessage("添加协作者"),
"addCollaborators": m0,
"addFromDevice": MessageLookupByLibrary.simpleMessage("从设备添加"), "addFromDevice": MessageLookupByLibrary.simpleMessage("从设备添加"),
"addItem": m0, "addItem": m2,
"addLocation": MessageLookupByLibrary.simpleMessage("添加地点"), "addLocation": MessageLookupByLibrary.simpleMessage("添加地点"),
"addLocationButton": MessageLookupByLibrary.simpleMessage("添加"), "addLocationButton": MessageLookupByLibrary.simpleMessage("添加"),
"addMore": MessageLookupByLibrary.simpleMessage("添加更多"), "addMore": MessageLookupByLibrary.simpleMessage("添加更多"),
"addNew": MessageLookupByLibrary.simpleMessage("新建"), "addNew": MessageLookupByLibrary.simpleMessage("新建"),
"addOnPageSubtitle": MessageLookupByLibrary.simpleMessage("附加组件详情"), "addOnPageSubtitle": MessageLookupByLibrary.simpleMessage("附加组件详情"),
"addOnValidTill": m1, "addOnValidTill": m3,
"addOns": MessageLookupByLibrary.simpleMessage("附加组件"), "addOns": MessageLookupByLibrary.simpleMessage("附加组件"),
"addPhotos": MessageLookupByLibrary.simpleMessage("添加照片"), "addPhotos": MessageLookupByLibrary.simpleMessage("添加照片"),
"addSelected": MessageLookupByLibrary.simpleMessage("添加所选项"), "addSelected": MessageLookupByLibrary.simpleMessage("添加所选项"),
@ -217,10 +224,11 @@ class MessageLookup extends MessageLookupByLibrary {
"addToEnte": MessageLookupByLibrary.simpleMessage("添加到 ente"), "addToEnte": MessageLookupByLibrary.simpleMessage("添加到 ente"),
"addToHiddenAlbum": MessageLookupByLibrary.simpleMessage("添加到隐藏相册"), "addToHiddenAlbum": MessageLookupByLibrary.simpleMessage("添加到隐藏相册"),
"addViewer": MessageLookupByLibrary.simpleMessage("添加查看者"), "addViewer": MessageLookupByLibrary.simpleMessage("添加查看者"),
"addViewers": m1,
"addYourPhotosNow": MessageLookupByLibrary.simpleMessage("立即添加您的照片"), "addYourPhotosNow": MessageLookupByLibrary.simpleMessage("立即添加您的照片"),
"addedAs": MessageLookupByLibrary.simpleMessage("已添加为"), "addedAs": MessageLookupByLibrary.simpleMessage("已添加为"),
"addedBy": m2, "addedBy": m4,
"addedSuccessfullyTo": m3, "addedSuccessfullyTo": m5,
"addingToFavorites": MessageLookupByLibrary.simpleMessage("正在添加到收藏..."), "addingToFavorites": MessageLookupByLibrary.simpleMessage("正在添加到收藏..."),
"advanced": MessageLookupByLibrary.simpleMessage("高级设置"), "advanced": MessageLookupByLibrary.simpleMessage("高级设置"),
"advancedSettings": MessageLookupByLibrary.simpleMessage("高级设置"), "advancedSettings": MessageLookupByLibrary.simpleMessage("高级设置"),
@ -230,7 +238,7 @@ class MessageLookup extends MessageLookupByLibrary {
"after1Week": MessageLookupByLibrary.simpleMessage("1 周后"), "after1Week": MessageLookupByLibrary.simpleMessage("1 周后"),
"after1Year": MessageLookupByLibrary.simpleMessage("1 年后"), "after1Year": MessageLookupByLibrary.simpleMessage("1 年后"),
"albumOwner": MessageLookupByLibrary.simpleMessage("所有者"), "albumOwner": MessageLookupByLibrary.simpleMessage("所有者"),
"albumParticipantsCount": m4, "albumParticipantsCount": m6,
"albumTitle": MessageLookupByLibrary.simpleMessage("相册标题"), "albumTitle": MessageLookupByLibrary.simpleMessage("相册标题"),
"albumUpdated": MessageLookupByLibrary.simpleMessage("相册已更新"), "albumUpdated": MessageLookupByLibrary.simpleMessage("相册已更新"),
"albums": MessageLookupByLibrary.simpleMessage("相册"), "albums": MessageLookupByLibrary.simpleMessage("相册"),
@ -259,7 +267,7 @@ class MessageLookup extends MessageLookupByLibrary {
"androidIosWebDesktop": "androidIosWebDesktop":
MessageLookupByLibrary.simpleMessage("安卓, iOS, 网页端, 桌面端"), MessageLookupByLibrary.simpleMessage("安卓, iOS, 网页端, 桌面端"),
"androidSignInTitle": MessageLookupByLibrary.simpleMessage("需要身份验证"), "androidSignInTitle": MessageLookupByLibrary.simpleMessage("需要身份验证"),
"appVersion": m5, "appVersion": m7,
"appleId": MessageLookupByLibrary.simpleMessage("Apple ID"), "appleId": MessageLookupByLibrary.simpleMessage("Apple ID"),
"apply": MessageLookupByLibrary.simpleMessage("应用"), "apply": MessageLookupByLibrary.simpleMessage("应用"),
"applyCodeTitle": MessageLookupByLibrary.simpleMessage("应用代码"), "applyCodeTitle": MessageLookupByLibrary.simpleMessage("应用代码"),
@ -331,9 +339,9 @@ class MessageLookup extends MessageLookupByLibrary {
"canOnlyRemoveFilesOwnedByYou": "canOnlyRemoveFilesOwnedByYou":
MessageLookupByLibrary.simpleMessage("只能删除您拥有的文件"), MessageLookupByLibrary.simpleMessage("只能删除您拥有的文件"),
"cancel": MessageLookupByLibrary.simpleMessage("取消"), "cancel": MessageLookupByLibrary.simpleMessage("取消"),
"cancelOtherSubscription": m6, "cancelOtherSubscription": m8,
"cancelSubscription": MessageLookupByLibrary.simpleMessage("取消订阅"), "cancelSubscription": MessageLookupByLibrary.simpleMessage("取消订阅"),
"cannotAddMorePhotosAfterBecomingViewer": m7, "cannotAddMorePhotosAfterBecomingViewer": m9,
"cannotDeleteSharedFiles": "cannotDeleteSharedFiles":
MessageLookupByLibrary.simpleMessage("无法删除共享文件"), MessageLookupByLibrary.simpleMessage("无法删除共享文件"),
"castInstruction": MessageLookupByLibrary.simpleMessage( "castInstruction": MessageLookupByLibrary.simpleMessage(
@ -352,8 +360,10 @@ class MessageLookup extends MessageLookupByLibrary {
"claimFreeStorage": MessageLookupByLibrary.simpleMessage("领取免费存储"), "claimFreeStorage": MessageLookupByLibrary.simpleMessage("领取免费存储"),
"claimMore": MessageLookupByLibrary.simpleMessage("领取更多!"), "claimMore": MessageLookupByLibrary.simpleMessage("领取更多!"),
"claimed": MessageLookupByLibrary.simpleMessage("已领取"), "claimed": MessageLookupByLibrary.simpleMessage("已领取"),
"claimedStorageSoFar": m8, "claimedStorageSoFar": m10,
"cleanUncategorized": MessageLookupByLibrary.simpleMessage("清除未分类的"), "cleanUncategorized": MessageLookupByLibrary.simpleMessage("清除未分类的"),
"cleanUncategorizedDescription":
MessageLookupByLibrary.simpleMessage("从“未分类”中删除其他相册中存在的所有文件"),
"clearCaches": MessageLookupByLibrary.simpleMessage("清除缓存"), "clearCaches": MessageLookupByLibrary.simpleMessage("清除缓存"),
"clearIndexes": MessageLookupByLibrary.simpleMessage("清空索引"), "clearIndexes": MessageLookupByLibrary.simpleMessage("清空索引"),
"click": MessageLookupByLibrary.simpleMessage("• 点击"), "click": MessageLookupByLibrary.simpleMessage("• 点击"),
@ -369,7 +379,7 @@ class MessageLookup extends MessageLookupByLibrary {
"collabLinkSectionDescription": MessageLookupByLibrary.simpleMessage( "collabLinkSectionDescription": MessageLookupByLibrary.simpleMessage(
"创建一个链接以允许其他人在您的共享相册中添加和查看照片而无需应用程序或ente账户。 非常适合收集活动照片。"), "创建一个链接以允许其他人在您的共享相册中添加和查看照片而无需应用程序或ente账户。 非常适合收集活动照片。"),
"collaborativeLink": MessageLookupByLibrary.simpleMessage("协作链接"), "collaborativeLink": MessageLookupByLibrary.simpleMessage("协作链接"),
"collaborativeLinkCreatedFor": m9, "collaborativeLinkCreatedFor": m11,
"collaborator": MessageLookupByLibrary.simpleMessage("协作者"), "collaborator": MessageLookupByLibrary.simpleMessage("协作者"),
"collaboratorsCanAddPhotosAndVideosToTheSharedAlbum": "collaboratorsCanAddPhotosAndVideosToTheSharedAlbum":
MessageLookupByLibrary.simpleMessage("协作者可以将照片和视频添加到共享相册中。"), MessageLookupByLibrary.simpleMessage("协作者可以将照片和视频添加到共享相册中。"),
@ -390,9 +400,9 @@ class MessageLookup extends MessageLookupByLibrary {
"confirmRecoveryKey": MessageLookupByLibrary.simpleMessage("确认恢复密钥"), "confirmRecoveryKey": MessageLookupByLibrary.simpleMessage("确认恢复密钥"),
"confirmYourRecoveryKey": "confirmYourRecoveryKey":
MessageLookupByLibrary.simpleMessage("确认您的恢复密钥"), MessageLookupByLibrary.simpleMessage("确认您的恢复密钥"),
"contactFamilyAdmin": m10, "contactFamilyAdmin": m12,
"contactSupport": MessageLookupByLibrary.simpleMessage("联系支持"), "contactSupport": MessageLookupByLibrary.simpleMessage("联系支持"),
"contactToManageSubscription": m11, "contactToManageSubscription": m13,
"contacts": MessageLookupByLibrary.simpleMessage("联系人"), "contacts": MessageLookupByLibrary.simpleMessage("联系人"),
"contents": MessageLookupByLibrary.simpleMessage("内容"), "contents": MessageLookupByLibrary.simpleMessage("内容"),
"continueLabel": MessageLookupByLibrary.simpleMessage("继续"), "continueLabel": MessageLookupByLibrary.simpleMessage("继续"),
@ -450,10 +460,10 @@ class MessageLookup extends MessageLookupByLibrary {
"deleteFromBoth": MessageLookupByLibrary.simpleMessage("同时从两者中删除"), "deleteFromBoth": MessageLookupByLibrary.simpleMessage("同时从两者中删除"),
"deleteFromDevice": MessageLookupByLibrary.simpleMessage("从设备中删除"), "deleteFromDevice": MessageLookupByLibrary.simpleMessage("从设备中删除"),
"deleteFromEnte": MessageLookupByLibrary.simpleMessage("从ente 中删除"), "deleteFromEnte": MessageLookupByLibrary.simpleMessage("从ente 中删除"),
"deleteItemCount": m12, "deleteItemCount": m14,
"deleteLocation": MessageLookupByLibrary.simpleMessage("删除位置"), "deleteLocation": MessageLookupByLibrary.simpleMessage("删除位置"),
"deletePhotos": MessageLookupByLibrary.simpleMessage("删除照片"), "deletePhotos": MessageLookupByLibrary.simpleMessage("删除照片"),
"deleteProgress": m13, "deleteProgress": m15,
"deleteReason1": MessageLookupByLibrary.simpleMessage("找不到我想要的功能"), "deleteReason1": MessageLookupByLibrary.simpleMessage("找不到我想要的功能"),
"deleteReason2": "deleteReason2":
MessageLookupByLibrary.simpleMessage("应用或某个功能没有按我的预期运行"), MessageLookupByLibrary.simpleMessage("应用或某个功能没有按我的预期运行"),
@ -465,7 +475,7 @@ class MessageLookup extends MessageLookupByLibrary {
"deleteSharedAlbum": MessageLookupByLibrary.simpleMessage("要删除共享相册吗?"), "deleteSharedAlbum": MessageLookupByLibrary.simpleMessage("要删除共享相册吗?"),
"deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage( "deleteSharedAlbumDialogBody": MessageLookupByLibrary.simpleMessage(
"将为所有人删除相册\n\n您将无法访问此相册中他人拥有的共享照片"), "将为所有人删除相册\n\n您将无法访问此相册中他人拥有的共享照片"),
"descriptions": MessageLookupByLibrary.simpleMessage("Descriptions"), "descriptions": MessageLookupByLibrary.simpleMessage("描述"),
"deselectAll": MessageLookupByLibrary.simpleMessage("取消全选"), "deselectAll": MessageLookupByLibrary.simpleMessage("取消全选"),
"designedToOutlive": MessageLookupByLibrary.simpleMessage("经久耐用"), "designedToOutlive": MessageLookupByLibrary.simpleMessage("经久耐用"),
"details": MessageLookupByLibrary.simpleMessage("详情"), "details": MessageLookupByLibrary.simpleMessage("详情"),
@ -483,7 +493,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("查看者仍然可以使用外部工具截图或保存您的照片副本"), MessageLookupByLibrary.simpleMessage("查看者仍然可以使用外部工具截图或保存您的照片副本"),
"disableDownloadWarningTitle": "disableDownloadWarningTitle":
MessageLookupByLibrary.simpleMessage("请注意"), MessageLookupByLibrary.simpleMessage("请注意"),
"disableLinkMessage": m14, "disableLinkMessage": m16,
"disableTwofactor": MessageLookupByLibrary.simpleMessage("禁用双因素认证"), "disableTwofactor": MessageLookupByLibrary.simpleMessage("禁用双因素认证"),
"disablingTwofactorAuthentication": "disablingTwofactorAuthentication":
MessageLookupByLibrary.simpleMessage("正在禁用双因素认证..."), MessageLookupByLibrary.simpleMessage("正在禁用双因素认证..."),
@ -500,9 +510,9 @@ class MessageLookup extends MessageLookupByLibrary {
"download": MessageLookupByLibrary.simpleMessage("下载"), "download": MessageLookupByLibrary.simpleMessage("下载"),
"downloadFailed": MessageLookupByLibrary.simpleMessage("下載失敗"), "downloadFailed": MessageLookupByLibrary.simpleMessage("下載失敗"),
"downloading": MessageLookupByLibrary.simpleMessage("正在下载..."), "downloading": MessageLookupByLibrary.simpleMessage("正在下载..."),
"dropSupportEmail": m15, "dropSupportEmail": m17,
"duplicateFileCountWithStorageSaved": m16, "duplicateFileCountWithStorageSaved": m18,
"duplicateItemsGroup": m17, "duplicateItemsGroup": m19,
"edit": MessageLookupByLibrary.simpleMessage("编辑"), "edit": MessageLookupByLibrary.simpleMessage("编辑"),
"editLocation": MessageLookupByLibrary.simpleMessage("编辑位置"), "editLocation": MessageLookupByLibrary.simpleMessage("编辑位置"),
"editLocationTagTitle": MessageLookupByLibrary.simpleMessage("编辑位置"), "editLocationTagTitle": MessageLookupByLibrary.simpleMessage("编辑位置"),
@ -511,8 +521,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("对位置的编辑只能在 Ente 内看到"), MessageLookupByLibrary.simpleMessage("对位置的编辑只能在 Ente 内看到"),
"eligible": MessageLookupByLibrary.simpleMessage("符合资格"), "eligible": MessageLookupByLibrary.simpleMessage("符合资格"),
"email": MessageLookupByLibrary.simpleMessage("电子邮件地址"), "email": MessageLookupByLibrary.simpleMessage("电子邮件地址"),
"emailChangedTo": m18, "emailChangedTo": m20,
"emailNoEnteAccount": m19, "emailNoEnteAccount": m21,
"emailVerificationToggle": "emailVerificationToggle":
MessageLookupByLibrary.simpleMessage("电子邮件验证"), MessageLookupByLibrary.simpleMessage("电子邮件验证"),
"emailYourLogs": MessageLookupByLibrary.simpleMessage("通过电子邮件发送您的日志"), "emailYourLogs": MessageLookupByLibrary.simpleMessage("通过电子邮件发送您的日志"),
@ -589,29 +599,29 @@ class MessageLookup extends MessageLookupByLibrary {
"fileSavedToGallery": MessageLookupByLibrary.simpleMessage("文件已保存到相册"), "fileSavedToGallery": MessageLookupByLibrary.simpleMessage("文件已保存到相册"),
"fileTypes": MessageLookupByLibrary.simpleMessage("文件类型"), "fileTypes": MessageLookupByLibrary.simpleMessage("文件类型"),
"fileTypesAndNames": MessageLookupByLibrary.simpleMessage("文件类型和名称"), "fileTypesAndNames": MessageLookupByLibrary.simpleMessage("文件类型和名称"),
"filesBackedUpFromDevice": m20, "filesBackedUpFromDevice": m22,
"filesBackedUpInAlbum": m21, "filesBackedUpInAlbum": m23,
"filesDeleted": MessageLookupByLibrary.simpleMessage("文件已删除"), "filesDeleted": MessageLookupByLibrary.simpleMessage("文件已删除"),
"flip": MessageLookupByLibrary.simpleMessage("上下翻转"), "flip": MessageLookupByLibrary.simpleMessage("上下翻转"),
"forYourMemories": MessageLookupByLibrary.simpleMessage("为您的回忆"), "forYourMemories": MessageLookupByLibrary.simpleMessage("为您的回忆"),
"forgotPassword": MessageLookupByLibrary.simpleMessage("忘记密码"), "forgotPassword": MessageLookupByLibrary.simpleMessage("忘记密码"),
"freeStorageClaimed": MessageLookupByLibrary.simpleMessage("已领取的免费存储"), "freeStorageClaimed": MessageLookupByLibrary.simpleMessage("已领取的免费存储"),
"freeStorageOnReferralSuccess": m22, "freeStorageOnReferralSuccess": m24,
"freeStorageSpace": m23, "freeStorageSpace": m25,
"freeStorageUsable": MessageLookupByLibrary.simpleMessage("可用的免费存储"), "freeStorageUsable": MessageLookupByLibrary.simpleMessage("可用的免费存储"),
"freeTrial": MessageLookupByLibrary.simpleMessage("免费试用"), "freeTrial": MessageLookupByLibrary.simpleMessage("免费试用"),
"freeTrialValidTill": m24, "freeTrialValidTill": m26,
"freeUpAccessPostDelete": m25, "freeUpAccessPostDelete": m27,
"freeUpAmount": m26, "freeUpAmount": m28,
"freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage("释放设备空间"), "freeUpDeviceSpace": MessageLookupByLibrary.simpleMessage("释放设备空间"),
"freeUpSpace": MessageLookupByLibrary.simpleMessage("释放空间"), "freeUpSpace": MessageLookupByLibrary.simpleMessage("释放空间"),
"freeUpSpaceSaving": m27, "freeUpSpaceSaving": m29,
"galleryMemoryLimitInfo": "galleryMemoryLimitInfo":
MessageLookupByLibrary.simpleMessage("在图库中显示最多1000个回忆"), MessageLookupByLibrary.simpleMessage("在图库中显示最多1000个回忆"),
"general": MessageLookupByLibrary.simpleMessage("通用"), "general": MessageLookupByLibrary.simpleMessage("通用"),
"generatingEncryptionKeys": "generatingEncryptionKeys":
MessageLookupByLibrary.simpleMessage("正在生成加密密钥..."), MessageLookupByLibrary.simpleMessage("正在生成加密密钥..."),
"genericProgress": m28, "genericProgress": m30,
"goToSettings": MessageLookupByLibrary.simpleMessage("前往设置"), "goToSettings": MessageLookupByLibrary.simpleMessage("前往设置"),
"googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"), "googlePlayId": MessageLookupByLibrary.simpleMessage("Google Play ID"),
"grantFullAccessPrompt": "grantFullAccessPrompt":
@ -662,7 +672,7 @@ class MessageLookup extends MessageLookupByLibrary {
"itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "itLooksLikeSomethingWentWrongPleaseRetryAfterSome":
MessageLookupByLibrary.simpleMessage( MessageLookupByLibrary.simpleMessage(
"看起来出了点问题。 请稍后重试。 如果错误仍然存在,请联系我们的支持团队。"), "看起来出了点问题。 请稍后重试。 如果错误仍然存在,请联系我们的支持团队。"),
"itemCount": m29, "itemCount": m31,
"itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion": "itemsShowTheNumberOfDaysRemainingBeforePermanentDeletion":
MessageLookupByLibrary.simpleMessage("项目显示永久删除前剩余的天数"), MessageLookupByLibrary.simpleMessage("项目显示永久删除前剩余的天数"),
"itemsWillBeRemovedFromAlbum": "itemsWillBeRemovedFromAlbum":
@ -685,7 +695,7 @@ class MessageLookup extends MessageLookupByLibrary {
"linkDeviceLimit": MessageLookupByLibrary.simpleMessage("设备限制"), "linkDeviceLimit": MessageLookupByLibrary.simpleMessage("设备限制"),
"linkEnabled": MessageLookupByLibrary.simpleMessage("已启用"), "linkEnabled": MessageLookupByLibrary.simpleMessage("已启用"),
"linkExpired": MessageLookupByLibrary.simpleMessage("已过期"), "linkExpired": MessageLookupByLibrary.simpleMessage("已过期"),
"linkExpiresOn": m30, "linkExpiresOn": m32,
"linkExpiry": MessageLookupByLibrary.simpleMessage("链接过期"), "linkExpiry": MessageLookupByLibrary.simpleMessage("链接过期"),
"linkHasExpired": MessageLookupByLibrary.simpleMessage("链接已过期"), "linkHasExpired": MessageLookupByLibrary.simpleMessage("链接已过期"),
"linkNeverExpires": MessageLookupByLibrary.simpleMessage("永不"), "linkNeverExpires": MessageLookupByLibrary.simpleMessage("永不"),
@ -716,7 +726,7 @@ class MessageLookup extends MessageLookupByLibrary {
"locationName": MessageLookupByLibrary.simpleMessage("地点名称"), "locationName": MessageLookupByLibrary.simpleMessage("地点名称"),
"locationTagFeatureDescription": "locationTagFeatureDescription":
MessageLookupByLibrary.simpleMessage("位置标签将在照片的某个半径范围内拍摄的所有照片进行分组"), MessageLookupByLibrary.simpleMessage("位置标签将在照片的某个半径范围内拍摄的所有照片进行分组"),
"locations": MessageLookupByLibrary.simpleMessage("Locations"), "locations": MessageLookupByLibrary.simpleMessage("位置"),
"lockButtonLabel": MessageLookupByLibrary.simpleMessage("锁定"), "lockButtonLabel": MessageLookupByLibrary.simpleMessage("锁定"),
"lockScreenEnablePreSteps": "lockScreenEnablePreSteps":
MessageLookupByLibrary.simpleMessage("要启用锁屏,请在系统设置中设置设备密码或屏幕锁定。"), MessageLookupByLibrary.simpleMessage("要启用锁屏,请在系统设置中设置设备密码或屏幕锁定。"),
@ -728,6 +738,9 @@ class MessageLookup extends MessageLookupByLibrary {
"logout": MessageLookupByLibrary.simpleMessage("退出登录"), "logout": MessageLookupByLibrary.simpleMessage("退出登录"),
"logsDialogBody": MessageLookupByLibrary.simpleMessage( "logsDialogBody": MessageLookupByLibrary.simpleMessage(
"这将跨日志发送以帮助我们调试您的问题。 请注意,将包含文件名以帮助跟踪特定文件的问题。"), "这将跨日志发送以帮助我们调试您的问题。 请注意,将包含文件名以帮助跟踪特定文件的问题。"),
"longPressAnEmailToVerifyEndToEndEncryption":
MessageLookupByLibrary.simpleMessage(
"Long press an email to verify end to end encryption."),
"longpressOnAnItemToViewInFullscreen": "longpressOnAnItemToViewInFullscreen":
MessageLookupByLibrary.simpleMessage("长按一个项目来全屏查看"), MessageLookupByLibrary.simpleMessage("长按一个项目来全屏查看"),
"lostDevice": MessageLookupByLibrary.simpleMessage("丢失了设备吗?"), "lostDevice": MessageLookupByLibrary.simpleMessage("丢失了设备吗?"),
@ -745,7 +758,7 @@ class MessageLookup extends MessageLookupByLibrary {
"maps": MessageLookupByLibrary.simpleMessage("地图"), "maps": MessageLookupByLibrary.simpleMessage("地图"),
"mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"), "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
"matrix": MessageLookupByLibrary.simpleMessage("Matrix"), "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
"memoryCount": m31, "memoryCount": m33,
"merchandise": MessageLookupByLibrary.simpleMessage("商品"), "merchandise": MessageLookupByLibrary.simpleMessage("商品"),
"mobileWebDesktop": "mobileWebDesktop":
MessageLookupByLibrary.simpleMessage("移动端, 网页端, 桌面端"), MessageLookupByLibrary.simpleMessage("移动端, 网页端, 桌面端"),
@ -754,10 +767,10 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("修改您的查询,或尝试搜索"), MessageLookupByLibrary.simpleMessage("修改您的查询,或尝试搜索"),
"moments": MessageLookupByLibrary.simpleMessage("瞬间"), "moments": MessageLookupByLibrary.simpleMessage("瞬间"),
"monthly": MessageLookupByLibrary.simpleMessage("每月"), "monthly": MessageLookupByLibrary.simpleMessage("每月"),
"moveItem": m32, "moveItem": m34,
"moveToAlbum": MessageLookupByLibrary.simpleMessage("移动到相册"), "moveToAlbum": MessageLookupByLibrary.simpleMessage("移动到相册"),
"moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage("移至隐藏相册"), "moveToHiddenAlbum": MessageLookupByLibrary.simpleMessage("移至隐藏相册"),
"movedSuccessfullyTo": m33, "movedSuccessfullyTo": m35,
"movedToTrash": MessageLookupByLibrary.simpleMessage("已移至回收站"), "movedToTrash": MessageLookupByLibrary.simpleMessage("已移至回收站"),
"movingFilesToAlbum": "movingFilesToAlbum":
MessageLookupByLibrary.simpleMessage("正在将文件移动到相册..."), MessageLookupByLibrary.simpleMessage("正在将文件移动到相册..."),
@ -819,13 +832,13 @@ class MessageLookup extends MessageLookupByLibrary {
"passwordChangedSuccessfully": "passwordChangedSuccessfully":
MessageLookupByLibrary.simpleMessage("密码修改成功"), MessageLookupByLibrary.simpleMessage("密码修改成功"),
"passwordLock": MessageLookupByLibrary.simpleMessage("密码锁"), "passwordLock": MessageLookupByLibrary.simpleMessage("密码锁"),
"passwordStrength": m34, "passwordStrength": m36,
"passwordWarning": MessageLookupByLibrary.simpleMessage( "passwordWarning": MessageLookupByLibrary.simpleMessage(
"我们不储存这个密码,所以如果忘记, <underline>我们将无法解密您的数据</underline>"), "我们不储存这个密码,所以如果忘记, <underline>我们将无法解密您的数据</underline>"),
"paymentDetails": MessageLookupByLibrary.simpleMessage("付款明细"), "paymentDetails": MessageLookupByLibrary.simpleMessage("付款明细"),
"paymentFailed": MessageLookupByLibrary.simpleMessage("支付失败"), "paymentFailed": MessageLookupByLibrary.simpleMessage("支付失败"),
"paymentFailedTalkToProvider": m35, "paymentFailedTalkToProvider": m37,
"paymentFailedWithReason": m36, "paymentFailedWithReason": m38,
"pendingItems": MessageLookupByLibrary.simpleMessage("待处理项目"), "pendingItems": MessageLookupByLibrary.simpleMessage("待处理项目"),
"pendingSync": MessageLookupByLibrary.simpleMessage("正在等待同步"), "pendingSync": MessageLookupByLibrary.simpleMessage("正在等待同步"),
"peopleUsingYourCode": MessageLookupByLibrary.simpleMessage("使用您的代码的人"), "peopleUsingYourCode": MessageLookupByLibrary.simpleMessage("使用您的代码的人"),
@ -843,7 +856,7 @@ class MessageLookup extends MessageLookupByLibrary {
"pickCenterPoint": MessageLookupByLibrary.simpleMessage("选择中心点"), "pickCenterPoint": MessageLookupByLibrary.simpleMessage("选择中心点"),
"pinAlbum": MessageLookupByLibrary.simpleMessage("置顶相册"), "pinAlbum": MessageLookupByLibrary.simpleMessage("置顶相册"),
"playOnTv": MessageLookupByLibrary.simpleMessage("在电视上播放相册"), "playOnTv": MessageLookupByLibrary.simpleMessage("在电视上播放相册"),
"playStoreFreeTrialValidTill": m37, "playStoreFreeTrialValidTill": m39,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("PlayStore 订阅"), MessageLookupByLibrary.simpleMessage("PlayStore 订阅"),
"pleaseCheckYourInternetConnectionAndTryAgain": "pleaseCheckYourInternetConnectionAndTryAgain":
@ -853,10 +866,10 @@ class MessageLookup extends MessageLookupByLibrary {
"请用英语联系 support@ente.io ,我们将乐意提供帮助!"), "请用英语联系 support@ente.io ,我们将乐意提供帮助!"),
"pleaseContactSupportIfTheProblemPersists": "pleaseContactSupportIfTheProblemPersists":
MessageLookupByLibrary.simpleMessage("如果问题仍然存在,请联系支持"), MessageLookupByLibrary.simpleMessage("如果问题仍然存在,请联系支持"),
"pleaseEmailUsAt": m38, "pleaseEmailUsAt": m40,
"pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage("请授予权限"), "pleaseGrantPermissions": MessageLookupByLibrary.simpleMessage("请授予权限"),
"pleaseLoginAgain": MessageLookupByLibrary.simpleMessage("请重新登录"), "pleaseLoginAgain": MessageLookupByLibrary.simpleMessage("请重新登录"),
"pleaseSendTheLogsTo": m39, "pleaseSendTheLogsTo": m41,
"pleaseTryAgain": MessageLookupByLibrary.simpleMessage("请重试"), "pleaseTryAgain": MessageLookupByLibrary.simpleMessage("请重试"),
"pleaseVerifyTheCodeYouHaveEntered": "pleaseVerifyTheCodeYouHaveEntered":
MessageLookupByLibrary.simpleMessage("请验证您输入的代码"), MessageLookupByLibrary.simpleMessage("请验证您输入的代码"),
@ -882,7 +895,7 @@ class MessageLookup extends MessageLookupByLibrary {
"raiseTicket": MessageLookupByLibrary.simpleMessage("提升工单"), "raiseTicket": MessageLookupByLibrary.simpleMessage("提升工单"),
"rateTheApp": MessageLookupByLibrary.simpleMessage("为此应用评分"), "rateTheApp": MessageLookupByLibrary.simpleMessage("为此应用评分"),
"rateUs": MessageLookupByLibrary.simpleMessage("给我们评分"), "rateUs": MessageLookupByLibrary.simpleMessage("给我们评分"),
"rateUsOnStore": m40, "rateUsOnStore": m42,
"recover": MessageLookupByLibrary.simpleMessage("恢复"), "recover": MessageLookupByLibrary.simpleMessage("恢复"),
"recoverAccount": MessageLookupByLibrary.simpleMessage("恢复账户"), "recoverAccount": MessageLookupByLibrary.simpleMessage("恢复账户"),
"recoverButton": MessageLookupByLibrary.simpleMessage("恢复"), "recoverButton": MessageLookupByLibrary.simpleMessage("恢复"),
@ -907,7 +920,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("把我们推荐给你的朋友然后获得延长一倍的订阅计划"), MessageLookupByLibrary.simpleMessage("把我们推荐给你的朋友然后获得延长一倍的订阅计划"),
"referralStep1": MessageLookupByLibrary.simpleMessage("1. 将此代码提供给您的朋友"), "referralStep1": MessageLookupByLibrary.simpleMessage("1. 将此代码提供给您的朋友"),
"referralStep2": MessageLookupByLibrary.simpleMessage("2. 他们注册一个付费计划"), "referralStep2": MessageLookupByLibrary.simpleMessage("2. 他们注册一个付费计划"),
"referralStep3": m41, "referralStep3": m43,
"referrals": MessageLookupByLibrary.simpleMessage("推荐人"), "referrals": MessageLookupByLibrary.simpleMessage("推荐人"),
"referralsAreCurrentlyPaused": "referralsAreCurrentlyPaused":
MessageLookupByLibrary.simpleMessage("推荐已暂停"), MessageLookupByLibrary.simpleMessage("推荐已暂停"),
@ -926,7 +939,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeFromFavorite": MessageLookupByLibrary.simpleMessage("从收藏中移除"), "removeFromFavorite": MessageLookupByLibrary.simpleMessage("从收藏中移除"),
"removeLink": MessageLookupByLibrary.simpleMessage("移除链接"), "removeLink": MessageLookupByLibrary.simpleMessage("移除链接"),
"removeParticipant": MessageLookupByLibrary.simpleMessage("移除参与者"), "removeParticipant": MessageLookupByLibrary.simpleMessage("移除参与者"),
"removeParticipantBody": m42, "removeParticipantBody": m44,
"removePublicLink": MessageLookupByLibrary.simpleMessage("删除公开链接"), "removePublicLink": MessageLookupByLibrary.simpleMessage("删除公开链接"),
"removeShareItemsWarning": "removeShareItemsWarning":
MessageLookupByLibrary.simpleMessage("您要删除的某些项目是由其他人添加的,您将无法访问它们"), MessageLookupByLibrary.simpleMessage("您要删除的某些项目是由其他人添加的,您将无法访问它们"),
@ -937,7 +950,7 @@ class MessageLookup extends MessageLookupByLibrary {
"renameAlbum": MessageLookupByLibrary.simpleMessage("重命名相册"), "renameAlbum": MessageLookupByLibrary.simpleMessage("重命名相册"),
"renameFile": MessageLookupByLibrary.simpleMessage("重命名文件"), "renameFile": MessageLookupByLibrary.simpleMessage("重命名文件"),
"renewSubscription": MessageLookupByLibrary.simpleMessage("续费订阅"), "renewSubscription": MessageLookupByLibrary.simpleMessage("续费订阅"),
"renewsOn": m43, "renewsOn": m45,
"reportABug": MessageLookupByLibrary.simpleMessage("报告错误"), "reportABug": MessageLookupByLibrary.simpleMessage("报告错误"),
"reportBug": MessageLookupByLibrary.simpleMessage("报告错误"), "reportBug": MessageLookupByLibrary.simpleMessage("报告错误"),
"resendEmail": MessageLookupByLibrary.simpleMessage("重新发送电子邮件"), "resendEmail": MessageLookupByLibrary.simpleMessage("重新发送电子邮件"),
@ -984,7 +997,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("在照片的一定半径内拍摄的几组照片"), MessageLookupByLibrary.simpleMessage("在照片的一定半径内拍摄的几组照片"),
"searchPeopleEmptySection": "searchPeopleEmptySection":
MessageLookupByLibrary.simpleMessage("邀请他人,您将在此看到他们分享的所有照片"), MessageLookupByLibrary.simpleMessage("邀请他人,您将在此看到他们分享的所有照片"),
"searchResultCount": m44, "searchResultCount": m46,
"security": MessageLookupByLibrary.simpleMessage("安全"), "security": MessageLookupByLibrary.simpleMessage("安全"),
"selectALocation": MessageLookupByLibrary.simpleMessage("选择一个位置"), "selectALocation": MessageLookupByLibrary.simpleMessage("选择一个位置"),
"selectALocationFirst": "selectALocationFirst":
@ -1004,8 +1017,8 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("所选文件夹将被加密和备份"), MessageLookupByLibrary.simpleMessage("所选文件夹将被加密和备份"),
"selectedItemsWillBeDeletedFromAllAlbumsAndMoved": "selectedItemsWillBeDeletedFromAllAlbumsAndMoved":
MessageLookupByLibrary.simpleMessage("所选项目将从所有相册中删除并移动到回收站。"), MessageLookupByLibrary.simpleMessage("所选项目将从所有相册中删除并移动到回收站。"),
"selectedPhotos": m45, "selectedPhotos": m47,
"selectedPhotosWithYours": m46, "selectedPhotosWithYours": m48,
"send": MessageLookupByLibrary.simpleMessage("发送"), "send": MessageLookupByLibrary.simpleMessage("发送"),
"sendEmail": MessageLookupByLibrary.simpleMessage("发送电子邮件"), "sendEmail": MessageLookupByLibrary.simpleMessage("发送电子邮件"),
"sendInvite": MessageLookupByLibrary.simpleMessage("发送邀请"), "sendInvite": MessageLookupByLibrary.simpleMessage("发送邀请"),
@ -1024,16 +1037,16 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("打开相册并点击右上角的分享按钮进行分享"), MessageLookupByLibrary.simpleMessage("打开相册并点击右上角的分享按钮进行分享"),
"shareAnAlbumNow": MessageLookupByLibrary.simpleMessage("立即分享相册"), "shareAnAlbumNow": MessageLookupByLibrary.simpleMessage("立即分享相册"),
"shareLink": MessageLookupByLibrary.simpleMessage("分享链接"), "shareLink": MessageLookupByLibrary.simpleMessage("分享链接"),
"shareMyVerificationID": m47, "shareMyVerificationID": m49,
"shareOnlyWithThePeopleYouWant": "shareOnlyWithThePeopleYouWant":
MessageLookupByLibrary.simpleMessage("仅与您想要的人分享"), MessageLookupByLibrary.simpleMessage("仅与您想要的人分享"),
"shareTextConfirmOthersVerificationID": m48, "shareTextConfirmOthersVerificationID": m50,
"shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage( "shareTextRecommendUsingEnte": MessageLookupByLibrary.simpleMessage(
"下载 ente以便我们轻松分享原始质量的照片和视频\n\nhttps://ente.io"), "下载 ente以便我们轻松分享原始质量的照片和视频\n\nhttps://ente.io"),
"shareTextReferralCode": m49, "shareTextReferralCode": m51,
"shareWithNonenteUsers": "shareWithNonenteUsers":
MessageLookupByLibrary.simpleMessage("与非ente 用户分享"), MessageLookupByLibrary.simpleMessage("与非ente 用户分享"),
"shareWithPeopleSectionTitle": m50, "shareWithPeopleSectionTitle": m52,
"shareYourFirstAlbum": "shareYourFirstAlbum":
MessageLookupByLibrary.simpleMessage("分享您的第一个相册"), MessageLookupByLibrary.simpleMessage("分享您的第一个相册"),
"sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage( "sharedAlbumSectionDescription": MessageLookupByLibrary.simpleMessage(
@ -1044,7 +1057,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("新共享的照片"), MessageLookupByLibrary.simpleMessage("新共享的照片"),
"sharedPhotoNotificationsExplanation": "sharedPhotoNotificationsExplanation":
MessageLookupByLibrary.simpleMessage("当有人将照片添加到您所属的共享相册时收到通知"), MessageLookupByLibrary.simpleMessage("当有人将照片添加到您所属的共享相册时收到通知"),
"sharedWith": m51, "sharedWith": m53,
"sharedWithMe": MessageLookupByLibrary.simpleMessage("与我共享"), "sharedWithMe": MessageLookupByLibrary.simpleMessage("与我共享"),
"sharedWithYou": MessageLookupByLibrary.simpleMessage("已与您共享"), "sharedWithYou": MessageLookupByLibrary.simpleMessage("已与您共享"),
"sharing": MessageLookupByLibrary.simpleMessage("正在分享..."), "sharing": MessageLookupByLibrary.simpleMessage("正在分享..."),
@ -1056,11 +1069,11 @@ class MessageLookup extends MessageLookupByLibrary {
"signOutOtherDevices": MessageLookupByLibrary.simpleMessage("登出其他设备"), "signOutOtherDevices": MessageLookupByLibrary.simpleMessage("登出其他设备"),
"signUpTerms": MessageLookupByLibrary.simpleMessage( "signUpTerms": MessageLookupByLibrary.simpleMessage(
"我同意 <u-terms>服务条款</u-terms> 和 <u-policy>隐私政策</u-policy>"), "我同意 <u-terms>服务条款</u-terms> 和 <u-policy>隐私政策</u-policy>"),
"singleFileDeleteFromDevice": m52, "singleFileDeleteFromDevice": m54,
"singleFileDeleteHighlight": "singleFileDeleteHighlight":
MessageLookupByLibrary.simpleMessage("它将从所有相册中删除。"), MessageLookupByLibrary.simpleMessage("它将从所有相册中删除。"),
"singleFileInBothLocalAndRemote": m53, "singleFileInBothLocalAndRemote": m55,
"singleFileInRemoteOnly": m54, "singleFileInRemoteOnly": m56,
"skip": MessageLookupByLibrary.simpleMessage("跳过"), "skip": MessageLookupByLibrary.simpleMessage("跳过"),
"social": MessageLookupByLibrary.simpleMessage("社交"), "social": MessageLookupByLibrary.simpleMessage("社交"),
"someItemsAreInBothEnteAndYourDevice": "someItemsAreInBothEnteAndYourDevice":
@ -1091,12 +1104,12 @@ class MessageLookup extends MessageLookupByLibrary {
"storage": MessageLookupByLibrary.simpleMessage("存储空间"), "storage": MessageLookupByLibrary.simpleMessage("存储空间"),
"storageBreakupFamily": MessageLookupByLibrary.simpleMessage("家庭"), "storageBreakupFamily": MessageLookupByLibrary.simpleMessage("家庭"),
"storageBreakupYou": MessageLookupByLibrary.simpleMessage(""), "storageBreakupYou": MessageLookupByLibrary.simpleMessage(""),
"storageInGB": m55, "storageInGB": m57,
"storageLimitExceeded": MessageLookupByLibrary.simpleMessage("已超出存储限制"), "storageLimitExceeded": MessageLookupByLibrary.simpleMessage("已超出存储限制"),
"storageUsageInfo": m56, "storageUsageInfo": m58,
"strongStrength": MessageLookupByLibrary.simpleMessage(""), "strongStrength": MessageLookupByLibrary.simpleMessage(""),
"subAlreadyLinkedErrMessage": m57, "subAlreadyLinkedErrMessage": m59,
"subWillBeCancelledOn": m58, "subWillBeCancelledOn": m60,
"subscribe": MessageLookupByLibrary.simpleMessage("订阅"), "subscribe": MessageLookupByLibrary.simpleMessage("订阅"),
"subscribeToEnableSharing": "subscribeToEnableSharing":
MessageLookupByLibrary.simpleMessage("您的订阅似乎已过期。请订阅以启用分享。"), MessageLookupByLibrary.simpleMessage("您的订阅似乎已过期。请订阅以启用分享。"),
@ -1109,7 +1122,7 @@ class MessageLookup extends MessageLookupByLibrary {
"successfullyUnhid": MessageLookupByLibrary.simpleMessage("已成功取消隐藏"), "successfullyUnhid": MessageLookupByLibrary.simpleMessage("已成功取消隐藏"),
"suggestFeatures": MessageLookupByLibrary.simpleMessage("建议新功能"), "suggestFeatures": MessageLookupByLibrary.simpleMessage("建议新功能"),
"support": MessageLookupByLibrary.simpleMessage("支持"), "support": MessageLookupByLibrary.simpleMessage("支持"),
"syncProgress": m59, "syncProgress": m61,
"syncStopped": MessageLookupByLibrary.simpleMessage("同步已停止"), "syncStopped": MessageLookupByLibrary.simpleMessage("同步已停止"),
"syncing": MessageLookupByLibrary.simpleMessage("正在同步···"), "syncing": MessageLookupByLibrary.simpleMessage("正在同步···"),
"systemTheme": MessageLookupByLibrary.simpleMessage("适应系统"), "systemTheme": MessageLookupByLibrary.simpleMessage("适应系统"),
@ -1132,7 +1145,7 @@ class MessageLookup extends MessageLookupByLibrary {
"theme": MessageLookupByLibrary.simpleMessage("主题"), "theme": MessageLookupByLibrary.simpleMessage("主题"),
"theseItemsWillBeDeletedFromYourDevice": "theseItemsWillBeDeletedFromYourDevice":
MessageLookupByLibrary.simpleMessage("这些项目将从您的设备中删除。"), MessageLookupByLibrary.simpleMessage("这些项目将从您的设备中删除。"),
"theyAlsoGetXGb": m60, "theyAlsoGetXGb": m62,
"theyWillBeDeletedFromAllAlbums": "theyWillBeDeletedFromAllAlbums":
MessageLookupByLibrary.simpleMessage("他们将从所有相册中删除。"), MessageLookupByLibrary.simpleMessage("他们将从所有相册中删除。"),
"thisActionCannotBeUndone": "thisActionCannotBeUndone":
@ -1146,7 +1159,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("这个邮箱地址已经被使用"), MessageLookupByLibrary.simpleMessage("这个邮箱地址已经被使用"),
"thisImageHasNoExifData": "thisImageHasNoExifData":
MessageLookupByLibrary.simpleMessage("此图像没有Exif 数据"), MessageLookupByLibrary.simpleMessage("此图像没有Exif 数据"),
"thisIsPersonVerificationId": m61, "thisIsPersonVerificationId": m63,
"thisIsYourVerificationId": "thisIsYourVerificationId":
MessageLookupByLibrary.simpleMessage("这是您的验证 ID"), MessageLookupByLibrary.simpleMessage("这是您的验证 ID"),
"thisWillLogYouOutOfTheFollowingDevice": "thisWillLogYouOutOfTheFollowingDevice":
@ -1160,7 +1173,7 @@ class MessageLookup extends MessageLookupByLibrary {
"total": MessageLookupByLibrary.simpleMessage("总计"), "total": MessageLookupByLibrary.simpleMessage("总计"),
"totalSize": MessageLookupByLibrary.simpleMessage("总大小"), "totalSize": MessageLookupByLibrary.simpleMessage("总大小"),
"trash": MessageLookupByLibrary.simpleMessage("回收站"), "trash": MessageLookupByLibrary.simpleMessage("回收站"),
"trashDaysLeft": m62, "trashDaysLeft": m64,
"tryAgain": MessageLookupByLibrary.simpleMessage("请再试一次"), "tryAgain": MessageLookupByLibrary.simpleMessage("请再试一次"),
"turnOnBackupForAutoUpload": "turnOnBackupForAutoUpload":
MessageLookupByLibrary.simpleMessage("打开备份以自动上传添加到此设备文件夹的文件。"), MessageLookupByLibrary.simpleMessage("打开备份以自动上传添加到此设备文件夹的文件。"),
@ -1203,14 +1216,15 @@ class MessageLookup extends MessageLookupByLibrary {
"useRecoveryKey": MessageLookupByLibrary.simpleMessage("使用恢复密钥"), "useRecoveryKey": MessageLookupByLibrary.simpleMessage("使用恢复密钥"),
"useSelectedPhoto": MessageLookupByLibrary.simpleMessage("使用所选照片"), "useSelectedPhoto": MessageLookupByLibrary.simpleMessage("使用所选照片"),
"usedSpace": MessageLookupByLibrary.simpleMessage("已用空间"), "usedSpace": MessageLookupByLibrary.simpleMessage("已用空间"),
"validTill": m63, "validTill": m65,
"verificationFailedPleaseTryAgain": "verificationFailedPleaseTryAgain":
MessageLookupByLibrary.simpleMessage("验证失败,请重试"), MessageLookupByLibrary.simpleMessage("验证失败,请重试"),
"verificationId": MessageLookupByLibrary.simpleMessage("验证 ID"), "verificationId": MessageLookupByLibrary.simpleMessage("验证 ID"),
"verify": MessageLookupByLibrary.simpleMessage("验证"), "verify": MessageLookupByLibrary.simpleMessage("验证"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("验证电子邮件"), "verifyEmail": MessageLookupByLibrary.simpleMessage("验证电子邮件"),
"verifyEmailID": m64, "verifyEmailID": m66,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("验证"), "verifyIDLabel": MessageLookupByLibrary.simpleMessage("验证"),
"verifyPasskey": MessageLookupByLibrary.simpleMessage("验证通行密钥"),
"verifyPassword": MessageLookupByLibrary.simpleMessage("验证密码"), "verifyPassword": MessageLookupByLibrary.simpleMessage("验证密码"),
"verifying": MessageLookupByLibrary.simpleMessage("正在验证..."), "verifying": MessageLookupByLibrary.simpleMessage("正在验证..."),
"verifyingRecoveryKey": "verifyingRecoveryKey":
@ -1226,15 +1240,17 @@ class MessageLookup extends MessageLookupByLibrary {
"viewer": MessageLookupByLibrary.simpleMessage("查看者"), "viewer": MessageLookupByLibrary.simpleMessage("查看者"),
"visitWebToManage": "visitWebToManage":
MessageLookupByLibrary.simpleMessage("请访问 web.ente.io 来管理您的订阅"), MessageLookupByLibrary.simpleMessage("请访问 web.ente.io 来管理您的订阅"),
"waitingForVerification":
MessageLookupByLibrary.simpleMessage("等待验证..."),
"waitingForWifi": MessageLookupByLibrary.simpleMessage("正在等待 WiFi..."), "waitingForWifi": MessageLookupByLibrary.simpleMessage("正在等待 WiFi..."),
"weAreOpenSource": MessageLookupByLibrary.simpleMessage("我们是开源的 "), "weAreOpenSource": MessageLookupByLibrary.simpleMessage("我们是开源的 "),
"weDontSupportEditingPhotosAndAlbumsThatYouDont": "weDontSupportEditingPhotosAndAlbumsThatYouDont":
MessageLookupByLibrary.simpleMessage("我们不支持编辑您尚未拥有的照片和相册"), MessageLookupByLibrary.simpleMessage("我们不支持编辑您尚未拥有的照片和相册"),
"weHaveSendEmailTo": m65, "weHaveSendEmailTo": m67,
"weakStrength": MessageLookupByLibrary.simpleMessage(""), "weakStrength": MessageLookupByLibrary.simpleMessage(""),
"welcomeBack": MessageLookupByLibrary.simpleMessage("欢迎回来!"), "welcomeBack": MessageLookupByLibrary.simpleMessage("欢迎回来!"),
"yearly": MessageLookupByLibrary.simpleMessage("每年"), "yearly": MessageLookupByLibrary.simpleMessage("每年"),
"yearsAgo": m66, "yearsAgo": m68,
"yes": MessageLookupByLibrary.simpleMessage(""), "yes": MessageLookupByLibrary.simpleMessage(""),
"yesCancel": MessageLookupByLibrary.simpleMessage("是的,取消"), "yesCancel": MessageLookupByLibrary.simpleMessage("是的,取消"),
"yesConvertToViewer": MessageLookupByLibrary.simpleMessage("是的,转换为查看者"), "yesConvertToViewer": MessageLookupByLibrary.simpleMessage("是的,转换为查看者"),
@ -1260,7 +1276,7 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage("莫开玩笑,您不能与自己分享"), MessageLookupByLibrary.simpleMessage("莫开玩笑,您不能与自己分享"),
"youDontHaveAnyArchivedItems": "youDontHaveAnyArchivedItems":
MessageLookupByLibrary.simpleMessage("您没有任何存档的项目。"), MessageLookupByLibrary.simpleMessage("您没有任何存档的项目。"),
"youHaveSuccessfullyFreedUp": m67, "youHaveSuccessfullyFreedUp": m69,
"yourAccountHasBeenDeleted": "yourAccountHasBeenDeleted":
MessageLookupByLibrary.simpleMessage("您的账户已删除"), MessageLookupByLibrary.simpleMessage("您的账户已删除"),
"yourMap": MessageLookupByLibrary.simpleMessage("您的地图"), "yourMap": MessageLookupByLibrary.simpleMessage("您的地图"),

View file

@ -8427,6 +8427,42 @@ class S {
args: [], args: [],
); );
} }
/// `{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}`
String addViewers(num count) {
return Intl.plural(
count,
zero: 'Add viewer',
one: 'Add viewer',
other: 'Add viewers',
name: 'addViewers',
desc: '',
args: [count],
);
}
/// `{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}`
String addCollaborators(num count) {
return Intl.plural(
count,
zero: 'Add collaborator',
one: 'Add collaborator',
other: 'Add collaborators',
name: 'addCollaborators',
desc: '',
args: [count],
);
}
/// `Long press an email to verify end to end encryption.`
String get longPressAnEmailToVerifyEndToEndEncryption {
return Intl.message(
'Long press an email to verify end to end encryption.',
name: 'longPressAnEmailToVerifyEndToEndEncryption',
desc: '',
args: [],
);
}
} }
class AppLocalizationDelegate extends LocalizationsDelegate<S> { class AppLocalizationDelegate extends LocalizationsDelegate<S> {

View file

@ -13,5 +13,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1199,5 +1199,8 @@
"deviceCodeHint": "Code eingeben", "deviceCodeHint": "Code eingeben",
"joinDiscord": "Discord beitreten", "joinDiscord": "Discord beitreten",
"locations": "Orte", "locations": "Orte",
"descriptions": "Beschreibungen" "descriptions": "Beschreibungen",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1199,5 +1199,8 @@
"deviceCodeHint": "Enter the code", "deviceCodeHint": "Enter the code",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -975,5 +975,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1156,5 +1156,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1118,5 +1118,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -13,5 +13,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1194,5 +1194,8 @@
"deviceCodeHint": "Voer de code in", "deviceCodeHint": "Voer de code in",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -27,5 +27,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -114,5 +114,8 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente", "editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord", "joinDiscord": "Join Discord",
"locations": "Locations", "locations": "Locations",
"descriptions": "Descriptions" "descriptions": "Descriptions",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1199,5 +1199,8 @@
"deviceCodeHint": "Insira o código", "deviceCodeHint": "Insira o código",
"joinDiscord": "Junte-se ao Discord", "joinDiscord": "Junte-se ao Discord",
"locations": "Locais", "locations": "Locais",
"descriptions": "Descrições" "descriptions": "Descrições",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -1199,5 +1199,8 @@
"deviceCodeHint": "输入代码", "deviceCodeHint": "输入代码",
"joinDiscord": "加入 Discord", "joinDiscord": "加入 Discord",
"locations": "位置", "locations": "位置",
"descriptions": "描述" "descriptions": "描述",
"addViewers": "{count, plural, zero {Add viewer} one {Add viewer} other {Add viewers}}",
"addCollaborators": "{count, plural, zero {Add collaborator} one {Add collaborator} other {Add collaborators}}",
"longPressAnEmailToVerifyEndToEndEncryption": "Long press an email to verify end to end encryption."
} }

View file

@ -117,9 +117,10 @@ class _AddParticipantPage extends State<AddParticipantPage> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
filterSuggestedUsers.isNotEmpty filterSuggestedUsers.isNotEmpty
? const MenuSectionDescriptionWidget( ? MenuSectionDescriptionWidget(
content: content: S
"Long press an email to verify.", .of(context)
.longPressAnEmailToVerifyEndToEndEncryption,
) )
: const SizedBox.shrink(), : const SizedBox.shrink(),
widget.isAddingViewer widget.isAddingViewer
@ -213,8 +214,10 @@ class _AddParticipantPage extends State<AddParticipantPage> {
buttonType: ButtonType.primary, buttonType: ButtonType.primary,
buttonSize: ButtonSize.large, buttonSize: ButtonSize.large,
labelText: widget.isAddingViewer labelText: widget.isAddingViewer
? S.of(context).addViewer ? S.of(context).addViewers(_selectedEmails.length)
: S.of(context).addCollaborator, : S
.of(context)
.addCollaborators(_selectedEmails.length),
isDisabled: _selectedEmails.isEmpty, isDisabled: _selectedEmails.isEmpty,
onTap: () async { onTap: () async {
final results = <bool>[]; final results = <bool>[];