Merge branch 'hotfix/v2.6.1' into develop

This commit is contained in:
Alexey Safronov 2024-08-05 15:35:03 +04:00
commit f47a65777b
35 changed files with 2406 additions and 511 deletions

File diff suppressed because it is too large Load Diff

View File

@ -320,7 +320,9 @@ const CreateUserForm = (props) => {
culture: currentCultureName,
};
signupOAuth(signupAccount)
const confirmKey = linkData.confirmHeader;
signupOAuth(signupAccount, confirmKey)
.then(() => {
const url = roomData.roomId
? `/rooms/shared/${roomData.roomId}/filter?folder=${roomData.roomId}/`

View File

@ -379,6 +379,7 @@ class FilesTableHeader extends React.Component {
columnInfoPanelStorageName,
sortBy,
sortOrder,
isRecentTab,
});
} else {
this.state = {
@ -388,6 +389,7 @@ class FilesTableHeader extends React.Component {
columnInfoPanelStorageName,
sortBy,
sortOrder,
isRecentTab,
};
}
};
@ -447,7 +449,7 @@ class FilesTableHeader extends React.Component {
isTrashFolder !== prevProps.isTrashFolder ||
columnStorageName !== prevProps.columnStorageName ||
columnInfoPanelStorageName !== prevProps.columnInfoPanelStorageName ||
isRecentTab !== prevProps.isRecentTab ||
isRecentTab !== this.state.isRecentTab ||
showStorageInfo !== prevProps.showStorageInfo ||
sortBy !== this.state.sortBy ||
sortOrder !== this.state.sortOrder

View File

@ -346,12 +346,16 @@ export function linkOAuth(serializedProfile) {
});
}
export function signupOAuth(signupAccount) {
return request({
export function signupOAuth(signupAccount, confirmKey = null) {
const options = {
method: "post",
url: "people/thirdparty/signup",
data: signupAccount,
});
};
if (confirmKey) options.headers = { confirm: confirmKey };
return request(options);
}
export function unlinkOAuth(provider) {

View File

@ -54,10 +54,7 @@
"CommonFiles": "الملفات المشتركة",
"CompanyName": "اسم الشركة",
"Confirmation": "تأكيد",
"ConflictResolveDescription": "الملف الذي يحمل الاسم <1>{{file}}</1> موجود بالفعل في المجلد <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} المستندات التي تحمل الاسم نفسه موجودة بالفعل في المجلد <1> {{folder}} </1>.",
"ConflictResolveSelectAction": "الرجاء تحديد الإجراء:",
"ConflictResolveTitle": "تأكيد الكتابة",
"Connect": "ربط",
"Content": "المحتوى",
"Context": "السياق",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Ümumi fayllar",
"CompanyName": "Şirkət adı",
"Confirmation": "Təsdiqləmə",
"ConflictResolveDescription": "<1>{{file}}</1> adlı fayl artıq <1>{{folder}}</1> qovluğunda mövcuddur. ",
"ConflictResolveDescriptionFiles": "{{filesCount}} sənəd sayı artıq <1>{{folder}}</1> qovluğunda mövcuddur.",
"ConflictResolveSelectAction": "Xahiş edirik əməliyyatı seçin:",
"ConflictResolveTitle": "Üzərinə yazmanın təsdiqlənməsi",
"Connect": "Qoşulmaq",
"Content": "Kontent",
"Context": "Kontekst",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Общи файлове",
"CompanyName": "Име на фирмата",
"Confirmation": "Потвърждение",
"ConflictResolveDescription": "Файл с име <1>{{file}}</1> вече съществува в папка <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} документа с едно и също име вече съществуват в папката <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Моля, изберете действие:",
"ConflictResolveTitle": "Потвърждение за презаписване",
"Connect": "Свържи",
"Content": "Съдържание",
"Context": "Контекст",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Společné soubory",
"CompanyName": "Název společnosti",
"Confirmation": "Potvrzení",
"ConflictResolveDescription": "Soubor s názvem <1>{{file}}</1> již existuje ve složce <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "Ve složce <1>{{folder}}</1> již existuje {{filesCount}} dokumentů se stejným názvem.",
"ConflictResolveSelectAction": "Prosím, vyberte akci:",
"ConflictResolveTitle": "Potvrzení o přepsání",
"Connect": "Připojit",
"Content": "Obsah",
"Context": "Kontext",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Gemeinsame Dateien",
"CompanyName": "Name des Unternehmens",
"Confirmation": "Bestätigung",
"ConflictResolveDescription": "Die Datei <1>{{file}}</1> existiert bereits im Ordner <1>{{folder}}</1>",
"ConflictResolveDescriptionFiles": "im Ordner <1>{{folder}}</1> sind bereits {{filesCount}} Dokumente mit dem gleichen Namen vorhanden.",
"ConflictResolveSelectAction": "Bitte wählen Sie die Aktion aus:",
"ConflictResolveTitle": "Bestätigung überschreiben",
"Connect": "Verbinden",
"Content": "Inhalt",
"Context": "Kontext",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Κοινά αρχε",
"CompanyName": "Όνομα εταιρείας",
"Confirmation": "Επιβεβαίωση",
"ConflictResolveDescription": "Το αρχείο με το όνομα <1>{{file}}</1> υπάρχει ήδη στον φάκελο <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} έγγραφα με το ίδιο όνομα υπάρχουν ήδη στον φάκελο <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Επιλέξτε την ενέργεια",
"ConflictResolveTitle": "Επιβεβαίωση αντικατάστασης",
"Connect": "Σύνδεση",
"Content": "Περιεχόμενο",
"Context": "Συμφραζόμενα",

View File

@ -5,6 +5,7 @@
"AccessRights": "Access rights",
"Accounts": "Accounts",
"Action": "Action",
"ActionRequired": "Action required",
"Actions": "Actions",
"Activate": "Activate",
"Active": "Active",
@ -54,22 +55,15 @@
"CommonFiles": "Common files",
"CompanyName": "Company name",
"Confirmation": "Confirmation",
"ConflictResolveDescription": "The file with the name <1>{{file}}</1> already exists in the folder <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} documents with the same name already exist in the folder <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Please select the action:",
"ConflictResolveTitle": "Overwrite confirmation",
"ActionRequired": "Action required",
"FileActionRequired": "The destination already contains a file named «<1>{{fileName}}</1>».",
"FolderActionRequired": "The destination already contains a folder named «<1>{{folderName}}</1>».",
"FilesAlreadyContains": "The destination already contains files with the same name.",
"FoldersAlreadyContains": "The destination already contains folders with the same name.",
"FilesAndFoldersAlreadyContains": "The destination already contains files and folders with the same name.",
"Connect": "Connect",
"Content": "Content",
"Context": "Context",
"ContinueButton": "Continue",
"ContinueWith": "Continue with",
"Copy": "Copy",
"CopyAndKeepAll": "Copy and keep all",
"CopyAndKeepBothFolders": "Copy and keep both folders",
"CopyHere": "Copy here",
"CopyOperation": "Copying",
"CopyPublicLink": "Copy public link",
@ -78,11 +72,8 @@
"CreateAndCopy": "Create and copy",
"CreateCopy": "Create copy",
"CreateDescription": "There will be two different files in the folder.",
"CreateFolderDescription": "There will be two different folders in the destination",
"FoldersAndFilesWillBeCopied": "Folders and files will be copied in the destination",
"CreateFileCopy": "Create file copy",
"CopyAndKeepBothFolders": "Copy and keep both folders",
"CopyAndKeepAll": "Copy and keep all",
"CreateFolderDescription": "There will be two different folders in the destination",
"CreateFormFillingRoom": "Create Form filling room",
"CreateMasterFormFromFile": "Create Form Template from file",
"CreatePDFForm": "Create PDF Form",
@ -171,6 +162,7 @@
"EncryptionFilePreparing": "Preparing file for encryption",
"EncryptionKeysReload": "Encryption keys must be re-entered",
"EnterName": "Enter name",
"EnterPasswordDescription": "File <1>«{{fileName}}»</1> is located in the password-protected room. Please enter a password for the room",
"Error": "Error",
"Error401Text": "Sorry, the resource is not currently accessible.",
"Error403Text": "Sorry, access denied.",
@ -194,12 +186,19 @@
"Example": "Example: {{example}}",
"ExpiredLink": "Expired link",
"FeedbackAndSupport": "Feedback & Support",
"FileActionRequired": "The destination already contains a file named «<1>{{fileName}}</1>».",
"FilesAlreadyContains": "The destination already contains files with the same name.",
"FilesAndFoldersAlreadyContains": "The destination already contains files and folders with the same name.",
"FilesAndFolderWillNotBeCopied": "Files and folder will not be copied",
"FillFormButton": "Fill",
"FillingFormRooms": "Filling form",
"FillingFormsRoomDescription": "Build, share and fill document templates or work with the ready presets to quickly create documents of any type.",
"FillingFormsRoomTitle": "Filling forms room",
"Finish": "Finish",
"FirstName": "First name",
"FolderActionRequired": "The destination already contains a folder named «<1>{{folderName}}</1>».",
"FoldersAlreadyContains": "The destination already contains folders with the same name.",
"FoldersAndFilesWillBeCopied": "Folders and files will be copied in the destination",
"FormFilingRoomDescription": "Upload PDF forms into the room. Invite users to fill out a PDF form. Review completed forms and analyze data automatically collected in a spreadsheet.",
"FormFilingRoomTitle": "Form Filling Room",
"FormRoom": "Form room",
@ -275,6 +274,9 @@
"MeLabel": "Me",
"Member": "Member",
"Members": "Members",
"MergeAndOverwrite": "Merge and overwrite",
"MergeFolders": "Merge folders",
"MergeFoldersDescription": "Two folders will be merged into one with all the contents",
"MobileAndroid": "Get {{organizationName}} Documents on Google Play",
"MobileIos": "Download {{organizationName}} Documents on the App Store",
"MobileLinux": "Download {{organizationName}} Desktop Editors for Linux",
@ -285,11 +287,10 @@
"MoveTo": "Move to",
"MoveToFolderMessage": "You can't move the folder to its subfolder",
"MoveToOperation": "Moving",
"MultiplyOverwrite": "Several folders will be merged into one, files will be overwritten with the version update",
"MyDocuments": "My documents",
"Name": "Name",
"NeedPassword": "You need a password to access the room",
"EnterPasswordDescription": "File <1>«{{fileName}}»</1> is located in the password-protected room. Please enter a password for the room",
"PasswordRequired": "Password required",
"NewDocument": "New document",
"NewFolder": "New folder",
"NewMasterForm": "New form template",
@ -333,10 +334,6 @@
"OtherOperations": "Other operations",
"OverwriteDescription": "The new file will replace the existing one as a new version.",
"OverwriteTitle": "Overwrite with version update",
"MergeFolders": "Merge folders",
"MergeFoldersDescription": "Two folders will be merged into one with all the contents",
"MergeAndOverwrite": "Merge and overwrite",
"MultiplyOverwrite": "Several folders will be merged into one, files will be overwritten with the version update",
"Owner": "Owner",
"PageOfTotalPage": "{{page}} of {{totalPage}}",
"Paid": "Paid",
@ -346,6 +343,7 @@
"PasswordLimitSpecialSymbols": "special characters",
"PasswordLimitUpperCase": "capital letters",
"PasswordMinimumLength": "Minimum length",
"PasswordRequired": "Password required",
"PaymentsTitle": "Payments",
"People": "People",
"PerUserMonth": "<1>{{currencySymbol}}</1><1>{{price}}</1> per admin/power user/month",
@ -469,7 +467,6 @@
"SizeImageLarge": "The image size is too large, please select another image.",
"SkipDescription": "No file will be copied. The original file will be retained in the destination folder.",
"SkipFolderDescription": "No folder will be copied",
"FilesAndFolderWillNotBeCopied": "Files and folder will not be copied",
"SkipTitle": "Skip",
"SomethingWentWrong": "Something went wrong.",
"SortBy": "Sort by",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Archivos comunes",
"CompanyName": "Nombre de empresa",
"Confirmation": "Confirmación",
"ConflictResolveDescription": "El archivo con el nombre <1>{{file}}</1> ya existe en la carpeta <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} documentos con el mismo nombre ya existen en la carpeta <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Por favor, seleccione la acción:",
"ConflictResolveTitle": "Confirmación de sobrescritura",
"Connect": "Conectar",
"Content": "Contenido",
"Context": "Contexto",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Yleiset kansiot",
"CompanyName": "Yrityksen nimi",
"Confirmation": "Vahvistus",
"ConflictResolveDescription": "Tiedosto, jonka nimi on <1>{{file}}</1>, on jo kansiossa <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} samannimistä asiakirjaa on jo olemassa kansiossa <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Valitse toiminto:",
"ConflictResolveTitle": "Korvaamisen vahvistus",
"Connect": "Yhdistä",
"Content": "Sisältö",
"Context": "Konteksti",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Fichiers communs",
"CompanyName": "Nom de l'entreprise",
"Confirmation": "Confirmation",
"ConflictResolveDescription": "Le fichier portant le nom <1>{{file}}</1> existe déjà dans le dossier <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} les documents portant le même nom existent déjà dans le dossier <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Veuillez sélectionner une action :",
"ConflictResolveTitle": "Confirmation de l'écrasement",
"Connect": "Connexion",
"Content": "Contenu",
"Context": "Contexte",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Ընդհանուր ֆայլեր",
"CompanyName": "Ընկերության անվանում",
"Confirmation": "Հաստատում",
"ConflictResolveDescription": "Այց անունով ֆայլը՝ <1>{{file}}</1> արդեն առկա է պանակում <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} նույն անունով փաստաթղթեր արդեն կան պանակում <1>{{folder}}</1>:",
"ConflictResolveSelectAction": "Խնդրում ենք ընտրել գործողությունը:",
"ConflictResolveTitle": "Վերագրել հաստատումը",
"Connect": "Կապակցվել",
"Content": "Բովանդակություն",
"Context": "Համատեքստ",

View File

@ -54,10 +54,7 @@
"CommonFiles": "File comuni",
"CompanyName": "Nome azienda",
"Confirmation": "Conferma",
"ConflictResolveDescription": "Il file con il nome <1>{{file}}</1> già esiste nella cartella <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} documenti con lo stesso nome esistono già nella cartella <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Ti preghiamo di selezionare l'azione:",
"ConflictResolveTitle": "Confermare sovrascrittura",
"Connect": "Collega",
"Content": "Contenuto",
"Context": "Contesto",

View File

@ -54,10 +54,7 @@
"CommonFiles": "共通のファイル",
"CompanyName": "企業名",
"Confirmation": "確認事項",
"ConflictResolveDescription": "フォルダ<1>{{folder}}</1>内に<1>{{file}}</1>という名前のファイルがすでに存在しています。",
"ConflictResolveDescriptionFiles": "{{filesCount}}フォルダ<1>{{folder}}</1>に同名のドキュメントがすでに存在しています。",
"ConflictResolveSelectAction": "アクションをお選びください:",
"ConflictResolveTitle": "上書き確認",
"Connect": "接続",
"Content": "コンテンツ",
"Context": "コンテキスト",

View File

@ -54,10 +54,7 @@
"CommonFiles": "공통 파일",
"CompanyName": "회사 이름",
"Confirmation": "확인",
"ConflictResolveDescription": "<1>{{file}}</1> 이름의 파일이 <1>{{folder}}</1> 폴더에 이미 존재합니다.",
"ConflictResolveDescriptionFiles": "같은 이름의 문서 {{filesCount}}개가 <1>{{folder}}</1> 폴더에 이미 존재합니다.",
"ConflictResolveSelectAction": "작업 선택:",
"ConflictResolveTitle": "덮어쓰기",
"Connect": "연결",
"Content": "콘텐츠",
"Context": "문맥",

View File

@ -51,10 +51,7 @@
"CommonFiles": "ໄຟລ໌ທົ່ວໄປ",
"CompanyName": "ຊື່ບໍລິສັດ",
"Confirmation": "ການຢັ້ງຢືນຕົວຕົນ",
"ConflictResolveDescription": "ຊື່ໄຟລ໌ <1>{{file}}</1> ມີຢູ່ໃນໂຟນເດີ <1>{{folder}}</1> ແລ້ວ.",
"ConflictResolveDescriptionFiles": "{{filesCount}} ມີເອກະສານຊື່ດ່ຽວກັນໃນໂໄນເດີ້ແລ້ວ <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "ກະລຸນາເລືອກການດຳເນີນການ",
"ConflictResolveTitle": "ຢືນຢັນການທັບ",
"Connect": "ຕິດຕໍ່",
"Content": "ເນື້ອຫາ",
"Context": "ສະພາບການ",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Kopīgi faili",
"CompanyName": "Uzņēmuma nosaukums",
"Confirmation": "Apstiprinājums",
"ConflictResolveDescription": "Fails ar nosaukumu <1>{{file}}</1> jau pastāv mapē <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} dokumenti ar tādu pašu nosaukumu jau pastāv mapē <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Lūdzu, atlasiet darbību:",
"ConflictResolveTitle": "Pārrakstiet apstiprinājumu",
"Connect": "Savienot",
"Content": "Saturs",
"Context": "Konteksts",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Algemene bestanden",
"CompanyName": "Bedrijfsnaam",
"Confirmation": "Bevestiging",
"ConflictResolveDescription": "Het bestand met de naam <1>{{file}}</1> bestaat al in de map <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} documenten met dezelfde naam al bestaan in de map <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Kies de actie:",
"ConflictResolveTitle": "Overschrijf bevestiging",
"Connect": "Verbinden",
"Content": "Inhoud",
"Context": "Context",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Wspólne pliki",
"CompanyName": "Nama Perusahaan",
"Confirmation": "Potwierdzenie",
"ConflictResolveDescription": "Plik o nazwie <1>{{file}}</1> istnieje już w folderze <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} dokument(y/ów) o tej samej nazwie istnieje(-ją) już w folderze <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Wybierz działanie:",
"ConflictResolveTitle": "Potwierdź zastąpienie",
"Connect": "Podłącz",
"Content": "Treść",
"Context": "Kontekst",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Arquivos comuns",
"CompanyName": "Nome da empresa",
"Confirmation": "Confirmação",
"ConflictResolveDescription": "O arquivo com o nome <1>{{file}}</1> já existe na pasta <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} Os documentos com o mesmo nome já existem na pasta <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Selecione a ação:",
"ConflictResolveTitle": "Confirmação de substituição",
"Connect": "Conectar",
"Content": "Conteúdo",
"Context": "Contexto",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Arquivos comuns",
"CompanyName": "Nome da empresa",
"Confirmation": "Confirmação",
"ConflictResolveDescription": "O ficheiro com o nome <1>{{file}}</1> já existe na pasta <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} documentos com o mesmo nome já existem na pasta <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Selecione a ação:",
"ConflictResolveTitle": "Confirmação de substituição",
"Connect": "Ligar",
"Content": "Conteúdo",
"Context": "Contexto",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Fișiere comune",
"CompanyName": "Numele companiei",
"Confirmation": "Confirmare",
"ConflictResolveDescription": "Fișierul cu numele <1>{{file}}</1> există deja în dosarul <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} fișiere cu același nume exista deja în folderul<1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Selectați acțiune:",
"ConflictResolveTitle": "Confirmarea suprascrierii",
"Connect": "Adaugă cont",
"Content": "Conținut",
"Context": "Context",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Общие файлы",
"CompanyName": "Название компании",
"Confirmation": "Подтверждение",
"ConflictResolveDescription": "Файл с именем <1>{{file}}</1> уже существует в папке <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} документов с одинаковыми именами уже существуют в папке <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Пожалуйста, выберите действие:",
"ConflictResolveTitle": "Подтверждение перезаписи",
"Connect": "Подключить",
"Content": "Контент",
"Context": "Контекст",

View File

@ -51,10 +51,7 @@
"CommonFiles": "සාමාන්‍ය ගොනු",
"CompanyName": "සමාගමේ නම",
"Confirmation": "තහවුරු කිරීම",
"ConflictResolveDescription": "<1>{{file}}</1> නම සහිත ගොනුවක් දැනටමත් <1>{{folder}}</1> බහාලුමේ පවතී.",
"ConflictResolveDescriptionFiles": "සමාන නම සහිත ලේඛන {{filesCount}} ක් දැනටමත් <1>{{folder}}</1> බහාලුමේ පවතී.",
"ConflictResolveSelectAction": "ක්‍රියාමාර්ගය තෝරන්න:",
"ConflictResolveTitle": "උඩින් ලිවීම තහවුරුව",
"Connect": "සබඳින්න",
"Content": "අන්තර්ගතය",
"Context": "සන්දර්භය",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Spoločné súbory",
"CompanyName": "Meno spoločnosti",
"Confirmation": "Potvrdenie",
"ConflictResolveDescription": "Súbor s názvom <1>{{file}}</1> už v priečinku <1>{{folder}}</1> existuje.",
"ConflictResolveDescriptionFiles": "Dokumenty {{filesCount}} s rovnakými názvami už v priečinku <1>{{folder}}</1> existujú.",
"ConflictResolveSelectAction": "Vyberte akciu:",
"ConflictResolveTitle": "Potvrdenie prepísania",
"Connect": "Pripojiť",
"Content": "Obsah",
"Context": "Kontext",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Skupne datoteke",
"CompanyName": "Ime podjetja",
"Confirmation": "Potrditev",
"ConflictResolveDescription": "Datoteka z imenom <1>{{file}}</1> že obstaja v mapi <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} dokumentov z enakim imenom že obstaja v mapi <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Prosim, izberite akcijo:",
"ConflictResolveTitle": "Prepišite potrditev",
"Connect": "Poveži",
"Content": "Vsebina",
"Context": "Kontekst",

View File

@ -51,10 +51,7 @@
"CommonFiles": "Заједничке датотеке",
"CompanyName": "Име компаније",
"Confirmation": "Конфирмација",
"ConflictResolveDescription": "Датотека са именом <1>{{file}}</1> вец́ постоји у фолдеру <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} докумената са истим именом вец́ постоје у фолдеру <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Изаберите радњу:",
"ConflictResolveTitle": "Потврда поновног уписивања",
"Connect": "Повежи",
"Content": "Садржај",
"Context": "Контекст",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Zajedničke datoteke",
"CompanyName": "Ime kompanije",
"Confirmation": "Konfirmacija",
"ConflictResolveDescription": "Datoteka sa imenom <1>{{file}}</1> već postoji u folderu <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "{{filesCount}} dokumenata sa istim imenom već postoje u folderu <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Molim vas odaberite akciju:",
"ConflictResolveTitle": "Potvrda prepisivanja",
"Connect": "Poveži",
"Content": "Sadržaj",
"Context": "Kontekst",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Ortak dosyalar",
"CompanyName": "Şirket ismi",
"Confirmation": "Onay",
"ConflictResolveDescription": "<1>{{file}}</1> isimli dosya <1>{{folder}}</1> klasöründe zaten mevcut.",
"ConflictResolveDescriptionFiles": "{{filesCount}} belgeleri, <1>{{folder}}</1> klasöründe aynı isimle zaten mevcut.",
"ConflictResolveSelectAction": "Lütfen işlemi seçin:",
"ConflictResolveTitle": "Üstüne yazma onayı",
"Connect": "Bağlan",
"Content": "İçerik",
"Context": "Bağlam",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Загальні файли",
"CompanyName": "Назва компанії",
"Confirmation": "Підтвердження",
"ConflictResolveDescription": "Файл із іменем <1>{{file}}</1> уже існує в папці <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": "Документи ({{filesCount}}) з таким ім'ям вже існують у папці <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Оберіть дію:",
"ConflictResolveTitle": "Підтвердження перезапису",
"Connect": "Підключити",
"Content": "Зміст",
"Context": "Контекст",

View File

@ -54,10 +54,7 @@
"CommonFiles": "Các tập tin chung",
"CompanyName": "Tên công ty",
"Confirmation": "Xác nhận",
"ConflictResolveDescription": " Tệp có tên <1>{{file}}</1> đã tồn tại trong thư mục <1>{{folder}}</1>.",
"ConflictResolveDescriptionFiles": " {{filesCount}} tài liệu có cùng tên đã tồn tại trong thư mục <1>{{folder}}</1>.",
"ConflictResolveSelectAction": "Vui lòng chọn hành động:",
"ConflictResolveTitle": "Xác nhận ghi đè",
"Connect": "Kết nối",
"Content": "Nội dung",
"Context": "Bối cảnh",

View File

@ -54,10 +54,7 @@
"CommonFiles": "公共文件",
"CompanyName": "企业名称",
"Confirmation": "确认",
"ConflictResolveDescription": "<1>{{folder}}</1>文件夹中已有名称为<1>{{file}}</1>的文件。",
"ConflictResolveDescriptionFiles": "<1>{{folder}}</1>文件夹中已有{{filesCount}}个名称相同的文档。",
"ConflictResolveSelectAction": "请选择操作:",
"ConflictResolveTitle": "覆盖确认",
"Connect": "连接",
"Content": "内容",
"Context": "上下文",