Add workaround for Polish plurals (#2759)
Instead of foo_other, i18n seems to fallback to the base language translation for languages like Polish that have multiple plurals. Use the workaround mentioned here: https://github.com/i18next/i18next/issues/1851#issuecomment-1464017036
This commit is contained in:
@@ -26,7 +26,7 @@ export default function AllCollectionsHeader({
|
||||
: t("ALL_ALBUMS")}
|
||||
</Typography>
|
||||
<Typography variant="small" color={"text.muted"}>
|
||||
{t("albums", { count: collectionCount })}
|
||||
{t("albums_count", { count: collectionCount })}
|
||||
</Typography>
|
||||
</Box>
|
||||
</FluidContainer>
|
||||
|
||||
@@ -118,7 +118,7 @@ export default function ManageEmailShare({
|
||||
onClose={onClose}
|
||||
title={collection.name}
|
||||
onRootClose={handleRootClose}
|
||||
caption={t("participants", {
|
||||
caption={t("participants_count", {
|
||||
count: peopleCount,
|
||||
})}
|
||||
/>
|
||||
|
||||
@@ -50,7 +50,7 @@ export default function EmailShare({
|
||||
<>
|
||||
<Stack>
|
||||
<MenuSectionTitle
|
||||
title={t("shared_with_people", {
|
||||
title={t("shared_with_people_count", {
|
||||
count: collection.sharees?.length ?? 0,
|
||||
})}
|
||||
icon={<Workspaces />}
|
||||
|
||||
@@ -11,6 +11,17 @@ interface Iprops {
|
||||
storage: number;
|
||||
}
|
||||
export function IndividualUsageSection({ usage, storage, fileCount }: Iprops) {
|
||||
// [Note: Fallback translation for languages with multiple plurals]
|
||||
//
|
||||
// Languages like Polish and Arabian have multiple plural forms, and
|
||||
// currently i18n falls back to the base language translation instead of the
|
||||
// "_other" form if all the plural forms are not listed out.
|
||||
//
|
||||
// As a workaround, name the _other form as the unprefixed name. That is,
|
||||
// instead of calling the most general plural form as foo_count_other, call
|
||||
// it foo_count (To keep our heads straight, we adopt the convention that
|
||||
// all such pluralizable strings use the _count suffix, but that's not a
|
||||
// requirement from the library).
|
||||
return (
|
||||
<Box width="100%">
|
||||
<Progressbar value={Math.min((usage * 100) / storage, 100)} />
|
||||
|
||||
@@ -33,7 +33,9 @@ export default function UserNameInputDialog({
|
||||
initialValue={uploaderName}
|
||||
callback={handleSubmit}
|
||||
placeholder={t("NAME_PLACEHOLDER")}
|
||||
buttonText={t("add_photos", { count: toUploadFilesCount ?? 0 })}
|
||||
buttonText={t("add_photos_count", {
|
||||
count: toUploadFilesCount ?? 0,
|
||||
})}
|
||||
fieldType="text"
|
||||
blockButton
|
||||
secondaryButtonAction={onClose}
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "استيراد",
|
||||
"ADD_PHOTOS": "إضافة صور",
|
||||
"ADD_MORE_PHOTOS": "إضافة المزيد من الصور",
|
||||
"add_photos_one": "إضافة 1 عنصر",
|
||||
"add_photos_other": "إضافة {{count, number}} عناصر",
|
||||
"add_photos_count_one": "إضافة 1 عنصر",
|
||||
"add_photos_count": "إضافة {{count, number}} عناصر",
|
||||
"select_photos": "تحديد الصور",
|
||||
"FILE_UPLOAD": "تحميل الملف",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importieren",
|
||||
"ADD_PHOTOS": "Fotos hinzufügen",
|
||||
"ADD_MORE_PHOTOS": "Mehr Fotos hinzufügen",
|
||||
"add_photos_one": "Eine Datei hinzufügen",
|
||||
"add_photos_other": "{{count, number}} Dateien hinzufügen",
|
||||
"add_photos_count_one": "Eine Datei hinzufügen",
|
||||
"add_photos_count": "{{count, number}} Dateien hinzufügen",
|
||||
"select_photos": "Foto auswählen",
|
||||
"FILE_UPLOAD": "Datei hochladen",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Keine Erinnerungen",
|
||||
"photos_count_one": "Eine Erinnerung",
|
||||
"photos_count_other": "{{count, number}} Erinnerungen",
|
||||
"photos_count": "{{count, number}} Erinnerungen",
|
||||
"TERMS_AND_CONDITIONS": "Ich stimme den <a>Bedingungen</a> und <b>Datenschutzrichtlinien</b> zu",
|
||||
"ADD_TO_COLLECTION": "Zum Album hinzufügen",
|
||||
"SELECTED": "ausgewählt",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Freigabe ändern",
|
||||
"ADD_COLLABORATORS": "Bearbeiter hinzufügen",
|
||||
"ADD_NEW_EMAIL": "Neue E-Mail-Adresse hinzufügen",
|
||||
"shared_with_people_zero": "Mit bestimmten Personen teilen",
|
||||
"shared_with_people_one": "Geteilt mit einer Person",
|
||||
"shared_with_people_other": "Geteilt mit {{count, number}} Personen",
|
||||
"participants_zero": "Keine Teilnehmer",
|
||||
"participants_one": "1 Teilnehmer",
|
||||
"participants_other": "{{count, number}} Teilnehmer",
|
||||
"shared_with_people_count_zero": "Mit bestimmten Personen teilen",
|
||||
"shared_with_people_count_one": "Geteilt mit einer Person",
|
||||
"shared_with_people_count": "Geteilt mit {{count, number}} Personen",
|
||||
"participants_count_zero": "Keine Teilnehmer",
|
||||
"participants_count_one": "1 Teilnehmer",
|
||||
"participants_count": "{{count, number}} Teilnehmer",
|
||||
"ADD_VIEWERS": "Betrachter hinzufügen",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} wird nicht in der Lage sein, weitere Fotos zum Album</p> <p>hinzuzufügen. {{selectedEmail}} wird weiterhin die eigenen Fotos aus dem Album entfernen können</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} wird Fotos zum Album hinzufügen können",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Downloads anhalten?",
|
||||
"YES_STOP_DOWNLOADS": "Ja, Downloads anhalten",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Bist du dir sicher, dass du alle laufenden Downloads anhalten möchtest?",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Alben",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Alben",
|
||||
"ALL_ALBUMS": "Alle Alben",
|
||||
"ALBUMS": "Alben",
|
||||
"ALL_HIDDEN_ALBUMS": "Alle versteckten Alben",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Εισαγωγή",
|
||||
"ADD_PHOTOS": "Προσθήκη φωτογραφιών",
|
||||
"ADD_MORE_PHOTOS": "Προσθήκη περισσότερων φωτογραφιών",
|
||||
"add_photos_one": "Προσθήκη 1 αντικειμένου",
|
||||
"add_photos_other": "Προσθήκη {{count, number}} αντικειμένων",
|
||||
"add_photos_count_one": "Προσθήκη 1 αντικειμένου",
|
||||
"add_photos_count": "Προσθήκη {{count, number}} αντικειμένων",
|
||||
"select_photos": "Επιλογή φωτογραφιών",
|
||||
"FILE_UPLOAD": "Μεταφόρτωση Αρχείου",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "1 ανάμνηση",
|
||||
"photos_count_other": "{{count, number}} αναμνήσεις",
|
||||
"photos_count": "{{count, number}} αναμνήσεις",
|
||||
"TERMS_AND_CONDITIONS": "Συμφωνώ με τους <a>όρους χρήσης</a> και την <b>πολιτική απορρήτου</b>",
|
||||
"ADD_TO_COLLECTION": "Προσθήκη στο άλμπουμ",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Διακοπή λήψεων;",
|
||||
"YES_STOP_DOWNLOADS": "Ναι, διακοπή λήψεων",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Είστε σίγουροι ότι θέλετε να διακόψετε όλες τις λήψεις σε εξέλιξη;",
|
||||
"albums_one": "1 Άλμπουμ",
|
||||
"albums_other": "{{count, number}} Άλμπουμ",
|
||||
"albums_count_one": "1 Άλμπουμ",
|
||||
"albums_count": "{{count, number}} Άλμπουμ",
|
||||
"ALL_ALBUMS": "Όλα τα Άλμπουμ",
|
||||
"ALBUMS": "Άλμπουμ",
|
||||
"ALL_HIDDEN_ALBUMS": "Όλα τα κρυφά άλμπουμ",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Import",
|
||||
"ADD_PHOTOS": "Add photos",
|
||||
"ADD_MORE_PHOTOS": "Add more photos",
|
||||
"add_photos_one": "Add 1 item",
|
||||
"add_photos_other": "Add {{count, number}} items",
|
||||
"add_photos_count_one": "Add 1 item",
|
||||
"add_photos_count": "Add {{count, number}} items",
|
||||
"select_photos": "Select photos",
|
||||
"FILE_UPLOAD": "File Upload",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "No memories",
|
||||
"photos_count_one": "1 memory",
|
||||
"photos_count_other": "{{count, number}} memories",
|
||||
"photos_count": "{{count, number}} memories",
|
||||
"TERMS_AND_CONDITIONS": "I agree to the <a>terms</a> and <b>privacy policy</b>",
|
||||
"ADD_TO_COLLECTION": "Add to album",
|
||||
"SELECTED": "selected",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Modify sharing",
|
||||
"ADD_COLLABORATORS": "Add collaborators",
|
||||
"ADD_NEW_EMAIL": "Add a new email",
|
||||
"shared_with_people_zero": "Share with specific people",
|
||||
"shared_with_people_one": "Shared with 1 person",
|
||||
"shared_with_people_other": "Shared with {{count, number}} people",
|
||||
"participants_zero": "No participants",
|
||||
"participants_one": "1 participant",
|
||||
"participants_other": "{{count, number}} participants",
|
||||
"shared_with_people_count_zero": "Share with specific people",
|
||||
"shared_with_people_count_one": "Shared with 1 person",
|
||||
"shared_with_people_count": "Shared with {{count, number}} people",
|
||||
"participants_count_zero": "No participants",
|
||||
"participants_count_one": "1 participant",
|
||||
"participants_count": "{{count, number}} participants",
|
||||
"ADD_VIEWERS": "Add viewers",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} will not be able to add more photos to the album</p> <p>They will still be able to remove photos added by them</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} will be able to add photos to the album",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Stop downloads?",
|
||||
"YES_STOP_DOWNLOADS": "Yes, stop downloads",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Are you sure that you want to stop all the downloads in progress?",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Albums",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Albums",
|
||||
"ALL_ALBUMS": "All Albums",
|
||||
"ALBUMS": "Albums",
|
||||
"ALL_HIDDEN_ALBUMS": "All hidden albums",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importar",
|
||||
"ADD_PHOTOS": "Añadir fotos",
|
||||
"ADD_MORE_PHOTOS": "Añadir más fotos",
|
||||
"add_photos_one": "Añadir 1 foto",
|
||||
"add_photos_other": "Añadir {{count}} fotos",
|
||||
"add_photos_count_one": "Añadir 1 foto",
|
||||
"add_photos_count": "Añadir {{count}} fotos",
|
||||
"select_photos": "Seleccionar fotos",
|
||||
"FILE_UPLOAD": "Subir archivo",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "No hay recuerdos",
|
||||
"photos_count_one": "1 recuerdo",
|
||||
"photos_count_other": "{{count}} recuerdos",
|
||||
"photos_count": "{{count}} recuerdos",
|
||||
"TERMS_AND_CONDITIONS": "Acepto los <a>términos</a> y <b>política de privacidad</b>",
|
||||
"ADD_TO_COLLECTION": "Añadir al álbum",
|
||||
"SELECTED": "seleccionado",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Modificar compartir",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "Compartido con 1 persona",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "Compartido con 1 persona",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "¿Detener las descargas?",
|
||||
"YES_STOP_DOWNLOADS": "Sí, detener las descargas",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "¿Estás seguro de que quieres detener todas las descargas en curso?",
|
||||
"albums_one": "1 álbum",
|
||||
"albums_other": "{{count}} álbumes",
|
||||
"albums_count_one": "1 álbum",
|
||||
"albums_count": "{{count}} álbumes",
|
||||
"ALL_ALBUMS": "Todos los álbumes",
|
||||
"ALBUMS": "Álbumes",
|
||||
"ALL_HIDDEN_ALBUMS": "Todos los álbumes ocultos",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Tuo",
|
||||
"ADD_PHOTOS": "Lisää kuvia",
|
||||
"ADD_MORE_PHOTOS": "Lisää enemmän kuvia",
|
||||
"add_photos_one": "Lisää yksi kohde",
|
||||
"add_photos_other": "Lisää {{count, number}} kohdetta",
|
||||
"add_photos_count_one": "Lisää yksi kohde",
|
||||
"add_photos_count": "Lisää {{count, number}} kohdetta",
|
||||
"select_photos": "Valitse kuvat",
|
||||
"FILE_UPLOAD": "Tiedoston lataaminen",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importer",
|
||||
"ADD_PHOTOS": "Ajouter des photos",
|
||||
"ADD_MORE_PHOTOS": "Ajouter plus de photos",
|
||||
"add_photos_one": "Ajouter une photo",
|
||||
"add_photos_other": "Ajouter {{count}} photos",
|
||||
"add_photos_count_one": "Ajouter une photo",
|
||||
"add_photos_count": "Ajouter {{count}} photos",
|
||||
"select_photos": "Sélectionner des photos",
|
||||
"FILE_UPLOAD": "Fichier chargé",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Pas de souvenirs",
|
||||
"photos_count_one": "1 souvenir",
|
||||
"photos_count_other": "{{count}} souvenirs",
|
||||
"photos_count": "{{count}} souvenirs",
|
||||
"TERMS_AND_CONDITIONS": "J'accepte les <a>conditions</a> et la <b>politique de confidentialité</b>",
|
||||
"ADD_TO_COLLECTION": "Ajouter à l'album",
|
||||
"SELECTED": "Sélectionné",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Modifier le partage",
|
||||
"ADD_COLLABORATORS": "Ajouter des collaborateurs",
|
||||
"ADD_NEW_EMAIL": "Ajouter un nouvel email",
|
||||
"shared_with_people_zero": "Partager avec des personnes spécifiques",
|
||||
"shared_with_people_one": "Partagé avec 1 personne",
|
||||
"shared_with_people_other": "Partagé avec {{count, number}} personnes",
|
||||
"participants_zero": "Aucun participant",
|
||||
"participants_one": "1 participant",
|
||||
"participants_other": "{{count, number}} participants",
|
||||
"shared_with_people_count_zero": "Partager avec des personnes spécifiques",
|
||||
"shared_with_people_count_one": "Partagé avec 1 personne",
|
||||
"shared_with_people_count": "Partagé avec {{count, number}} personnes",
|
||||
"participants_count_zero": "Aucun participant",
|
||||
"participants_count_one": "1 participant",
|
||||
"participants_count": "{{count, number}} participants",
|
||||
"ADD_VIEWERS": "Ajouter un observateur",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} ne pourra plus ajouter de photos à l'album</p> <p>Il pourra toujours supprimer les photos qu'il a ajoutées</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} pourra ajouter des photos à l'album",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Arrêter le téléchargement ?",
|
||||
"YES_STOP_DOWNLOADS": "Oui, arrêter les téléchargements",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Êtes-vous certains de vouloir arrêter tous les chargements en cours?",
|
||||
"albums_one": "1 album",
|
||||
"albums_other": "{{count}} albums",
|
||||
"albums_count_one": "1 album",
|
||||
"albums_count": "{{count}} albums",
|
||||
"ALL_ALBUMS": "Tous les albums",
|
||||
"ALBUMS": "Albums",
|
||||
"ALL_HIDDEN_ALBUMS": "Tous les albums masqués",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Impor",
|
||||
"ADD_PHOTOS": "Tambahkan foto",
|
||||
"ADD_MORE_PHOTOS": "Tambahkan lebih banyak foto",
|
||||
"add_photos_one": "Tambahkan item",
|
||||
"add_photos_other": "Tambahkan {{count, number}} item",
|
||||
"add_photos_count_one": "Tambahkan item",
|
||||
"add_photos_count": "Tambahkan {{count, number}} item",
|
||||
"select_photos": "Pilih foto",
|
||||
"FILE_UPLOAD": "Unggah File",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Tidak ada kenangan",
|
||||
"photos_count_one": "1 kenangan",
|
||||
"photos_count_other": "{{count, number}} kenangan",
|
||||
"photos_count": "{{count, number}} kenangan",
|
||||
"TERMS_AND_CONDITIONS": "Saya menyetujui <a>ketentuan</a> dan <b>kebijakan privasi</b> Ente",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "Tambah kolaborator",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "Bagikan dengan orang tertentu",
|
||||
"shared_with_people_one": "Berbagi dengan 1 orang",
|
||||
"shared_with_people_other": "Berbagi dengan {{count, number}} orang",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "Bagikan dengan orang tertentu",
|
||||
"shared_with_people_count_one": "Berbagi dengan 1 orang",
|
||||
"shared_with_people_count": "Berbagi dengan {{count, number}} orang",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Album",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Album",
|
||||
"ALL_ALBUMS": "Semua Album",
|
||||
"ALBUMS": "Album",
|
||||
"ALL_HIDDEN_ALBUMS": "Semua album tersembunyi",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importa",
|
||||
"ADD_PHOTOS": "Aggiungi foto",
|
||||
"ADD_MORE_PHOTOS": "Aggiungi altre foto",
|
||||
"add_photos_one": "Aggiungi elemento",
|
||||
"add_photos_other": "Aggiungi {{count, number}} elementi",
|
||||
"add_photos_count_one": "Aggiungi elemento",
|
||||
"add_photos_count": "Aggiungi {{count, number}} elementi",
|
||||
"select_photos": "Seleziona foto",
|
||||
"FILE_UPLOAD": "Carica file",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Nessuna memoria",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "Aggiungi all'album",
|
||||
"SELECTED": "selezionato",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "Nessun partecipante",
|
||||
"participants_one": "1 partecipante",
|
||||
"participants_other": "{{count, number}} partecipanti",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "Nessun partecipante",
|
||||
"participants_count_one": "1 partecipante",
|
||||
"participants_count": "{{count, number}} partecipanti",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Album",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Album",
|
||||
"ALL_ALBUMS": "Tutti gli Album",
|
||||
"ALBUMS": "Album",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "가져오기",
|
||||
"ADD_PHOTOS": "사진 추가",
|
||||
"ADD_MORE_PHOTOS": "사진 더 추가하기",
|
||||
"add_photos_one": "아이템 하나 추가",
|
||||
"add_photos_other": "아이템 {{count, number}} 개 추가하기",
|
||||
"add_photos_count_one": "아이템 하나 추가",
|
||||
"add_photos_count": "아이템 {{count, number}} 개 추가하기",
|
||||
"select_photos": "사진 선택하기",
|
||||
"FILE_UPLOAD": "파일 업로드",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importeren",
|
||||
"ADD_PHOTOS": "Foto's toevoegen",
|
||||
"ADD_MORE_PHOTOS": "Meer foto's toevoegen",
|
||||
"add_photos_one": "1 foto toevoegen",
|
||||
"add_photos_other": "{{count, number}} foto's toevoegen",
|
||||
"add_photos_count_one": "1 foto toevoegen",
|
||||
"add_photos_count": "{{count, number}} foto's toevoegen",
|
||||
"select_photos": "Selecteer foto's",
|
||||
"FILE_UPLOAD": "Bestand uploaden",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Geen herinneringen",
|
||||
"photos_count_one": "1 herinnering",
|
||||
"photos_count_other": "{{count, number}} herinneringen",
|
||||
"photos_count": "{{count, number}} herinneringen",
|
||||
"TERMS_AND_CONDITIONS": "Ik ga akkoord met de <a>gebruiksvoorwaarden</a> en <b>privacybeleid</b>",
|
||||
"ADD_TO_COLLECTION": "Toevoegen aan album",
|
||||
"SELECTED": "geselecteerd",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Delen wijzigen",
|
||||
"ADD_COLLABORATORS": "Samenwerker toevoegen",
|
||||
"ADD_NEW_EMAIL": "Nieuw e-mailadres toevoegen",
|
||||
"shared_with_people_zero": "Delen met specifieke mensen",
|
||||
"shared_with_people_one": "Gedeeld met 1 persoon",
|
||||
"shared_with_people_other": "Gedeeld met {{count, number}} mensen",
|
||||
"participants_zero": "Geen deelnemers",
|
||||
"participants_one": "1 deelnemer",
|
||||
"participants_other": "{{count, number}} deelnemers",
|
||||
"shared_with_people_count_zero": "Delen met specifieke mensen",
|
||||
"shared_with_people_count_one": "Gedeeld met 1 persoon",
|
||||
"shared_with_people_count": "Gedeeld met {{count, number}} mensen",
|
||||
"participants_count_zero": "Geen deelnemers",
|
||||
"participants_count_one": "1 deelnemer",
|
||||
"participants_count": "{{count, number}} deelnemers",
|
||||
"ADD_VIEWERS": "Voeg kijkers toe",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} zullen geen foto's meer kunnen toevoegen aan dit album</p> <p> Ze zullen nog steeds bestaande foto's kunnen verwijderen die door hen zijn toegevoegd</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} zal foto's aan het album kunnen toevoegen",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Downloaden stoppen?",
|
||||
"YES_STOP_DOWNLOADS": "Ja, downloads stoppen",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Weet je zeker dat je wilt stoppen met alle downloads die worden uitgevoerd?",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Albums",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Albums",
|
||||
"ALL_ALBUMS": "Alle albums",
|
||||
"ALBUMS": "Albums",
|
||||
"ALL_HIDDEN_ALBUMS": "Alle verborgen albums",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importuj",
|
||||
"ADD_PHOTOS": "Dodaj zdjęcia",
|
||||
"ADD_MORE_PHOTOS": "Dodaj więcej zdjęć",
|
||||
"add_photos_one": "Dodaj 1 element",
|
||||
"add_photos_other": "Dodaj {{count, number}} elementów",
|
||||
"add_photos_count_one": "Dodaj 1 element",
|
||||
"add_photos_count": "Dodaj {{count, number}} elementów",
|
||||
"select_photos": "Wybierz zdjęcia",
|
||||
"FILE_UPLOAD": "Przesył plików",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Brak wspomnień",
|
||||
"photos_count_one": "1 wspomnienie",
|
||||
"photos_count_other": "{{count, number}} wspomnień",
|
||||
"photos_count": "{{count, number}} wspomnień",
|
||||
"TERMS_AND_CONDITIONS": "Akceptuję <a>warunki korzystania z usługi</a> i <b>politykę prywatności</b>",
|
||||
"ADD_TO_COLLECTION": "Dodaj do albumu",
|
||||
"SELECTED": "wybrane",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Modyfikuj udostępnianie",
|
||||
"ADD_COLLABORATORS": "Dodaj współuczestników",
|
||||
"ADD_NEW_EMAIL": "Dodaj nowy adres e-mail",
|
||||
"shared_with_people_zero": "Podziel się z określonymi osobami",
|
||||
"shared_with_people_one": "Udostępnione z jedną osobą",
|
||||
"shared_with_people_other": "Udostępnione z {{count, number}} osobami",
|
||||
"participants_zero": "Brak uczestników",
|
||||
"participants_one": "1 uczestnik",
|
||||
"participants_other": "{{count, number}} uczestników",
|
||||
"shared_with_people_count_zero": "Podziel się z określonymi osobami",
|
||||
"shared_with_people_count_one": "Udostępnione z jedną osobą",
|
||||
"shared_with_people_count": "Udostępnione z {{count, number}} osobami",
|
||||
"participants_count_zero": "Brak uczestników",
|
||||
"participants_count_one": "1 uczestnik",
|
||||
"participants_count": "{{count, number}} uczestników",
|
||||
"ADD_VIEWERS": "Dodaj widzów",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} nie będzie mógł dodać więcej zdjęć do tego albumu.</p> <p>Nadal będą mogli usuwać istniejące zdjęcia, które dodali</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} będzie mógł dodawać zdjęcia do albumu",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Zatrzymać pobieranie?",
|
||||
"YES_STOP_DOWNLOADS": "Tak, zatrzymaj pobieranie",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Czy na pewno chcesz zatrzymać wszystkie pobierane w toku?",
|
||||
"albums_one": "1 Album",
|
||||
"albums_other": "{{count, number}} Albumów",
|
||||
"albums_count_one": "1 Album",
|
||||
"albums_count": "{{count, number}} Albumów",
|
||||
"ALL_ALBUMS": "Wszystkie Albumy",
|
||||
"ALBUMS": "Albumy",
|
||||
"ALL_HIDDEN_ALBUMS": "Wszystkie ukryte albumy",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importar",
|
||||
"ADD_PHOTOS": "Adicionar fotos",
|
||||
"ADD_MORE_PHOTOS": "Adicionar mais fotos",
|
||||
"add_photos_one": "Adicionar item",
|
||||
"add_photos_other": "Adicionar {{count, number}} itens",
|
||||
"add_photos_count_one": "Adicionar item",
|
||||
"add_photos_count": "Adicionar {{count, number}} itens",
|
||||
"select_photos": "Selecionar fotos",
|
||||
"FILE_UPLOAD": "Envio de Arquivo",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Sem memórias",
|
||||
"photos_count_one": "1 memória",
|
||||
"photos_count_other": "{{count, number}} memórias",
|
||||
"photos_count": "{{count, number}} memórias",
|
||||
"TERMS_AND_CONDITIONS": "Eu concordo com os <a>termos</a> e <b>a política de privacidade</b>",
|
||||
"ADD_TO_COLLECTION": "Adicionar ao álbum",
|
||||
"SELECTED": "selecionado",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Modificar compartilhamento",
|
||||
"ADD_COLLABORATORS": "Adicionar colaboradores",
|
||||
"ADD_NEW_EMAIL": "Adicionar um novo email",
|
||||
"shared_with_people_zero": "Compartilhar com pessoas específicas",
|
||||
"shared_with_people_one": "Compartilhado com 1 pessoa",
|
||||
"shared_with_people_other": "Compartilhado com {{count, number}} pessoas",
|
||||
"participants_zero": "Nenhum participante",
|
||||
"participants_one": "1 participante",
|
||||
"participants_other": "{{count, number}} participantes",
|
||||
"shared_with_people_count_zero": "Compartilhar com pessoas específicas",
|
||||
"shared_with_people_count_one": "Compartilhado com 1 pessoa",
|
||||
"shared_with_people_count": "Compartilhado com {{count, number}} pessoas",
|
||||
"participants_count_zero": "Nenhum participante",
|
||||
"participants_count_one": "1 participante",
|
||||
"participants_count": "{{count, number}} participantes",
|
||||
"ADD_VIEWERS": "Adicionar visualizações",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} Não poderá adicionar mais fotos a este álbum<p><p>Eles ainda poderão remover as fotos existentes adicionadas por eles<p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} poderá adicionar fotos ao álbum",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Parar downloads?",
|
||||
"YES_STOP_DOWNLOADS": "Sim, parar downloads",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Tem certeza que deseja parar todos os downloads em andamento?",
|
||||
"albums_one": "1 Álbum",
|
||||
"albums_other": "{{count, number}} Álbuns",
|
||||
"albums_count_one": "1 Álbum",
|
||||
"albums_count": "{{count, number}} Álbuns",
|
||||
"ALL_ALBUMS": "Todos os álbuns",
|
||||
"ALBUMS": "Álbuns",
|
||||
"ALL_HIDDEN_ALBUMS": "Todos os álbuns ocultos",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importar",
|
||||
"ADD_PHOTOS": "Adicionar fotos",
|
||||
"ADD_MORE_PHOTOS": "Adicionar mais fotos",
|
||||
"add_photos_one": "Adicionar item",
|
||||
"add_photos_other": "Adicionar {{count, number}} itens",
|
||||
"add_photos_count_one": "Adicionar item",
|
||||
"add_photos_count": "Adicionar {{count, number}} itens",
|
||||
"select_photos": "Selecionar fotos",
|
||||
"FILE_UPLOAD": "Enviar Ficheiro",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Импорт",
|
||||
"ADD_PHOTOS": "Добавить фотографии",
|
||||
"ADD_MORE_PHOTOS": "Добавить больше фото",
|
||||
"add_photos_one": "Добавить 1 элемент",
|
||||
"add_photos_other": "Добавить {{count, number}} элементов",
|
||||
"add_photos_count_one": "Добавить 1 элемент",
|
||||
"add_photos_count": "Добавить {{count, number}} элементов",
|
||||
"select_photos": "Выбрать фотографии",
|
||||
"FILE_UPLOAD": "Загрузка файла",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "Воспоминания отсутствуют",
|
||||
"photos_count_one": "1 память",
|
||||
"photos_count_other": "{{count, number}} воспоминания",
|
||||
"photos_count": "{{count, number}} воспоминания",
|
||||
"TERMS_AND_CONDITIONS": "Я согласен с тем, что <a> условия </a> и <b>политика конфиденциальности</b>",
|
||||
"ADD_TO_COLLECTION": "Добавить в альбом",
|
||||
"SELECTED": "выбрано",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "Изменить общий доступ",
|
||||
"ADD_COLLABORATORS": "Добавление соавторов",
|
||||
"ADD_NEW_EMAIL": "Добавьте новое электронное письмо",
|
||||
"shared_with_people_zero": "Делитесь с конкретными людьми",
|
||||
"shared_with_people_one": "Совместно с 1 человеком",
|
||||
"shared_with_people_other": "Поделился с {{count, number}} люди",
|
||||
"participants_zero": "Нет участников",
|
||||
"participants_one": "1 участник",
|
||||
"participants_other": "{{count, number}} участники",
|
||||
"shared_with_people_count_zero": "Делитесь с конкретными людьми",
|
||||
"shared_with_people_count_one": "Совместно с 1 человеком",
|
||||
"shared_with_people_count": "Поделился с {{count, number}} люди",
|
||||
"participants_count_zero": "Нет участников",
|
||||
"participants_count_one": "1 участник",
|
||||
"participants_count": "{{count, number}} участники",
|
||||
"ADD_VIEWERS": "Добавить зрителей",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} они не смогут добавить больше фотографий в альбом</p> <p>Они по-прежнему смогут удалять добавленные ими фотографии</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} сможете добавлять фотографии в альбом",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "Остановить загрузку?",
|
||||
"YES_STOP_DOWNLOADS": "Да, остановите загрузку",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "Вы уверены, что хотите остановить все текущие загрузки?",
|
||||
"albums_one": "1 Альбом",
|
||||
"albums_other": "{{count, number}} Альбомы",
|
||||
"albums_count_one": "1 Альбом",
|
||||
"albums_count": "{{count, number}} Альбомы",
|
||||
"ALL_ALBUMS": "Все альбомы",
|
||||
"ALBUMS": "Альбомы",
|
||||
"ALL_HIDDEN_ALBUMS": "Все скрытые альбомы",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "Importera",
|
||||
"ADD_PHOTOS": "Lägg till bilder",
|
||||
"ADD_MORE_PHOTOS": "Lägg till fler bilder",
|
||||
"add_photos_one": "Lägg till ett (1) objekt",
|
||||
"add_photos_other": "Lägg till {{count, number}} objekt",
|
||||
"add_photos_count_one": "Lägg till ett (1) objekt",
|
||||
"add_photos_count": "Lägg till {{count, number}} objekt",
|
||||
"select_photos": "Välj bilder",
|
||||
"FILE_UPLOAD": "Ladda upp",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "Inga deltagare",
|
||||
"participants_one": "1 deltagare",
|
||||
"participants_other": "{{count, number}} deltagare",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "Inga deltagare",
|
||||
"participants_count_one": "1 deltagare",
|
||||
"participants_count": "{{count, number}} deltagare",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "1 album",
|
||||
"albums_other": "{{count, number}} album",
|
||||
"albums_count_one": "1 album",
|
||||
"albums_count": "{{count, number}} album",
|
||||
"ALL_ALBUMS": "Alla album",
|
||||
"ALBUMS": "Album",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "",
|
||||
"ADD_PHOTOS": "",
|
||||
"ADD_MORE_PHOTOS": "",
|
||||
"add_photos_one": "",
|
||||
"add_photos_other": "",
|
||||
"add_photos_count_one": "",
|
||||
"add_photos_count": "",
|
||||
"select_photos": "",
|
||||
"FILE_UPLOAD": "",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "",
|
||||
"photos_count_one": "",
|
||||
"photos_count_other": "",
|
||||
"photos_count": "",
|
||||
"TERMS_AND_CONDITIONS": "",
|
||||
"ADD_TO_COLLECTION": "",
|
||||
"SELECTED": "",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "",
|
||||
"ADD_COLLABORATORS": "",
|
||||
"ADD_NEW_EMAIL": "",
|
||||
"shared_with_people_zero": "",
|
||||
"shared_with_people_one": "",
|
||||
"shared_with_people_other": "",
|
||||
"participants_zero": "",
|
||||
"participants_one": "",
|
||||
"participants_other": "",
|
||||
"shared_with_people_count_zero": "",
|
||||
"shared_with_people_count_one": "",
|
||||
"shared_with_people_count": "",
|
||||
"participants_count_zero": "",
|
||||
"participants_count_one": "",
|
||||
"participants_count": "",
|
||||
"ADD_VIEWERS": "",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "",
|
||||
"YES_STOP_DOWNLOADS": "",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "",
|
||||
"albums_one": "",
|
||||
"albums_other": "",
|
||||
"albums_count_one": "",
|
||||
"albums_count": "",
|
||||
"ALL_ALBUMS": "",
|
||||
"ALBUMS": "",
|
||||
"ALL_HIDDEN_ALBUMS": "",
|
||||
|
||||
@@ -52,8 +52,8 @@
|
||||
"import": "导入",
|
||||
"ADD_PHOTOS": "添加照片",
|
||||
"ADD_MORE_PHOTOS": "添加更多的照片",
|
||||
"add_photos_one": "添加1个项目",
|
||||
"add_photos_other": "添加 {{count, number}} 个项目",
|
||||
"add_photos_count_one": "添加1个项目",
|
||||
"add_photos_count": "添加 {{count, number}} 个项目",
|
||||
"select_photos": "选择照片",
|
||||
"FILE_UPLOAD": "上传文件",
|
||||
"UPLOAD_STAGE_MESSAGE": {
|
||||
@@ -225,7 +225,7 @@
|
||||
},
|
||||
"photos_count_zero": "没有回忆",
|
||||
"photos_count_one": "1个回忆",
|
||||
"photos_count_other": "{{count, number}} 个回忆",
|
||||
"photos_count": "{{count, number}} 个回忆",
|
||||
"TERMS_AND_CONDITIONS": "我同意 <a>条款</a> 和 <b>隐私政策</b>",
|
||||
"ADD_TO_COLLECTION": "添加到相册",
|
||||
"SELECTED": "已选",
|
||||
@@ -366,12 +366,12 @@
|
||||
"MODIFY_SHARING": "更改共享",
|
||||
"ADD_COLLABORATORS": "添加协作者",
|
||||
"ADD_NEW_EMAIL": "添加新的电子邮件",
|
||||
"shared_with_people_zero": "与特定人员分享",
|
||||
"shared_with_people_one": "已与1个人共享",
|
||||
"shared_with_people_other": "已与 {count, number} 个人共享",
|
||||
"participants_zero": "暂无参与者",
|
||||
"participants_one": "1 名参与者",
|
||||
"participants_other": "{{count, number}} 名参与者",
|
||||
"shared_with_people_count_zero": "与特定人员分享",
|
||||
"shared_with_people_count_one": "已与1个人共享",
|
||||
"shared_with_people_count": "已与 {count, number} 个人共享",
|
||||
"participants_count_zero": "暂无参与者",
|
||||
"participants_count_one": "1 名参与者",
|
||||
"participants_count": "{{count, number}} 名参与者",
|
||||
"ADD_VIEWERS": "添加查看者",
|
||||
"CHANGE_PERMISSIONS_TO_VIEWER": "<p>{{selectedEmail}} 将无法向相册添加更多照片</p> <p>他们仍然可以删除他们添加的照片</p>",
|
||||
"CHANGE_PERMISSIONS_TO_COLLABORATOR": "{{selectedEmail}} 将能够将照片添加到相册",
|
||||
@@ -426,8 +426,8 @@
|
||||
"STOP_DOWNLOADS_HEADER": "要停止下载吗?",
|
||||
"YES_STOP_DOWNLOADS": "是,停止下载",
|
||||
"STOP_ALL_DOWNLOADS_MESSAGE": "您确定要停止所有正在进行的下载?",
|
||||
"albums_one": "1个相册",
|
||||
"albums_other": "{{count, number}} 个相册",
|
||||
"albums_count_one": "1个相册",
|
||||
"albums_count": "{{count, number}} 个相册",
|
||||
"ALL_ALBUMS": "所有相册",
|
||||
"ALBUMS": "相册",
|
||||
"ALL_HIDDEN_ALBUMS": "所有隐藏的相册",
|
||||
|
||||
Reference in New Issue
Block a user