🔀 Merge remote-tracking branch 'origin/main' into 525-515-548-523-onlyoffice-rework
This commit is contained in:
@@ -137,21 +137,19 @@ export default class StorageService extends TdriveService<StorageAPI> implements
|
||||
try {
|
||||
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
||||
const self = this;
|
||||
|
||||
const chunks = options?.totalChunks || 1;
|
||||
let count = 1;
|
||||
|
||||
//check that the file a really exists
|
||||
// Check if the first chunk or file exists
|
||||
await self._read(options?.totalChunks ? `${path}/chunk${count}` : path);
|
||||
|
||||
let stream: any;
|
||||
async function factory(callback: (err?: Error, stream?: Stream) => unknown) {
|
||||
if (count > chunks) {
|
||||
callback();
|
||||
return;
|
||||
}
|
||||
|
||||
let decipher: Decipher;
|
||||
let decipher: Decipher | undefined;
|
||||
if (options?.encryptionKey) {
|
||||
const [key, iv] = options.encryptionKey.split(".");
|
||||
decipher = createDecipheriv(options.encryptionAlgo || this.algorithm, key, iv);
|
||||
@@ -161,17 +159,15 @@ export default class StorageService extends TdriveService<StorageAPI> implements
|
||||
count += 1;
|
||||
|
||||
try {
|
||||
stream = await self._read(chunk);
|
||||
let stream = await self._read(chunk); // Read the chunk
|
||||
if (decipher) {
|
||||
stream = stream.pipe(decipher);
|
||||
stream = stream.pipe(decipher); // Apply decipher if necessary
|
||||
}
|
||||
callback(null, stream);
|
||||
callback(null, stream); // Return the stream only once
|
||||
} catch (err) {
|
||||
logger.error(err);
|
||||
callback(err, null);
|
||||
}
|
||||
callback(null, stream);
|
||||
return;
|
||||
}
|
||||
|
||||
return new Multistream(factory);
|
||||
|
||||
@@ -1,362 +1,370 @@
|
||||
{
|
||||
"general.cancel": "Cancel",
|
||||
"general.continue": "Continue",
|
||||
"general.back": "Back",
|
||||
"general.help": "Help",
|
||||
"general.send": "Send message",
|
||||
"general.update": "Update",
|
||||
"general.remove": "Remove",
|
||||
"general.add": "Add",
|
||||
"general.connexion_status.disconnected": "You are offline",
|
||||
"general.connexion_status.connected": "You are online",
|
||||
"general.connexion_status.connecting": "Reconnecting…",
|
||||
"'": "'",
|
||||
"ONLYOFFICE Excel Document": "Create a Spreadsheet",
|
||||
"ONLYOFFICE PowerPoint Document": "Create a Presentation",
|
||||
"ONLYOFFICE Word Document": "Create a Document",
|
||||
"\"": "\"",
|
||||
"app.name.tdrive_calendar": "Calendar",
|
||||
"app.name.tdrive_drive": "Documents",
|
||||
"app.name.tdrive_tasks": "Tasks",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_add": "Successfully added {{$1}} in your company",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Successfully deleted {{$1}} from your company",
|
||||
"application.load.longer": "Server takes longer than expected to reply, please wait or reload the page...",
|
||||
"scenes.app.workspaces.create_company.group_data": "Configure your new group",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type": "Group type",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.company": "Company or company department",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.public_organization": "Public organization",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.university_school": "University or school",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.society_club_charity": "Society, club or charity",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.other_group": "Other",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size": "Group size",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.less_3": "Less than 4 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.4_10": "4 - 10 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.10_50": "11 - 49 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.50_100": "50 - 99 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.100_500": "100 - 499 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.500_1000": "500 - 999 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.1000_5000": "1000 - 4999 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.5000_more": "More than 5000 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity": "Main activity",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.food": "Food",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.bank": "Bank / Insurance",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.printing_paper": "Printing / Paper",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.construction_building": "Construction / Building materials",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.real_estate": "Real estate",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.materials": "Materials",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.chemistry": "Chemistry",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.trade_commerce_distribution": "Trade / Commerce / Distribution",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.publishing_communication_multimedia": "Publishing / Communication / Multimedia",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.electronics_electricity_energy": "Electronics / Electricity / Energy",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.studies_and_advice": "Studies and advice",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.pharmaceutical_industry": "Pharmaceutical industry",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.it_telecom": "IT / Telecom",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.machinery_automotive": "Machinery / Automotive",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.business_services": "Business services",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.entertainment": "Entertainment",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.textile_clothing_shoes": "Textile / Clothing / Shoes",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.transport_logistics": "Transport / Logistics",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.research": "Research",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.education": "Education",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.administration": "Administration",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.other": "Other",
|
||||
"common.access-level_full_access": "Full access",
|
||||
"common.access-level_no_access": "No access",
|
||||
"common.access-level_read": "Read",
|
||||
"common.access-level_remove": "Remove",
|
||||
"common.access-level_write": "Write",
|
||||
"compenents.ConfirmTrashModalContent_items_to_trash": "items to trash",
|
||||
"compenents.ConfirmTrashModalContent_move": "Move",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash": "Move to trash",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash_desc": "Click 'Move to trash' to move the selected items to the trash folder. You can restore them later from the trash.",
|
||||
"compenents.ConfirmTrashModalContent_to_trash": "to trash",
|
||||
"compenents.VersionModalContent_create": "Create version",
|
||||
"compenents.VersionModalContent_donwload": "Download",
|
||||
"compenents.VersionModalContent_version": "Versions of",
|
||||
"compenents.VersionModalContent_version_dec": "Manage your document version here: Download older version of this document or upload a new version now.",
|
||||
"components.SelectorModalContent_files": "files(s)",
|
||||
"components.SelectorModalContent_move_to": "Move to",
|
||||
"components.SelectorModalContent_no_items": "No item selected",
|
||||
"components.SelectorModalContent_select": "Selected",
|
||||
"components.add_mails_workspace.text_area_placeholder": "Enter emails of your users*",
|
||||
"components.alert.confirm": "Confirm your action",
|
||||
"components.alert.confirm_click": "Confirm your action by clicking on OK.",
|
||||
"components.create_folder_modal.hint": "Choose a name for the new folder.",
|
||||
"components.create_folder_modal.placeholder": "Folder name",
|
||||
"components.create_link_modal.button": "Create link",
|
||||
"components.create_link_modal.hint": "Link name",
|
||||
"components.create_modal.create_folder": "Create a folder",
|
||||
"components.create_modal.create_folder_or_doc": "Create document or folder",
|
||||
"components.create_modal.create_link": "Create a link file",
|
||||
"components.create_modal.upload_files": "Upload files from device",
|
||||
"components.create_modal.upload_folder_or_doc": "Upload document or folder",
|
||||
"components.create_modal.upload_folders": "Upload folders from device",
|
||||
"components.disk_usage.in_trash": "in trash",
|
||||
"components.disk_usage.of": "of",
|
||||
"components.disk_usage.used": "used",
|
||||
"components.dragndrop_info_move_to": "move to",
|
||||
"components.drive_dropzone.uploading": "Uploading...",
|
||||
"components.header_path.my_trash": "My Trash",
|
||||
"components.header_path.shared_trash": "Shared Trash",
|
||||
"components.header_path.shared_with_me": "Shared with me",
|
||||
"components.internal-access_cannal": "Channel access",
|
||||
"components.internal-access_cannal_info": "channel(s) from Tdrive chat have access to this item.",
|
||||
"components.internal-access_cannal_info_give_back": "You will need to go to Tdrive chat to give back access to this item.",
|
||||
"components.internal-access_company_member": "Every member from the company",
|
||||
"components.internal-access_inherit_parent": "Inherit parent folder",
|
||||
"components.internal-access_inherit_parent_perm": "Choose to inherit or not the parent folder permissions.",
|
||||
"components.internal-access_manage_title": "Manage access to",
|
||||
"components.internal-access_specific_rules": "Specific access rules",
|
||||
"components.internal-access_specific_rules_you": "(you)",
|
||||
"components.internal-manage_root_users": "Shared drive access rules",
|
||||
"components.item_context_menu.add_documents": "Add document or folder",
|
||||
"components.item_context_menu.all": "All",
|
||||
"components.item_context_menu.clear_selection": "Clear selection",
|
||||
"components.item_context_menu.copy_link": "Copy link",
|
||||
"components.item_context_menu.copy_link.success": "Link copied to clipboard",
|
||||
"components.item_context_menu.delete": "Delete",
|
||||
"components.item_context_menu.delete_multiple": "Delete",
|
||||
"components.item_context_menu.download": "Download",
|
||||
"components.item_context_menu.download_folder": "Download folder",
|
||||
"components.item_context_menu.download_multiple": "Download selected items",
|
||||
"components.item_context_menu.last_month": "Last month",
|
||||
"components.item_context_menu.last_week": "Last week",
|
||||
"components.item_context_menu.manage_access": "Manage access",
|
||||
"components.item_context_menu.manage_access_advanced_to": "Manage access to",
|
||||
"components.item_context_menu.manage_access_to": "Share",
|
||||
"components.item_context_menu.manage_users": "Manager users",
|
||||
"components.item_context_menu.move": "Move",
|
||||
"components.item_context_menu.move.modal_header": "Move",
|
||||
"components.item_context_menu.move_multiple": "Move selected items",
|
||||
"components.item_context_menu.move_multiple.modal_header": "Move selected items",
|
||||
"components.item_context_menu.move_to_trash": "Delete",
|
||||
"components.item_context_menu.open_new_window": "Open in new window",
|
||||
"components.item_context_menu.preview": "Preview",
|
||||
"components.item_context_menu.rename": "Rename",
|
||||
"components.item_context_menu.restore": "Restore",
|
||||
"components.item_context_menu.share": "Share",
|
||||
"components.item_context_menu.sorting.by.date": "Date",
|
||||
"components.item_context_menu.sorting.by.name": "Name",
|
||||
"components.item_context_menu.sorting.by.size": "Size",
|
||||
"components.item_context_menu.sorting.order.asc": "Ascending",
|
||||
"components.item_context_menu.sorting.order.desc": "Descending",
|
||||
"components.item_context_menu.sorting.selected.date": "By date",
|
||||
"components.item_context_menu.sorting.selected.name": "By name",
|
||||
"components.item_context_menu.sorting.selected.size": "By size",
|
||||
"components.item_context_menu.to_trash_multiple": "Move selected items to trash",
|
||||
"components.item_context_menu.today": "Today",
|
||||
"components.item_context_menu.trash.empty": "Empty trash",
|
||||
"components.item_context_menu.versions": "Versions",
|
||||
"components.locked_features.locked_drive_popup.subtitle": "In the free version, you can store only 6GB.",
|
||||
"components.locked_features.locked_drive_popup.title": "You have just reached the drive limit",
|
||||
"components.locked_features.locked_guests_popup.description": "Whoops!! Seems like you want to invite external users to your workspace. You might want to consider upgrading your plan if you want to collaborate with guests and external partners. Explore our pricing options and select the best option for your team collaboration needs.",
|
||||
"components.locked_features.locked_guests_popup.learn_more_button": "Learn more",
|
||||
"components.locked_features.locked_guests_popup.or": "Or",
|
||||
"components.locked_features.locked_guests_popup.skip_for_now_button": "Skip for Now",
|
||||
"components.locked_features.locked_guests_popup.subtitle": "This feature is not available in the Tdrive free version",
|
||||
"components.locked_features.locked_guests_popup.title": "Guests feature is locked",
|
||||
"components.locked_features.locked_only_office_popup.subtitle": "In the free version, you can not use onlyoffice.",
|
||||
"components.locked_features.locked_only_office_popup.text": "Whoops!! Seems like you want to edit the file from Tdrive. You might want to consider upgrading your plan if you want to collaborate around office files. Explore our pricing options and select the best option for your team collaboration needs.",
|
||||
"components.locked_features.locked_only_office_popup.title": "You can not edit this file",
|
||||
"components.locked_features_components.locked_invite_alert.message_link": "upgrade your company",
|
||||
"components.locked_features_components.locked_invite_alert.message_magic_link": " contact the owner or administrator of your company.",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_1": "Your company has reached its maximum limit of {{$1}} members. Please ",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_2": " to invite more members.",
|
||||
"components.member.user_parts.and_more_user_text": " and {{$1}} more users",
|
||||
"components.newversion.new_version_component.link": "Click here to reload",
|
||||
"components.newversion.new_version_component.row.part_1": "You are running an outdated Tdrive version",
|
||||
"components.newversion.new_version_component.row.part_2": "we suggest you to reload the app and enjoy our new features!",
|
||||
"components.newversion.new_version_modal.title": "New update available !",
|
||||
"components.notifications.hidden_notifications_button.children": "New messages",
|
||||
"components.open_desktop_popup.open_here_link": "Open in web instead",
|
||||
"components.open_desktop_popup.subtitle": "Opened in Tdrive app",
|
||||
"components.pending_file_list.estimation.approximations": "Waiting for time approximations...",
|
||||
"components.pending_file_list.estimation.end": "Will end",
|
||||
"components.PropertiesModalContent_name": "Name",
|
||||
"components.PropertiesModalContent_place_holder": "Document or folder name",
|
||||
"components.PropertiesModalContent_rename": "Rename",
|
||||
"components.PropertiesModalContent_update_button": "Update name",
|
||||
"components.public-link-access-level-create": "Anyone with the link will have access to",
|
||||
"components.public-link-access-level-delete": "Delete link",
|
||||
"components.public-link-access-level-update-subtitle": "Anyone with the link has access to",
|
||||
"components.public-link-acess.info_acess_expired": "Expired",
|
||||
"components.public-link-acess.public-link-placeholder": "https://tdrive.com/your-simple-link",
|
||||
"components.public-link-acess.public_link_access": "Share via link",
|
||||
"components.public-link-copied-info": "Copied",
|
||||
"components.public-link-copy": "Copy link",
|
||||
"components.public-link-get": "Create link",
|
||||
"components.public-link-security": "Link security settings",
|
||||
"components.public-link-security-change": "Change",
|
||||
"components.public-link-security-change-subtitle": "Set password, expiration date, etc.",
|
||||
"components.public-link-security-title": "Share with link",
|
||||
"components.public-link-security_expiration_removal_but_password": "Warning: about to remove the expiry on the public link making available to anyone with the password",
|
||||
"components.public-link-security_expiration_removal_confirm": "Remove expiration",
|
||||
"components.public-link-security_expiration_removal_no_password": "Warning: about to remove the expiry on the public link making available to anyone knowing it",
|
||||
"components.public-link-security_expiration_removal_title": "About to remove expiry date of an expired link",
|
||||
"components.public-link-security_expiration_title": "Link expiration",
|
||||
"components.public-link-security_expired": "Expired",
|
||||
"components.public-link-security_field_confirm_edit": "Done",
|
||||
"components.public-link-security_password": "Password",
|
||||
"components.public-link-security_password_copied": "Password copied to clipboard",
|
||||
"components.public-link-security_password_removal_body": "Warning: about to remove the password on the public link making available to anyone knowing it",
|
||||
"components.public-link-security_password_removal_confirm": "Remove password",
|
||||
"components.public-link-security_password_removal_title": "About to remove password",
|
||||
"components.searchpopup.header_title": "Search",
|
||||
"components.searchpopup.no_results_for": "There were no results for",
|
||||
"components.searchpopup.recent_files": "Recent files",
|
||||
"components.searchpopup.start_search": "Enter few keywords to start the search.",
|
||||
"components.searchpopup.try_new_search": "Try a new search",
|
||||
"components.select-users_search_users": "Search users",
|
||||
"components.side_menu.buttons.create": "Create",
|
||||
"components.side_menu.buttons.empty_trash": "Empty trash",
|
||||
"components.side_menu.buttons.upload": "Upload",
|
||||
"components.side_menu.home": "Shared Drive",
|
||||
"components.side_menu.my_drive": "My Drive",
|
||||
"components.side_menu.shared_with_me": "Shared with me",
|
||||
"components.side_menu.trash": "Trash",
|
||||
"components.upload.drop_files": "Drop your files here",
|
||||
"components.user_picker.modal.result_add.manage": "Grant full",
|
||||
"components.user_picker.modal.result_add.none": "No rights",
|
||||
"components.user_picker.modal.result_add.read": "Grant read",
|
||||
"components.user_picker.modal.result_add.write": "Grant write",
|
||||
"components.user_picker.modal.result_add.manage": "Grant full",
|
||||
"components.user_picker.modal.result_add.remove": "Remove rights",
|
||||
"components.user_picker.modal.result_add.write": "Grant write",
|
||||
"components.user_picker.modal_results_count_none": "No user found matching \"{{$1}}\"",
|
||||
"components.user_picker.modal_results_truncated": "First {{$1}} results of {{$2}} shown...",
|
||||
"components.userlistmanager.no_users": "No users.",
|
||||
"components.users_picker.add_me": "Add me",
|
||||
"scenes.app.workspaces.create_company.invitations.title": "Configure your workspace.",
|
||||
"general.add": "Add",
|
||||
"general.back": "Back",
|
||||
"general.cancel": "Cancel",
|
||||
"general.connexion_status.connected": "You are online",
|
||||
"general.connexion_status.connecting": "Reconnecting…",
|
||||
"general.connexion_status.disconnected": "You are offline",
|
||||
"general.continue": "Continue",
|
||||
"general.help": "Help",
|
||||
"general.pause": "Pause",
|
||||
"general.paused": "Paused",
|
||||
"general.remove": "Remove",
|
||||
"general.resume": "Resume",
|
||||
"general.send": "Send message",
|
||||
"general.update": "Update",
|
||||
"general.user.anonymous": "Anonymous",
|
||||
"general.user.deactivated": "User is no longer in this company",
|
||||
"general.user.deleted": "Deleted Account",
|
||||
"general.user.role.company.admin": "Company administrator",
|
||||
"general.user.role.company.guest": "Guest",
|
||||
"general.user.role.company.member": "Member",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_message": "You have reached the limit of your storage. Please, delete some files to vacate more space and have access to all features of Twake Drive.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_plans": "Our solution is now free for all users, but additional plans are coming soon.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_title": "You're out of storage",
|
||||
"hooks.use-drive-actions.unable_create_file": "Unable to create a new file.",
|
||||
"hooks.use-drive-actions.unable_download_file": "Unable to download this files.",
|
||||
"hooks.use-drive-actions.unable_load_file": "Unable to load your files.",
|
||||
"hooks.use-drive-actions.unable_remove_file": "Unable to remove this file.",
|
||||
"hooks.use-drive-actions.unable_restore_file": "Unable to restore this item.",
|
||||
"hooks.use-drive-actions.unable_update_file": "Unable to update this file.",
|
||||
"login.create_account": "Create account",
|
||||
"login.login_error": "Error during login",
|
||||
"molecules.download_banner.download_button": "Download desktop app",
|
||||
"molecules.download_banner.title": "Get the most out of Tdrive, download the desktop app now",
|
||||
"scenes.app.channelsbar.currentuser.logout": "Sign out",
|
||||
"scenes.app.channelsbar.currentuser.title": "Account settings",
|
||||
"scenes.app.drive.add_doc": "Add document or folder",
|
||||
"scenes.app.drive.context_menu": "More",
|
||||
"scenes.app.drive.documents": "Documents",
|
||||
"scenes.app.drive.drag_and_drop": "Drag and drop files to upload them or click on the 'Add document' button.",
|
||||
"scenes.app.drive.folders": "Folders",
|
||||
"scenes.app.drive.nothing": "Nothing here.",
|
||||
"scenes.app.drive.used": "used in this folder",
|
||||
"scenes.app.header.disconnected": "You are disconnected",
|
||||
"scenes.app.header.disconnected.reload": "Reload",
|
||||
"scenes.apps.parameters.workspace_sections.members": "Members",
|
||||
"scenes.apps.account.title": "Account parameters",
|
||||
"scenes.apps.account.on_console": "To edit your global account preferences, click on Go to Console.",
|
||||
"scenes.apps.account.account.menu_title": "Account",
|
||||
"scenes.apps.account.languages.menu_title": "Language",
|
||||
"scenes.apps.account.account.username": "Username",
|
||||
"scenes.apps.account.account.change_username": "Change your unique username.",
|
||||
"scenes.apps.account.account.emails": "E-mails",
|
||||
"scenes.apps.account.account.main_email": "Main e-mail",
|
||||
"scenes.apps.account.account.email_add": "Add new e-mail",
|
||||
"scenes.apps.account.account.email_add_modal.invalid_code": "This code is invalid",
|
||||
"scenes.apps.account.account.password": "Password",
|
||||
"scenes.apps.account.account.password_modal.old_password": "Current password",
|
||||
"scenes.apps.account.account.password_modal.password": "New password",
|
||||
"scenes.apps.account.account.password_modal.bad_old_password": "Old password is not correct.",
|
||||
"scenes.apps.account.account.password_modal.bad_password": "Your passwords do not match or they are too short. Please type a password with at least 8 characters.",
|
||||
"scenes.apps.account.languages.text": "Change Tdrive language.",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite": "Invite new user",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_btn": "Add user",
|
||||
"scenes.login.footer.go_to_tdrive": "Go to tdriveapp.com",
|
||||
"scenes.login.footer.branding": "You are on a {{$1}} ({{$2}}) private Tdrive server. ",
|
||||
"scenes.login.create_account.title": "Create a new account",
|
||||
"scenes.login.create_account.email": "E-mail",
|
||||
"scenes.login.create_account.email_used": "This e-mail is already in use.",
|
||||
"scenes.login.create_account.username": "Username",
|
||||
"scenes.login.create_account.username_already_exist": "This username is already in use",
|
||||
"scenes.login.create_account.fill_in_username": "You must fill in your username",
|
||||
"scenes.login.create_account.fill_in_email": "You must fill in your email with a correct email",
|
||||
"scenes.login.create_account.too_short_password": "Your password must contain at least 8 characters.",
|
||||
"scenes.login.home.title": "Sign in to Tdrive",
|
||||
"scenes.login.home.subtitle": "Happy to see you",
|
||||
"scenes.login.home.email": "E-mail",
|
||||
"scenes.login.home.unable_to_connect": "Invalid credentials",
|
||||
"scenes.login.home.password": "Password",
|
||||
"scenes.login.home.login_btn": "Log in",
|
||||
"scenes.login.home.create_account": "Create an account",
|
||||
"scenes.login.create_account.password": "Password",
|
||||
"scenes.login.create_account.step_1_subtitle": "It couldn't be simpler — we just need some information.",
|
||||
"scenes.login.create_account.step_3_mail_sent": "We have sent you an activation link by e-mail.",
|
||||
"scenes.login.create_account.step_3_subtitle": "Last step — we need to verify you're not a robot!",
|
||||
"scenes.app.mainview.create_account": "Create your workspace for free on ",
|
||||
"scenes.app.mainview.quick_search_placeholder": "Quick search",
|
||||
"scenes.app.popup.adduser.adresses_message": "Please separate the addresses with a comma or space. Remember that Tdrive can limit the number of invitations based on your subscription.",
|
||||
"scenes.app.popup.adduser.magiclinks.action_copy": "Copy",
|
||||
"scenes.app.popup.adduser.magiclinks.action_generate": "Generate",
|
||||
"scenes.app.popup.adduser.magiclinks.copied_to_clipboard": "Successfully copied to clipboard",
|
||||
"scenes.app.popup.adduser.magiclinks.genrator_info": "Invitation link to the workspace",
|
||||
"scenes.app.popup.adduser.magiclinks.new_link_generated": "New link generated",
|
||||
"scenes.app.popup.adduserfromtdriveconsole.current_users_state": "{{$1}} email(s) will be added",
|
||||
"scenes.app.popup.sync_calendar": "Synchronize your calendars.",
|
||||
"scenes.app.popup.userparameter.personnal_workspaces_title": "Your workspaces",
|
||||
"scenes.app.popup.workspaceparameter.edit_from_console": "See in Console",
|
||||
"scenes.app.popup.workspaceparameter.pages.alert_impossible_removing": "You can not leave the workspace, because you are the last administrator. You can define a new administrator or delete/archive this workspace.",
|
||||
"scenes.app.shared_with_me.documents": "Documents",
|
||||
"scenes.app.shared_with_me.edit": "Edit",
|
||||
"scenes.app.shared_with_me.file_type": "File type",
|
||||
"scenes.app.shared_with_me.last_modified": "Last modified",
|
||||
"scenes.app.shared_with_me.name": "Name",
|
||||
"scenes.app.shared_with_me.people": "People",
|
||||
"scenes.app.shared_with_me.shared_by": "Shared by",
|
||||
"scenes.app.shared_with_me.shared_date": "Shared date",
|
||||
"scenes.app.shared_with_me.shared_with_me": "Shared with me",
|
||||
"scenes.app.workspaces.components.skip": "Skip",
|
||||
"scenes.app.workspaces.create_company.company_name.placeholder": "Company name",
|
||||
"scenes.app.workspaces.create_company.company_name.title_1": "To begin,",
|
||||
"scenes.app.workspaces.create_company.company_name.title_2": "indicate the name of your company.",
|
||||
"scenes.app.workspaces.create_company.default_workspace_name": "Main",
|
||||
"scenes.app.workspaces.create_company.group_data": "Configure your new group",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity": "Main activity",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.administration": "Administration",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.bank": "Bank / Insurance",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.business_services": "Business services",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.chemistry": "Chemistry",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.construction_building": "Construction / Building materials",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.education": "Education",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.electronics_electricity_energy": "Electronics / Electricity / Energy",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.entertainment": "Entertainment",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.food": "Food",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.it_telecom": "IT / Telecom",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.machinery_automotive": "Machinery / Automotive",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.materials": "Materials",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.other": "Other",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.pharmaceutical_industry": "Pharmaceutical industry",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.printing_paper": "Printing / Paper",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.publishing_communication_multimedia": "Publishing / Communication / Multimedia",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.real_estate": "Real estate",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.research": "Research",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.studies_and_advice": "Studies and advice",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.textile_clothing_shoes": "Textile / Clothing / Shoes",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.trade_commerce_distribution": "Trade / Commerce / Distribution",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.transport_logistics": "Transport / Logistics",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size": "Group size",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.1000_5000": "1000 - 4999 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.100_500": "100 - 499 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.10_50": "11 - 49 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.4_10": "4 - 10 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.5000_more": "More than 5000 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.500_1000": "500 - 999 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.50_100": "50 - 99 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.less_3": "Less than 4 users",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type": "Group type",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.company": "Company or company department",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.other_group": "Other",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.public_organization": "Public organization",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.society_club_charity": "Society, club or charity",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.university_school": "University or school",
|
||||
"scenes.app.workspaces.create_company.group_data.title": "We'll be quick — we just need some statistical information.",
|
||||
"scenes.app.workspaces.create_company.importations.title_1": "Already working with digital tools? Import or integrate your tools now!",
|
||||
"scenes.app.workspaces.create_company.importations.title_2": "No worries, you can do this later!",
|
||||
"scenes.app.workspaces.create_company.invitations.title": "Configure your workspace.",
|
||||
"scenes.app.workspaces.create_company.invitations.title_2": "Add users to your team.",
|
||||
"scenes.app.workspaces.create_company.title": "Create my company",
|
||||
"scenes.app.workspaces.welcome_page.add_secondary_emails": "Add a secondary email",
|
||||
"scenes.app.workspaces.welcome_page.add_new_email": "Add an e-mail",
|
||||
"scenes.app.workspaces.welcome_page.add_secondary_emails": "Add a secondary email",
|
||||
"scenes.app.workspaces.welcome_page.new_email": "Add a secondary e-mail",
|
||||
"scenes.apps.account.account.change_username": "Change your unique username.",
|
||||
"scenes.apps.account.account.description_main": "Your main address is where Tdrive sends your notifications. Your secondary addresses allow you to be automatically invited to the workspaces that use them.",
|
||||
"scenes.apps.account.account.email_add": "Add new e-mail",
|
||||
"scenes.apps.account.account.email_add_modal.confirm": "Confirm this e-mail",
|
||||
"scenes.apps.account.account.email_add_modal.invalid_code": "This code is invalid",
|
||||
"scenes.apps.account.account.emails": "E-mails",
|
||||
"scenes.apps.account.account.emails.description": "Manage your different e-mail addresses.",
|
||||
"scenes.apps.account.account.main_email": "Main e-mail",
|
||||
"scenes.apps.account.account.make_main": "Set main",
|
||||
"scenes.apps.account.account.menu_title": "Account",
|
||||
"scenes.apps.account.account.password": "Password",
|
||||
"scenes.apps.account.account.password.description": "Change your password.",
|
||||
"scenes.apps.account.account.password_modal.bad_old_password": "Old password is not correct.",
|
||||
"scenes.apps.account.account.password_modal.bad_password": "Your passwords do not match or they are too short. Please type a password with at least 8 characters.",
|
||||
"scenes.apps.account.account.password_modal.old_password": "Current password",
|
||||
"scenes.apps.account.account.password_modal.password": "New password",
|
||||
"scenes.apps.account.account.username": "Username",
|
||||
"scenes.apps.account.identity": "Identity",
|
||||
"scenes.apps.account.identity.description": "Change your first name, last name and profile image visible to other Tdrive users.",
|
||||
"scenes.apps.account.languages.menu_title": "Language",
|
||||
"scenes.apps.account.languages.text": "Change Tdrive language.",
|
||||
"scenes.apps.account.on_console": "To edit your global account preferences, click on Go to Console.",
|
||||
"scenes.apps.account.preference": "Preferences",
|
||||
"scenes.apps.account.thumbnail.max_weight": "Maximum size 5 MB",
|
||||
"scenes.apps.account.account.email_add_modal.confirm": "Confirm this e-mail",
|
||||
"app.name.tdrive_calendar": "Calendar",
|
||||
"app.name.tdrive_drive": "Documents",
|
||||
"app.name.tdrive_tasks": "Tasks",
|
||||
"scenes.app.channelsbar.currentuser.title": "Account settings",
|
||||
"scenes.app.channelsbar.currentuser.logout": "Sign out",
|
||||
"scenes.app.popup.adduser.adresses_message": "Please separate the addresses with a comma or space. Remember that Tdrive can limit the number of invitations based on your subscription.",
|
||||
"scenes.app.popup.adduser.magiclinks.genrator_info": "Invitation link to the workspace",
|
||||
"scenes.app.popup.adduser.magiclinks.new_link_generated": "New link generated",
|
||||
"scenes.app.popup.adduser.magiclinks.copied_to_clipboard": "Successfully copied to clipboard",
|
||||
"scenes.app.popup.adduser.magiclinks.action_copy": "Copy",
|
||||
"scenes.app.popup.adduser.magiclinks.action_generate": "Generate",
|
||||
"scenes.app.mainview.quick_search_placeholder": "Quick search",
|
||||
"scenes.app.popup.userparameter.personnal_workspaces_title": "Your workspaces",
|
||||
"scenes.app.popup.workspaceparameter.pages.alert_impossible_removing": "You can not leave the workspace, because you are the last administrator. You can define a new administrator or delete/archive this workspace.",
|
||||
"scenes.apps.account.title": "Account parameters",
|
||||
"scenes.apps.drive.download_button": "Download",
|
||||
"scenes.apps.drive.viewer.edit_with_button": "Edit with {{$1}}",
|
||||
"scenes.apps.drive.viewer.open_with_button": "Open with...",
|
||||
"scenes.apps.messages.message.save_button": "Save",
|
||||
"scenes.apps.parameters.workspace_sections.members": "Members",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite": "Invite new user",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_all": "Invite all",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_btn": "Add user",
|
||||
"scenes.client.main_view.main_header.search_input": "Search documents",
|
||||
"scenes.error_on_tdrive": "“Houston we have a problem“",
|
||||
"scenes.help_us": "However, if you would like to help us fix this error, send us a message below: ",
|
||||
"scenes.no_panic": "Don't panic! Just reload this page to fix Tdrive.",
|
||||
"services.user.notification_parameters_update_alert": "The notification settings have been updated.",
|
||||
"services.user.update_password_alert": "Your password has been updated.",
|
||||
"'": "'",
|
||||
"\"": "\"",
|
||||
"login.create_account": "Create account",
|
||||
"login.login_error": "Error during login",
|
||||
"scenes.app.workspaces.components.skip": "Skip",
|
||||
"scenes.tell_us": "Please tell us what you were doing at:",
|
||||
"scenes.app.popup.sync_calendar": "Synchronize your calendars.",
|
||||
"scenes.app.mainview.create_account": "Create your workspace for free on ",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_all": "Invite all",
|
||||
"components.upload.drop_files": "Drop your files here",
|
||||
"components.searchpopup.header_title": "Search",
|
||||
"components.alert.confirm": "Confirm your action",
|
||||
"components.alert.confirm_click": "Confirm your action by clicking on OK.",
|
||||
"components.searchpopup.start_search": "Enter few keywords to start the search.",
|
||||
"components.searchpopup.no_results_for": "There were no results for",
|
||||
"components.searchpopup.try_new_search": "Try a new search",
|
||||
"components.searchpopup.recent_files": "Recent files",
|
||||
"components.userlistmanager.no_users": "No users.",
|
||||
"components.notifications.hidden_notifications_button.children": "New messages",
|
||||
"scenes.app.popup.adduserfromtdriveconsole.current_users_state": "{{$1}} email(s) will be added",
|
||||
"components.newversion.new_version_component.row.part_1": "You are running an outdated Tdrive version",
|
||||
"components.newversion.new_version_component.row.part_2": "we suggest you to reload the app and enjoy our new features!",
|
||||
"components.newversion.new_version_component.link": "Click here to reload",
|
||||
"components.newversion.new_version_modal.title": "New update available !",
|
||||
"components.add_mails_workspace.text_area_placeholder": "Enter emails of your users*",
|
||||
"services.file_upload_service.toaster.upload_file_error": "Error uploading file: {{$1}}",
|
||||
"services.console_services.toaster.add_emails_error": "Error while adding email(s)",
|
||||
"services.console_services.toaster.add_email_error_message": "Error while adding {{$1}}",
|
||||
"services.console_services.toaster.success_verify_email": "A verification link has been sent to your email account",
|
||||
"scenes.app.popup.workspaceparameter.edit_from_console": "See in Console",
|
||||
"services.console_services.toaster.success_invite_emails": "Successfully added {{$1}} user(s)",
|
||||
"general.user.role.company.admin": "Company administrator",
|
||||
"general.user.role.company.member": "Member",
|
||||
"general.user.role.company.guest": "Guest",
|
||||
"general.user.deleted": "Deleted Account",
|
||||
"general.user.anonymous": "Anonymous",
|
||||
"general.user.deactivated": "User is no longer in this company",
|
||||
"components.locked_features.locked_guests_popup.title": "Guests feature is locked",
|
||||
"components.locked_features.locked_guests_popup.subtitle": "This feature is not available in the Tdrive free version",
|
||||
"components.locked_features.locked_guests_popup.description": "Whoops!! Seems like you want to invite external users to your workspace. You might want to consider upgrading your plan if you want to collaborate with guests and external partners. Explore our pricing options and select the best option for your team collaboration needs.",
|
||||
"components.locked_features.locked_guests_popup.learn_more_button": "Learn more",
|
||||
"components.locked_features.locked_guests_popup.skip_for_now_button": "Skip for Now",
|
||||
"components.locked_features.locked_guests_popup.or": "Or",
|
||||
"scenes.client.main_view.main_header.search_input": "Search documents",
|
||||
"components.member.user_parts.and_more_user_text": " and {{$1}} more users",
|
||||
"components.locked_features.locked_only_office_popup.title": "You can not edit this file",
|
||||
"components.locked_features.locked_only_office_popup.subtitle": "In the free version, you can not use onlyoffice.",
|
||||
"components.locked_features.locked_only_office_popup.text": "Whoops!! Seems like you want to edit the file from Tdrive. You might want to consider upgrading your plan if you want to collaborate around office files. Explore our pricing options and select the best option for your team collaboration needs.",
|
||||
"components.locked_features.locked_drive_popup.title": "You have just reached the drive limit",
|
||||
"components.locked_features.locked_drive_popup.subtitle": "In the free version, you can store only 6GB.",
|
||||
"components.public-link-acess.public-link-placeholder": "https://tdrive.com/your-simple-link",
|
||||
"components.public-link-acess.public_link_access": "Share via link",
|
||||
"components.public-link-acess.info_acess_expired": "Expired",
|
||||
"components.public-link-copied-info" : "Copied",
|
||||
"components.public-link-get" : "Create link",
|
||||
"components.public-link-copy" : "Copy link",
|
||||
"components.public-link-access-level-create" : "Anyone with the link will have access to",
|
||||
"components.public-link-access-level-update-subtitle" : "Anyone with the link has access to",
|
||||
"components.public-link-access-level-delete" : "Delete link",
|
||||
"components.public-link-security-title": "Share with link",
|
||||
"components.public-link-security": "Link security settings",
|
||||
"components.public-link-security-change": "Change",
|
||||
"components.public-link-security-change-subtitle": "Set password, expiration date, etc.",
|
||||
"components.public-link-security_password": "Password",
|
||||
"components.public-link-security_password_copied": "Password copied to clipboard",
|
||||
"components.public-link-security_password_removal_title": "About to remove password",
|
||||
"components.public-link-security_password_removal_body": "Warning: about to remove the password on the public link making available to anyone knowing it",
|
||||
"components.public-link-security_password_removal_confirm": "Remove password",
|
||||
"components.public-link-security_expired": "Expired",
|
||||
"components.public-link-security_field_confirm_edit": "Done",
|
||||
"components.public-link-security_expiration_title": "Link expiration",
|
||||
"components.public-link-security_expiration_removal_title": "About to remove expiry date of an expired link",
|
||||
"components.public-link-security_expiration_removal_no_password": "Warning: about to remove the expiry on the public link making available to anyone knowing it",
|
||||
"components.public-link-security_expiration_removal_but_password": "Warning: about to remove the expiry on the public link making available to anyone with the password",
|
||||
"components.public-link-security_expiration_removal_confirm": "Remove expiration",
|
||||
"components.internal-access_manage_title":"Manage access to",
|
||||
"components.internal-access_inherit_parent":"Inherit parent folder",
|
||||
"components.internal-access_inherit_parent_perm":"Choose to inherit or not the parent folder permissions.",
|
||||
"components.internal-access_company_member":"Every member from the company",
|
||||
"components.internal-access_cannal":"Channel access",
|
||||
"components.internal-access_cannal_info":"channel(s) from Tdrive chat have access to this item.",
|
||||
"components.internal-access_cannal_info_give_back":"You will need to go to Tdrive chat to give back access to this item.",
|
||||
"components.internal-access_specific_rules":"Specific access rules",
|
||||
"components.internal-access_specific_rules_you":"(you)",
|
||||
"components.internal-manage_root_users":"Shared drive access rules",
|
||||
"components.select-users_search_users":"Search users",
|
||||
"common.access-level_full_access":"Full access",
|
||||
"common.access-level_read":"Read",
|
||||
"common.access-level_write":"Write",
|
||||
"common.access-level_no_access":"No access",
|
||||
"common.access-level_remove":"Remove",
|
||||
"components.dragndrop_info_move_to":"move to",
|
||||
"components.SelectorModalContent_move_to":"Move to",
|
||||
"components.SelectorModalContent_no_items":"No item selected",
|
||||
"components.SelectorModalContent_select":"Selected",
|
||||
"components.SelectorModalContent_files":"files(s)",
|
||||
"components.PropertiesModalContent_rename":"Rename",
|
||||
"components.PropertiesModalContent_name":"Name",
|
||||
"components.PropertiesModalContent_place_holder":"Document or folder name",
|
||||
"components.PropertiesModalContent_update_button":"Update name",
|
||||
"compenents.ConfirmTrashModalContent_move":"Move",
|
||||
"compenents.ConfirmTrashModalContent_to_trash":"to trash",
|
||||
"compenents.ConfirmTrashModalContent_items_to_trash":"items to trash",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash_desc":"Click 'Move to trash' to move the selected items to the trash folder. You can restore them later from the trash.",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash":"Move to trash",
|
||||
"compenents.VersionModalContent_version":"Versions of",
|
||||
"compenents.VersionModalContent_version_dec":"Manage your document version here: Download older version of this document or upload a new version now.",
|
||||
"compenents.VersionModalContent_create":"Create version",
|
||||
"compenents.VersionModalContent_donwload":"Download",
|
||||
"hooks.use-drive-actions.unable_load_file":"Unable to load your files.",
|
||||
"hooks.use-drive-actions.unable_create_file":"Unable to create a new file.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_title":"You're out of storage",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_message":"You have reached the limit of your storage. Please, delete some files to vacate more space and have access to all features of Twake Drive.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_plans": "Our solution is now free for all users, but additional plans are coming soon.",
|
||||
"hooks.use-drive-actions.unable_download_file":"Unable to download this files.",
|
||||
"hooks.use-drive-actions.unable_remove_file":"Unable to remove this file.",
|
||||
"hooks.use-drive-actions.unable_restore_file":"Unable to restore this item.",
|
||||
"hooks.use-drive-actions.unable_update_file":"Unable to update this file.",
|
||||
"general.resume": "Resume",
|
||||
"general.pause": "Pause",
|
||||
"general.paused": "Paused",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Successfully deleted {{$1}} from your company",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_add": "Successfully added {{$1}} in your company",
|
||||
"scenes.join.loading": "Loading…",
|
||||
"scenes.join.wrong_link_title": "This link is not available anymore",
|
||||
"scenes.join.wrong_link_description": "Ask the person who invited you to join this company for a new link or create your own company",
|
||||
"scenes.join.create_the_company_button": "Create the company",
|
||||
"scenes.join.join_workspace_from_company": "Join {{$1}} from {{$2}}!",
|
||||
"scenes.join.tdrive_description": "Tdrive is an open-source digital workspace built to improve your team productivity",
|
||||
"scenes.join.login_first_button": "Log in or create an account first",
|
||||
"scenes.join.join_the_team_button": "Join the team",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_1": "Your company has reached its maximum limit of {{$1}} members. Please ",
|
||||
"components.locked_features_components.locked_invite_alert.message_link": "upgrade your company",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_2": " to invite more members.",
|
||||
"components.locked_features_components.locked_invite_alert.message_magic_link": " contact the owner or administrator of your company.",
|
||||
"components.open_desktop_popup.subtitle": "Opened in Tdrive app",
|
||||
"components.open_desktop_popup.open_here_link": "Open in web instead",
|
||||
"molecules.download_banner.title": "Get the most out of Tdrive, download the desktop app now",
|
||||
"molecules.download_banner.download_button": "Download desktop app",
|
||||
"components.side_menu.trash": "Trash",
|
||||
"components.side_menu.home": "Shared Drive",
|
||||
"components.side_menu.shared_with_me": "Shared with me",
|
||||
"components.side_menu.my_drive": "My Drive",
|
||||
"components.side_menu.buttons.upload": "Upload",
|
||||
"components.side_menu.buttons.create": "Create",
|
||||
"components.side_menu.buttons.empty_trash": "Empty trash",
|
||||
"components.header_path.shared_trash": "Shared Trash",
|
||||
"components.header_path.my_trash": "My Trash",
|
||||
"components.header_path.shared_with_me": "Shared with me",
|
||||
"scenes.app.drive.nothing": "Nothing here.",
|
||||
"scenes.app.drive.drag_and_drop": "Drag and drop files to upload them or click on the 'Add document' button.",
|
||||
"scenes.app.drive.add_doc": "Add document or folder",
|
||||
"scenes.app.drive.folders": "Folders",
|
||||
"scenes.app.drive.used": "used in this folder",
|
||||
"scenes.app.drive.context_menu": "More",
|
||||
"scenes.app.drive.documents": "Documents",
|
||||
"components.disk_usage.of": "of",
|
||||
"components.disk_usage.used": "used",
|
||||
"components.disk_usage.in_trash": "in trash",
|
||||
"components.create_modal.create_folder_or_doc": "Create document or folder",
|
||||
"components.create_modal.upload_folder_or_doc": "Upload document or folder",
|
||||
"components.create_modal.create_folder": "Create a folder",
|
||||
"components.create_modal.upload_files": "Upload files from device",
|
||||
"components.create_modal.upload_folders": "Upload folders from device",
|
||||
"components.create_modal.create_link": "Create a link file",
|
||||
"components.create_folder_modal.hint": "Choose a name for the new folder.",
|
||||
"components.create_folder_modal.placeholder": "Folder name",
|
||||
"components.create_link_modal.hint": "Link name",
|
||||
"components.create_link_modal.button": "Create link",
|
||||
"components.pending_file_list.estimation.end": "Will end",
|
||||
"components.pending_file_list.estimation.approximations": "Waiting for time approximations...",
|
||||
"components.item_context_menu.preview": "Preview",
|
||||
"components.item_context_menu.download": "Download",
|
||||
"components.item_context_menu.rename": "Rename",
|
||||
"components.item_context_menu.manage_access": "Manage access",
|
||||
"components.item_context_menu.manage_access_to": "Share",
|
||||
"components.item_context_menu.manage_access_advanced_to": "Manage access to",
|
||||
"components.item_context_menu.share": "Share",
|
||||
"components.item_context_menu.copy_link": "Copy link",
|
||||
"components.item_context_menu.copy_link.success": "Link copied to clipboard",
|
||||
"components.item_context_menu.versions": "Versions",
|
||||
"components.item_context_menu.move": "Move",
|
||||
"components.item_context_menu.move.modal_header": "Move",
|
||||
"components.item_context_menu.move_to_trash": "Delete",
|
||||
"components.item_context_menu.delete": "Delete",
|
||||
"components.item_context_menu.restore": "Restore",
|
||||
"components.item_context_menu.move_multiple": "Move selected items",
|
||||
"components.item_context_menu.move_multiple.modal_header": "Move selected items",
|
||||
"components.item_context_menu.download_multiple": "Download selected items",
|
||||
"components.item_context_menu.clear_selection": "Clear selection",
|
||||
"components.item_context_menu.delete_multiple": "Delete",
|
||||
"components.item_context_menu.to_trash_multiple": "Move selected items to trash",
|
||||
"components.item_context_menu.trash.empty": "Empty trash",
|
||||
"components.item_context_menu.add_documents": "Add document or folder",
|
||||
"components.item_context_menu.download_folder": "Download folder",
|
||||
"components.item_context_menu.manage_users": "Manager users",
|
||||
"components.item_context_menu.all": "All",
|
||||
"components.item_context_menu.today": "Today",
|
||||
"components.item_context_menu.last_week": "Last week",
|
||||
"components.item_context_menu.last_month": "Last month",
|
||||
"components.item_context_menu.open_new_window": "Open in new window",
|
||||
"scenes.app.shared_with_me.shared_with_me": "Shared with me",
|
||||
"scenes.app.shared_with_me.file_type": "File type",
|
||||
"scenes.app.shared_with_me.people": "People",
|
||||
"scenes.app.shared_with_me.last_modified": "Last modified",
|
||||
"scenes.app.shared_with_me.documents": "Documents",
|
||||
"scenes.app.shared_with_me.name": "Name",
|
||||
"scenes.app.shared_with_me.shared_by": "Shared by",
|
||||
"scenes.app.shared_with_me.shared_date": "Shared date",
|
||||
"scenes.app.shared_with_me.edit": "Edit",
|
||||
"ONLYOFFICE Word Document": "Create a Document",
|
||||
"ONLYOFFICE Excel Document": "Create a Spreadsheet",
|
||||
"ONLYOFFICE PowerPoint Document": "Create a Presentation"
|
||||
"scenes.join.join_workspace_from_company": "Join {{$1}} from {{$2}}!",
|
||||
"scenes.join.loading": "Loading…",
|
||||
"scenes.join.login_first_button": "Log in or create an account first",
|
||||
"scenes.join.tdrive_description": "Tdrive is an open-source digital workspace built to improve your team productivity",
|
||||
"scenes.join.wrong_link_description": "Ask the person who invited you to join this company for a new link or create your own company",
|
||||
"scenes.join.wrong_link_title": "This link is not available anymore",
|
||||
"scenes.login.create_account.email": "E-mail",
|
||||
"scenes.login.create_account.email_used": "This e-mail is already in use.",
|
||||
"scenes.login.create_account.fill_in_email": "You must fill in your email with a correct email",
|
||||
"scenes.login.create_account.fill_in_username": "You must fill in your username",
|
||||
"scenes.login.create_account.password": "Password",
|
||||
"scenes.login.create_account.step_1_subtitle": "It couldn't be simpler — we just need some information.",
|
||||
"scenes.login.create_account.step_3_mail_sent": "We have sent you an activation link by e-mail.",
|
||||
"scenes.login.create_account.step_3_subtitle": "Last step — we need to verify you're not a robot!",
|
||||
"scenes.login.create_account.title": "Create a new account",
|
||||
"scenes.login.create_account.too_short_password": "Your password must contain at least 8 characters.",
|
||||
"scenes.login.create_account.username": "Username",
|
||||
"scenes.login.create_account.username_already_exist": "This username is already in use",
|
||||
"scenes.login.footer.branding": "You are on a {{$1}} ({{$2}}) private Tdrive server. ",
|
||||
"scenes.login.footer.go_to_tdrive": "Go to twake.app",
|
||||
"scenes.login.home.create_account": "Create an account",
|
||||
"scenes.login.home.email": "E-mail",
|
||||
"scenes.login.home.login_btn": "Log in",
|
||||
"scenes.login.home.password": "Password",
|
||||
"scenes.login.home.subtitle": "Happy to see you",
|
||||
"scenes.login.home.title": "Sign in to Tdrive",
|
||||
"scenes.login.home.unable_to_connect": "Invalid credentials",
|
||||
"scenes.no_panic": "Don't panic! Just reload this page to fix Tdrive.",
|
||||
"scenes.tell_us": "Please tell us what you were doing at:",
|
||||
"services.console_services.toaster.add_email_error_message": "Error while adding {{$1}}",
|
||||
"services.console_services.toaster.add_emails_error": "Error while adding email(s)",
|
||||
"services.console_services.toaster.success_invite_emails": "Successfully added {{$1}} user(s)",
|
||||
"services.console_services.toaster.success_verify_email": "A verification link has been sent to your email account",
|
||||
"services.file_upload_service.toaster.upload_file_error": "Error uploading file: {{$1}}",
|
||||
"services.user.notification_parameters_update_alert": "The notification settings have been updated.",
|
||||
"services.user.update_password_alert": "Your password has been updated."
|
||||
}
|
||||
@@ -315,6 +315,14 @@
|
||||
"components.item_context_menu.manage_access_to": "Partage de",
|
||||
"components.item_context_menu.manage_access_advanced_to": "Gérer l'accès de",
|
||||
"components.item_context_menu.share": "Partager",
|
||||
"components.item_context_menu.sorting.by.date": "Date",
|
||||
"components.item_context_menu.sorting.by.name": "Nom",
|
||||
"components.item_context_menu.sorting.by.size": "Taille",
|
||||
"components.item_context_menu.sorting.order.asc": "Croissant",
|
||||
"components.item_context_menu.sorting.order.desc": "Décroissant",
|
||||
"components.item_context_menu.sorting.selected.date": "Par date",
|
||||
"components.item_context_menu.sorting.selected.name": "Par nom",
|
||||
"components.item_context_menu.sorting.selected.size": "Par taille",
|
||||
"components.item_context_menu.copy_link": "Copier le lien",
|
||||
"components.item_context_menu.copy_link.success": "Lien copié dans le presse-papiers",
|
||||
"components.item_context_menu.versions": "Versions",
|
||||
|
||||
@@ -1,351 +1,370 @@
|
||||
{
|
||||
"general.cancel": "Отмена",
|
||||
"general.continue": "Продолжить",
|
||||
"general.back": "Назад",
|
||||
"general.help": "Помощь",
|
||||
"general.send": "Отправить сообщение",
|
||||
"general.update": "Обновить",
|
||||
"general.remove": "Удалить",
|
||||
"general.add": "Добавить",
|
||||
"general.connexion_status.disconnected": "Вы не в сети",
|
||||
"general.connexion_status.connected": "Вы в сети",
|
||||
"general.connexion_status.connecting": "Переподключение…",
|
||||
"scenes.app.workspaces.create_company.group_data": "Настроить новую группу",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type": "Тип группы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.company": "Компания или отдел компании",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.public_organization": "Общественная организация",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.university_school": "Университет или школа",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.society_club_charity": "Общество, клуб или благотворительная организация",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.other_group": "Прочее",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size": "Размер группы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.less_3": "Менее 4 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.4_10": "4 - 10 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.10_50": "11 - 49 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.50_100": "50 - 99 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.100_500": "100 - 499 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.500_1000": "500 - 999 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.1000_5000": "1000 - 4999 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.5000_more": "Более 5000 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity": "Основной вид деятельности",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.food": "Продукты питания",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.bank": "Банк / страхование",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.printing_paper": "Полиграфия / Печать",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.construction_building": "Строительство / Строительные материалы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.real_estate": "Недвижимое имущество",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.materials": "Материалы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.chemistry": "Химия",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.trade_commerce_distribution": "Торговля / Коммерция / Распределение",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.publishing_communication_multimedia": "Издательство / Коммуникации / Мультимедиа",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.electronics_electricity_energy": "Электроника / Электричество / Энергетика",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.studies_and_advice": "Исследования и консалтинг",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.pharmaceutical_industry": "Фармацевтическая промышленность",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.it_telecom": "ИТ / Телесвязь",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.machinery_automotive": "Оборудование / Автомобили",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.business_services": "Бизнес-услуги",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.entertainment": "Развлечения",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.textile_clothing_shoes": "Текстиль / Одежда / Обувь",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.transport_logistics": "Транспорт / Логистика",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.research": "Исследования",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.education": "Образование",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.administration": "Управление",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.other": "Прочее",
|
||||
"components.drive_dropzone.uploading": "Загрузка...",
|
||||
"components.user_picker.modal_results_count_none": "Результатов не найдено",
|
||||
"components.user_picker.modal_results_truncated": "Результата(ов) {{$1}} из {{$2}}...",
|
||||
"components.users_picker.add_me": "Добавить меня",
|
||||
"scenes.app.workspaces.create_company.invitations.title": "Настройка рабочей среды.",
|
||||
"scenes.app.header.disconnected": "Соединение отсутствует",
|
||||
"scenes.app.header.disconnected.reload": "Перезагрузить",
|
||||
"scenes.apps.parameters.workspace_sections.members": "Участники",
|
||||
"scenes.apps.account.title": "Настройки аккаунта",
|
||||
"scenes.apps.account.account.menu_title": "Аккаунт",
|
||||
"scenes.apps.account.languages.menu_title": "Язык",
|
||||
"scenes.apps.account.account.username": "Имя пользователя",
|
||||
"scenes.apps.account.account.change_username": "Изменить имя пользователя.",
|
||||
"scenes.apps.account.account.emails": "Аккаунты электронной почты",
|
||||
"scenes.apps.account.account.main_email": "Основной аккаунт электронной почты",
|
||||
"scenes.apps.account.account.email_add": "Добавить новый аккаунт электронной почты",
|
||||
"scenes.apps.account.account.email_add_modal.invalid_code": "Данный код недействителен",
|
||||
"scenes.apps.account.account.password": "Пароль",
|
||||
"scenes.apps.account.account.password_modal.old_password": "Текущий пароль",
|
||||
"scenes.apps.account.account.password_modal.password": "Новый пароль",
|
||||
"scenes.apps.account.account.password_modal.bad_old_password": "Старый пароль введен неверно.",
|
||||
"scenes.apps.account.account.password_modal.bad_password": "Ваши пароли не совпадают или содержат недостаточно символов. Пожалуйста, введите пароль не менее чем из 8 символов.",
|
||||
"scenes.apps.account.languages.text": "Сменить язык Tdrive.",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite": "Пригласить нового участника",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_btn": "Добавить участника",
|
||||
"scenes.login.footer.go_to_tdrive": "Перейти к tdriveapp.com",
|
||||
"scenes.login.footer.branding": "Вы находитесь на частном сервере, принадлежащем {{$1}} ({{$2}}). ",
|
||||
"scenes.login.create_account.title": "Создать новый аккаунт",
|
||||
"scenes.login.create_account.email": "Электронная почта",
|
||||
"scenes.login.create_account.email_used": "Этот адрес электронной почты уже используется.",
|
||||
"scenes.login.create_account.username": "Имя пользователя",
|
||||
"scenes.login.create_account.username_already_exist": "Это имя пользователя уже используется",
|
||||
"scenes.login.create_account.fill_in_username": "Необходимо ввести имя пользователя",
|
||||
"scenes.login.create_account.fill_in_email": "Необходимо ввести верный адрес электронной почты",
|
||||
"scenes.login.create_account.too_short_password": "Ваш пароль должен содержать не менее 8 символов.",
|
||||
"scenes.login.home.title": "Вход в Tdrive",
|
||||
"scenes.login.home.subtitle": "Добро пожаловать",
|
||||
"scenes.login.home.email": "Почта",
|
||||
"scenes.login.home.unable_to_connect": "Недействительные идентификационные данные",
|
||||
"scenes.login.home.password": "Пароль",
|
||||
"scenes.login.home.login_btn": "Войти",
|
||||
"scenes.login.home.create_account": "Создать аккаунт",
|
||||
"scenes.login.create_account.password": "Пароль",
|
||||
"scenes.login.create_account.step_1_subtitle": "Все очень просто: нам понадобится кое-какая информация.",
|
||||
"scenes.login.create_account.step_3_mail_sent": "Мы отправили вам ссылку для активации по электронной почте.",
|
||||
"scenes.login.create_account.step_3_subtitle": "Последний шаг, мы должны убедиться, что вы не робот!",
|
||||
"scenes.app.workspaces.create_company.company_name.placeholder": "Название компании",
|
||||
"scenes.app.workspaces.create_company.company_name.title_1": "Для начала,",
|
||||
"scenes.app.workspaces.create_company.company_name.title_2": "укажите название вашей компании.",
|
||||
"scenes.app.workspaces.create_company.default_workspace_name": "Главное",
|
||||
"scenes.app.workspaces.create_company.group_data.title": "Это не займет много времени: нам просто нужна статистическая информация.",
|
||||
"scenes.app.workspaces.create_company.importations.title_1": "Уже работаете с цифровыми инструментами? Импортируйте или интегрируйте свои инструменты прямо сейчас!",
|
||||
"scenes.app.workspaces.create_company.importations.title_2": "Не волнуйтесь, вы можете сделать это позже!",
|
||||
"scenes.app.workspaces.create_company.invitations.title_2": "Добавьте членов своей команды.",
|
||||
"scenes.app.workspaces.create_company.title": "Создать свою компанию",
|
||||
"scenes.app.workspaces.welcome_page.add_secondary_emails": "Добавить еще один аккаунт электронной почты",
|
||||
"scenes.app.workspaces.welcome_page.add_new_email": "Добавить аккаунт электронной почты",
|
||||
"scenes.app.workspaces.welcome_page.new_email": "Добавить еще один аккаунт электронной почты",
|
||||
"scenes.apps.account.account.description_main": "Ваш основной адрес - это тот, на который Tdrive отправляет уведомления. Прочие адреса позволяют автоматически приглашать вас в рабочие среды, которые их используют.",
|
||||
"scenes.apps.account.account.emails.description": "Управляйте различными адресами электронной почты.",
|
||||
"scenes.apps.account.account.make_main": "Сделать основным",
|
||||
"scenes.apps.account.account.password.description": "Изменить пароль.",
|
||||
"scenes.apps.account.identity": "Личность",
|
||||
"scenes.apps.account.identity.description": "Измените имя, фамилию и изображение профиля, видимые другими пользователям Tdrive.",
|
||||
"scenes.apps.account.preference": "Предпочтения",
|
||||
"scenes.apps.account.thumbnail.max_weight": "Максимальный размер - 5 Мб",
|
||||
"scenes.apps.account.account.email_add_modal.confirm": "Подтвердить данную электронную почту",
|
||||
"'": "'",
|
||||
"ONLYOFFICE Excel Document": "Создать электронную таблицу",
|
||||
"ONLYOFFICE PowerPoint Document": "Создать презентацию",
|
||||
"ONLYOFFICE Word Document": "Создать документ",
|
||||
"\"": "\"",
|
||||
"app.name.tdrive_calendar": "Календарь",
|
||||
"app.name.tdrive_drive": "Документы",
|
||||
"app.name.tdrive_tasks": "Задачи",
|
||||
"scenes.app.channelsbar.currentuser.title": "Настройки аккаунта",
|
||||
"scenes.app.channelsbar.currentuser.logout": "Выход",
|
||||
"scenes.app.popup.adduser.adresses_message": "Пожалуйста, разделите адреса запятой или пробелом. Помните, что Tdrive может ограничить количество приглашений в зависимости от вашей подписки.",
|
||||
"scenes.app.mainview.quick_search_placeholder": "Быстрый поиск",
|
||||
"scenes.app.popup.userparameter.personnal_workspaces_title": "Ваши рабочие среды",
|
||||
"scenes.app.popup.workspaceparameter.pages.alert_impossible_removing": "Вы не можете покинуть рабочую среду, потому что вы последний администратор. Вы можете определить нового администратора или удалить/архивировать эту рабочую среду.",
|
||||
"scenes.apps.drive.download_button": "Скачать",
|
||||
"scenes.apps.drive.viewer.edit_with_button": "Отредактировать с помощью {{$1}}",
|
||||
"scenes.apps.drive.viewer.open_with_button": "Открыть с помощью...",
|
||||
"scenes.apps.messages.message.save_button": "Сохранить",
|
||||
"scenes.error_on_tdrive": "“Хьюстон, у нас проблема“",
|
||||
"scenes.help_us": "Если вы хотите помочь нам исправить эту ошибку, отправьте сообщение ниже: ",
|
||||
"scenes.no_panic": "Без паники! Просто перезагрузите данную страницу, чтобы починить Tdrive.",
|
||||
"services.user.notification_parameters_update_alert": "Настройки уведомлений были обновлены.",
|
||||
"services.user.update_password_alert": "Ваш пароль был обновлен.",
|
||||
"scenes.app.workspaces.components.skip": "Пропустить",
|
||||
"scenes.tell_us": "Пожалуйста, расскажите нам, что вы делали в :",
|
||||
"scenes.app.popup.sync_calendar": "Синхронизируйте свои календари.",
|
||||
"scenes.app.mainview.create_account": "Создайте свою рабочую среду бесплатно в ",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_all": "Пригласить всех",
|
||||
"components.upload.drop_files": "Перетащить файлы сюда",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_add": "{{$1}} успешно добавлен в вашу компанию",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Успешно удалил {{$1}} из вашей компании",
|
||||
"application.load.longer": "Сервер не отвечает слишком долго; подождите или обновите страницу...",
|
||||
"common.access-level_full_access": "Полный доступ",
|
||||
"common.access-level_no_access": "Нет доступа",
|
||||
"common.access-level_read": "Просмотр",
|
||||
"common.access-level_remove": "Удалить",
|
||||
"common.access-level_write": "Редактирование",
|
||||
"compenents.ConfirmTrashModalContent_items_to_trash": "элементы в папку",
|
||||
"compenents.ConfirmTrashModalContent_move": "Переместить",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash": "Удалить",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash_desc": "Нажмите 'Удалить' чтобы переместить выделенные элементы в корзину. Вы сможете восстановить их позже.",
|
||||
"compenents.ConfirmTrashModalContent_to_trash": "в корзину",
|
||||
"compenents.VersionModalContent_create": "Создать версию",
|
||||
"compenents.VersionModalContent_donwload": "Скачать",
|
||||
"compenents.VersionModalContent_version": "Версии ...",
|
||||
"compenents.VersionModalContent_version_dec": "Управление версиями документа: Здесь можно скачать или загрузить новую версию документа.",
|
||||
"components.SelectorModalContent_files": "файл(ы)",
|
||||
"components.SelectorModalContent_move_to": "Переместить в",
|
||||
"components.SelectorModalContent_no_items": "Нет выдулунных элементов",
|
||||
"components.SelectorModalContent_select": "Выбранные",
|
||||
"components.add_mails_workspace.text_area_placeholder": "Введите адреса электронной почты пользователей*",
|
||||
"components.alert.confirm": "Подтвердите ваше действие",
|
||||
"components.alert.confirm_click": "Подтвердите ваше действие, нажав на кнопку \"Подтвердить\".",
|
||||
"components.userlistmanager.no_users": "Нет пользователей.",
|
||||
"components.locked_features.locked_only_office_popup.title": "Вы не можете редактировать этот файл",
|
||||
"components.locked_features.locked_only_office_popup.subtitle": "В бесплатной версии вы не можете использовать onlyoffice.",
|
||||
"components.locked_features.locked_only_office_popup.text": "Ой... Похоже, вы хотите отредактировать файл из Tdrive. Вам необходимо обновить свой план, чтобы совместно использовать файлы. Изучите наше ценовое предложение и выберите лучший вариант для совместной работы вашей команды.",
|
||||
"components.locked_features.locked_drive_popup.title": "Вы не можете загружать больше файлов",
|
||||
"components.create_folder_modal.hint": "Выберите имя для папки",
|
||||
"components.create_folder_modal.placeholder": "Имя папки",
|
||||
"components.create_link_modal.button": "Создать ссылку",
|
||||
"components.create_link_modal.hint": "Имя ссылки",
|
||||
"components.create_modal.create_folder": "Создать папку",
|
||||
"components.create_modal.create_folder_or_doc": "Создать папку или файл",
|
||||
"components.create_modal.create_link": "Создать ссылку на файл",
|
||||
"components.create_modal.upload_files": "Загрузить файл",
|
||||
"components.create_modal.upload_folder_or_doc": "Загрузить документ или папку",
|
||||
"components.create_modal.upload_folders": "Загрузить папку",
|
||||
"components.disk_usage.in_trash": "в корзине",
|
||||
"components.disk_usage.of": "из",
|
||||
"components.disk_usage.used": "использовано",
|
||||
"components.dragndrop_info_move_to": "move to",
|
||||
"components.drive_dropzone.uploading": "Загрузка...",
|
||||
"components.header_path.my_trash": "Корзина \"Моего диска\"",
|
||||
"components.header_path.shared_trash": "Корзина \"Общего диска\"",
|
||||
"components.header_path.shared_with_me": "Поделено со мной",
|
||||
"components.internal-access_cannal": "Channel access",
|
||||
"components.internal-access_cannal_info": "channel(s) from Tdrive chat have access to this item.",
|
||||
"components.internal-access_cannal_info_give_back": "You will need to go to Tdrive chat to give back access to this item.",
|
||||
"components.internal-access_company_member": "Каждый в компании",
|
||||
"components.internal-access_inherit_parent": "Наследовать от родительской папки",
|
||||
"components.internal-access_inherit_parent_perm": "Выберите чтобы наследовать или нет права доступа родительской папки.",
|
||||
"components.internal-access_manage_title": "Настройки доступа к",
|
||||
"components.internal-access_specific_rules": "Специальные права доступа",
|
||||
"components.internal-access_specific_rules_you": "(вы)",
|
||||
"components.internal-manage_root_users": "Праила доступа к \"Общему диску\"",
|
||||
"components.item_context_menu.add_documents": "Добавить документ в папку",
|
||||
"components.item_context_menu.all": "Все",
|
||||
"components.item_context_menu.clear_selection": "Снять выделение",
|
||||
"components.item_context_menu.copy_link": "Скопировать ссылку",
|
||||
"components.item_context_menu.copy_link.success": "Ссылка скопирована в буфер обмена",
|
||||
"components.item_context_menu.delete": "Удалить",
|
||||
"components.item_context_menu.delete_multiple": "Удалить",
|
||||
"components.item_context_menu.download": "Скачать",
|
||||
"components.item_context_menu.download_folder": "Скачать папку",
|
||||
"components.item_context_menu.download_multiple": "Скачать все",
|
||||
"components.item_context_menu.last_month": "За месяц",
|
||||
"components.item_context_menu.last_week": "За неделю",
|
||||
"components.item_context_menu.manage_access": "Настроить доступ",
|
||||
"components.item_context_menu.manage_access_advanced_to": "Управлять доступом к",
|
||||
"components.item_context_menu.manage_access_to": "Настроить доступ",
|
||||
"components.item_context_menu.manage_users": "Управлять пользователями",
|
||||
"components.item_context_menu.move": "Переместить",
|
||||
"components.item_context_menu.move.modal_header": "Переместить",
|
||||
"components.item_context_menu.move_multiple": "Переместить все",
|
||||
"components.item_context_menu.move_multiple.modal_header": "Переместить выбранные елементы",
|
||||
"components.item_context_menu.move_to_trash": "Удалить",
|
||||
"components.item_context_menu.open_new_window": "Открыть в новом окне",
|
||||
"components.item_context_menu.preview": "Просмотр",
|
||||
"components.item_context_menu.rename": "Переименовать",
|
||||
"components.item_context_menu.restore": "Восстановить",
|
||||
"components.item_context_menu.share": "Поделиться",
|
||||
"components.item_context_menu.sorting.by.date": "Дате",
|
||||
"components.item_context_menu.sorting.by.name": "Имени",
|
||||
"components.item_context_menu.sorting.by.size": "Размеру",
|
||||
"components.item_context_menu.sorting.order.asc": "Возрастанию",
|
||||
"components.item_context_menu.sorting.order.desc": "Убыванию",
|
||||
"components.item_context_menu.sorting.selected.date": "По дате",
|
||||
"components.item_context_menu.sorting.selected.name": "По имени",
|
||||
"components.item_context_menu.sorting.selected.size": "По размеру",
|
||||
"components.item_context_menu.to_trash_multiple": "Удалить",
|
||||
"components.item_context_menu.today": "Сегодня",
|
||||
"components.item_context_menu.trash.empty": "Очистить корзину",
|
||||
"components.item_context_menu.versions": "История изменений",
|
||||
"components.locked_features.locked_drive_popup.subtitle": "В бесплатной версии можно хранить только 6 ГБ.",
|
||||
"scenes.app.popup.adduser.magiclinks.genrator_info": "Пригласительная ссылка для рабочей среды",
|
||||
"application.load.longer": "Сервер не отвечает слишком долго; подождите или обновите страницу...",
|
||||
"components.newversion.new_version_modal.title": "Доступно новое обновление !",
|
||||
"components.add_mails_workspace.text_area_placeholder": "Введите адреса электронной почты пользователей*",
|
||||
"services.console_services.toaster.success_verify_email": "Ссылка для подтверждения была отправлена по вашему адресу электронной почты",
|
||||
"scenes.app.popup.workspaceparameter.edit_from_console": "См. в \"Консоли\"",
|
||||
"services.console_services.toaster.success_invite_emails": "Успешно добавлен(о) {{$1}} пользователь(ей)",
|
||||
"general.user.role.company.guest": "Гость",
|
||||
"general.user.deleted": "Удаленная учетная запись",
|
||||
"general.user.anonymous": "Анонимный",
|
||||
"components.locked_features.locked_guests_popup.title": "Функция гостей заблокирована",
|
||||
"components.locked_features.locked_guests_popup.subtitle": "Эта функция недоступна в бесплатной версии Tdrive",
|
||||
"components.member.user_parts.and_more_user_text": " и еще {{$1}} пользователей",
|
||||
"scenes.join.join_workspace_from_company": "Присоединяйтесь к {{$1}} с {{$2}}!",
|
||||
"scenes.join.tdrive_description": "Tdrive - это цифровая рабочая среда с открытым исходным кодом, созданная для повышения продуктивности вашей команды",
|
||||
"scenes.join.login_first_button": "Войти или создать учетную запись",
|
||||
"scenes.join.join_the_team_button": "Присоединиться к команде",
|
||||
"scenes.app.popup.adduser.magiclinks.new_link_generated": "Создана новая ссылка",
|
||||
"scenes.app.popup.adduser.magiclinks.copied_to_clipboard": "Успешно скопировано в буфер обмена",
|
||||
"scenes.app.popup.adduser.magiclinks.action_copy": "Копировать",
|
||||
"scenes.app.popup.adduser.magiclinks.action_generate": "Сгенерировать",
|
||||
"services.console_services.toaster.add_email_error_message": "Ошибка при добавлении {{$1}}",
|
||||
"general.user.role.company.admin": "Администратор компании",
|
||||
"components.locked_features.locked_drive_popup.title": "Вы не можете загружать больше файлов",
|
||||
"components.locked_features.locked_guests_popup.description": "Ой... Похоже, вы хотите пригласить внешних пользователей в свою рабочую среду. Вам необходимо обновить свой план, чтобы сотрудничать с гостями и внешними партнерами. Изучите наше ценовое предложение и выберите лучший вариант для совместной работы вашей команды.",
|
||||
"components.locked_features.locked_guests_popup.learn_more_button": "Узнать больше",
|
||||
"components.locked_features.locked_guests_popup.or": "Или",
|
||||
"scenes.client.main_view.main_header.search_input": "Поиск",
|
||||
"components.public-link-acess.public_link_access": "Поделитесь ссылкой",
|
||||
"components.public-link-acess.info_acess_expired": "Expired",
|
||||
"components.public-link-copied-info" : "Ссылка скопирована",
|
||||
"components.public-link-get" : "Создать ссылку",
|
||||
"components.public-link-copy" : "Копировать ссылку",
|
||||
"components.public-link-security_password": "Пароль",
|
||||
"components.public-link-security_password_copied": "Скопировать пароль в буфер",
|
||||
"components.public-link-security_expired": "Срок действия",
|
||||
"components.public-link-security_expiration_title": "Срок действия",
|
||||
"components.public-link-security_expiration_removal_title": "О удалении срока действия истекшей ссылки",
|
||||
"components.public-link-security_expiration_removal_no_password": "Это делает документ доступным для любого, у кого есть эта ссылка",
|
||||
"components.public-link-security_expiration_removal_but_password": "Это делает её доступной для любого, кто знает пароль",
|
||||
"components.public-link-security_expiration_removal_confirm": "Удалить срок действия",
|
||||
"components.public-link-security_field_confirm_edit": "Готово",
|
||||
"components.public-link-security_password_removal_title": "Предупреждение о удалении пароля",
|
||||
"components.public-link-security_password_removal_body": "Это делает документ доступным для любого, у кого есть эта ссылка",
|
||||
"components.public-link-security_password_removal_confirm": "Удалить пароль",
|
||||
"components.locked_features.locked_guests_popup.skip_for_now_button": "Отложить",
|
||||
"components.locked_features.locked_guests_popup.subtitle": "Эта функция недоступна в бесплатной версии Tdrive",
|
||||
"components.locked_features.locked_guests_popup.title": "Функция гостей заблокирована",
|
||||
"components.locked_features.locked_only_office_popup.subtitle": "В бесплатной версии вы не можете использовать onlyoffice.",
|
||||
"components.locked_features.locked_only_office_popup.text": "Ой... Похоже, вы хотите отредактировать файл из Tdrive. Вам необходимо обновить свой план, чтобы совместно использовать файлы. Изучите наше ценовое предложение и выберите лучший вариант для совместной работы вашей команды.",
|
||||
"components.locked_features.locked_only_office_popup.title": "Вы не можете редактировать этот файл",
|
||||
"components.locked_features_components.locked_invite_alert.message_link": "повысьте статус вашей компании",
|
||||
"components.locked_features_components.locked_invite_alert.message_magic_link": " обратитесь к владельцу или администратору вашей компании.",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_1": "Ваша компания достигла максимального лимита в {{$1}} участников. Пожалуйста, ",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_2": " чтобы пригласить больше участников.",
|
||||
"components.member.user_parts.and_more_user_text": " и еще {{$1}} пользователей",
|
||||
"components.newversion.new_version_component.link": "Нажмите сюда, чтобы обновить",
|
||||
"components.newversion.new_version_component.row.part_1": "Ваша версия Tdrive устарела",
|
||||
"components.newversion.new_version_component.row.part_2": "предлагаем вам обновить приложение и попробовать наши новые функции!",
|
||||
"components.newversion.new_version_modal.title": "Доступно новое обновление !",
|
||||
"components.notifications.hidden_notifications_button.children": "Новые сообщения",
|
||||
"components.open_desktop_popup.open_here_link": "Вместо этого откройте здесь",
|
||||
"components.open_desktop_popup.subtitle": "открыто в приложении Tdrive",
|
||||
"components.pending_file_list.estimation.approximations": "Примерное время ожидания...",
|
||||
"components.pending_file_list.estimation.end": "Закончится через",
|
||||
"components.PropertiesModalContent_name": "Имя",
|
||||
"components.PropertiesModalContent_place_holder": "Имя папки или документа",
|
||||
"components.PropertiesModalContent_rename": "Переименовать",
|
||||
"components.PropertiesModalContent_update_button": "Переименовать",
|
||||
"components.public-link-access-level-create": "Все кто имеет ссылку буду иметь доступ",
|
||||
"components.public-link-access-level-delete": "Удалить ссылку",
|
||||
"components.public-link-access-level-update-subtitle": "У каждого, кто имеет ссылку, есть доступ к",
|
||||
"components.public-link-acess.info_acess_expired": "Срок действия истек",
|
||||
"components.public-link-acess.public-link-placeholder": "https://tdrive.com/your-simple-link",
|
||||
"components.public-link-acess.public_link_access": "Поделитесь ссылкой",
|
||||
"components.public-link-copied-info": "Ссылка скопирована",
|
||||
"components.public-link-copy": "Копировать ссылку",
|
||||
"components.public-link-get": "Создать ссылку",
|
||||
"components.public-link-security": "Настройки безопасности ссылки",
|
||||
"components.public-link-security-change": "Изменить",
|
||||
"components.public-link-security-change-subtitle": "Установить пароль, срок действия и т.д.",
|
||||
"components.public-link-security-title": "Поделиться ссылкой",
|
||||
"components.internal-access_manage_title":"Настройки доступа к",
|
||||
"components.internal-access_inherit_parent":"Inherit parent folder",
|
||||
"components.internal-access_inherit_parent_perm":"Choose to inherit or not the parent folder permissions.",
|
||||
"components.internal-access_company_member":"Every member from the company",
|
||||
"components.internal-access_cannal":"Channel access",
|
||||
"components.internal-access_cannal_info":"channel(s) from Tdrive chat have access to this item.",
|
||||
"components.internal-access_cannal_info_give_back":"You will need to go to Tdrive chat to give back access to this item.",
|
||||
"components.internal-access_specific_rules":"Specific access rules",
|
||||
"components.internal-access_specific_rules_you":"(you)",
|
||||
"components.internal-manage_root_users":"Shared drive access rules",
|
||||
"components.select-users_search_users":"Search users",
|
||||
"common.access-level_full_access":"Полный доступ",
|
||||
"common.access-level_read":"Просмотр",
|
||||
"common.access-level_write":"Редактирование",
|
||||
"common.access-level_no_access":"Нет доступа",
|
||||
"common.access-level_remove":"Удалить",
|
||||
"components.dragndrop_info_move_to":"move to",
|
||||
"components.SelectorModalContent_move_to":"Move to",
|
||||
"components.SelectorModalContent_no_items":"No item selected",
|
||||
"components.SelectorModalContent_select":"Selected",
|
||||
"components.SelectorModalContent_files":"files(s)",
|
||||
"components.PropertiesModalContent_rename":"Rename",
|
||||
"components.PropertiesModalContent_name":"Name",
|
||||
"components.PropertiesModalContent_place_holder":"Document or folder name",
|
||||
"components.PropertiesModalContent_update_button":"Update name",
|
||||
"compenents.ConfirmTrashModalContent_move":"Move",
|
||||
"compenents.ConfirmTrashModalContent_to_trash":"to trash",
|
||||
"compenents.ConfirmTrashModalContent_items_to_trash":"items to trash",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash_desc":"Click 'Move to trash' to move the selected items to the trash folder. You can restore them later from the trash.",
|
||||
"compenents.ConfirmTrashModalContent_move_to_trash":"Move to trash",
|
||||
"compenents.VersionModalContent_version":"Versions of",
|
||||
"compenents.VersionModalContent_version_dec":"Manage your document version here: Download older version of this document or upload a new version now.",
|
||||
"compenents.VersionModalContent_create":"Create version",
|
||||
"compenents.VersionModalContent_donwload":"Download",
|
||||
"hooks.use-drive-actions.unable_load_file":"Unable to load your files.",
|
||||
"hooks.use-drive-actions.unable_create_file":"Unable to create a new file.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_title": "У вас закончилось место для хранения",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_message": "Вы достигли предела вашего места для хранения. Пожалуйста, удалите некоторые файлы, чтобы освободить больше места и получить доступ ко всем функциям Twake Drive.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_plans": "Наше решение теперь бесплатно для всех пользователей, но скоро будут доступны дополнительные планы.",
|
||||
"hooks.use-drive-actions.unable_download_file":"Unable to download this files.",
|
||||
"hooks.use-drive-actions.unable_remove_file":"Unable to remove this file.",
|
||||
"hooks.use-drive-actions.unable_restore_file":"Unable to restore this item.",
|
||||
"hooks.use-drive-actions.unable_update_file":"Unable to update this file.",
|
||||
"general.resume": "Продолжить",
|
||||
"general.pause": "Пауза",
|
||||
"general.paused": "Пауза",
|
||||
"general.user.role.company.member": "Участник",
|
||||
"components.locked_features.locked_guests_popup.skip_for_now_button": "Отложить",
|
||||
"scenes.join.loading": "Загрузка…",
|
||||
"scenes.join.wrong_link_title": "Эта ссылка больше не доступна",
|
||||
"scenes.join.wrong_link_description": "Попросите человека, который пригласил вас присоединиться к этой компании, выслать новую ссылку или создайте собственную компанию",
|
||||
"scenes.join.create_the_company_button": "Создать компанию",
|
||||
"components.notifications.hidden_notifications_button.children": "Новые сообщения",
|
||||
"scenes.app.popup.adduserfromtdriveconsole.current_users_state": "{{$1}} адрес(а) электронной почты будет(ут) добавлен(ы)",
|
||||
"components.newversion.new_version_component.row.part_1": "Ваша версия Tdrive устарела",
|
||||
"components.newversion.new_version_component.row.part_2": "предлагаем вам обновить приложение и попробовать наши новые функции!",
|
||||
"components.newversion.new_version_component.link": "Нажмите сюда, чтобы обновить",
|
||||
"services.console_services.toaster.add_emails_error": "Ошибка при добавлении адреса(ов) электронной почты",
|
||||
"login.create_account": "Создать учетную запись",
|
||||
"'": "'",
|
||||
"login.login_error": "Ошибка при входе в систему",
|
||||
"\"": "\"",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Успешно удалил {{$1}} из вашей компании",
|
||||
"app.state.recoil.hooks.use_current_company_applications.toaster_add": "{{$1}} успешно добавлен в вашу компанию",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_1": "Ваша компания достигла максимального лимита в {{$1}} участников. Пожалуйста, ",
|
||||
"components.locked_features_components.locked_invite_alert.message_link": "повысьте статус вашей компании",
|
||||
"components.locked_features_components.locked_invite_alert.message_part_2": " чтобы пригласить больше участников.",
|
||||
"components.locked_features_components.locked_invite_alert.message_magic_link": " обратитесь к владельцу или администратору вашей компании.",
|
||||
"components.open_desktop_popup.subtitle": "открыто в приложении Tdrive",
|
||||
"components.open_desktop_popup.open_here_link": "Вместо этого откройте здесь",
|
||||
"molecules.download_banner.title": "Получите максимум от Tdrive, загрузите настольное приложение прямо сейчас",
|
||||
"molecules.download_banner.download_button": "Скачать настольное приложение",
|
||||
"components.searchpopup.no_results_for": "Не найдено результатов для",
|
||||
"components.searchpopup.try_new_search": "Искать еще раз",
|
||||
"components.searchpopup.recent_files": "Последние файлы",
|
||||
"components.public-link-security_expiration_removal_but_password": "Это делает её доступной для любого, кто знает пароль",
|
||||
"components.public-link-security_expiration_removal_confirm": "Удалить срок действия",
|
||||
"components.public-link-security_expiration_removal_no_password": "Это делает документ доступным для любого, у кого есть эта ссылка",
|
||||
"components.public-link-security_expiration_removal_title": "О удалении срока действия истекшей ссылки",
|
||||
"components.public-link-security_expiration_title": "Срок действия",
|
||||
"components.public-link-security_expired": "Срок действия",
|
||||
"components.public-link-security_field_confirm_edit": "Готово",
|
||||
"components.public-link-security_password": "Пароль",
|
||||
"components.public-link-security_password_copied": "Скопировать пароль в буфер",
|
||||
"components.public-link-security_password_removal_body": "Это делает документ доступным для любого, у кого есть эта ссылка",
|
||||
"components.public-link-security_password_removal_confirm": "Удалить пароль",
|
||||
"components.public-link-security_password_removal_title": "Предупреждение о удалении пароля",
|
||||
"components.searchpopup.header_title": "Поиск",
|
||||
"components.searchpopup.no_results_for": "Не найдено результатов для",
|
||||
"components.searchpopup.recent_files": "Последние файлы",
|
||||
"components.searchpopup.start_search": "Введите ключевые слова, чтобы начать поиск.",
|
||||
"scenes.apps.account.on_console": "Чтобы изменить глобальные настройки учетной записи, нажмите «Перейти к консоли».",
|
||||
"general.user.deactivated": "Пользователь больше не состоит в этой компании",
|
||||
"components.side_menu.trash": "Корзина",
|
||||
"components.side_menu.home": "Общий диск",
|
||||
"components.side_menu.shared_with_me": "Доступные мне",
|
||||
"components.side_menu.my_drive": "Мой диск",
|
||||
"components.side_menu.buttons.upload": "Загрузить",
|
||||
"components.searchpopup.try_new_search": "Искать еще раз",
|
||||
"components.select-users_search_users": "Поиск пользователей",
|
||||
"components.side_menu.buttons.create": "Создать",
|
||||
"components.side_menu.buttons.empty_trash": "Очистить козину",
|
||||
"components.header_path.shared_trash": "Корзина \"Общего диска\"",
|
||||
"components.header_path.my_trash": "Корзина \"Моего диска\"",
|
||||
"components.header_path.shared_with_me": "Поделено со мной",
|
||||
"scenes.app.drive.nothing": "Здесь ничего нет.",
|
||||
"scenes.app.drive.drag_and_drop": "Перенесите сюда файлы чтобы загрузить их или нажмите кнопку \"Добавить файл\"",
|
||||
"components.side_menu.buttons.upload": "Загрузить",
|
||||
"components.side_menu.home": "Общий диск",
|
||||
"components.side_menu.my_drive": "Мой диск",
|
||||
"components.side_menu.shared_with_me": "Доступные мне",
|
||||
"components.side_menu.trash": "Корзина",
|
||||
"components.upload.drop_files": "Перетащить файлы сюда",
|
||||
"components.user_picker.modal.result_add.manage": "Полный доспуп",
|
||||
"components.user_picker.modal.result_add.none": "Нет прав",
|
||||
"components.user_picker.modal.result_add.read": "Чтение",
|
||||
"components.user_picker.modal.result_add.remove": "Убрать доступ ",
|
||||
"components.user_picker.modal.result_add.write": "Запись",
|
||||
"components.user_picker.modal_results_count_none": "Результатов не найдено",
|
||||
"components.user_picker.modal_results_truncated": "Результата(ов) {{$1}} из {{$2}}...",
|
||||
"components.userlistmanager.no_users": "Нет пользователей.",
|
||||
"components.users_picker.add_me": "Добавить меня",
|
||||
"general.add": "Добавить",
|
||||
"general.back": "Назад",
|
||||
"general.cancel": "Отмена",
|
||||
"general.connexion_status.connected": "Вы в сети",
|
||||
"general.connexion_status.connecting": "Переподключение…",
|
||||
"general.connexion_status.disconnected": "Вы не в сети",
|
||||
"general.continue": "Продолжить",
|
||||
"general.help": "Помощь",
|
||||
"general.pause": "Пауза",
|
||||
"general.paused": "Пауза",
|
||||
"general.remove": "Удалить",
|
||||
"general.resume": "Продолжить",
|
||||
"general.send": "Отправить сообщение",
|
||||
"general.update": "Обновить",
|
||||
"general.user.anonymous": "Анонимный",
|
||||
"general.user.deactivated": "Пользователь больше не состоит в этой компании",
|
||||
"general.user.deleted": "Удаленная учетная запись",
|
||||
"general.user.role.company.admin": "Администратор компании",
|
||||
"general.user.role.company.guest": "Гость",
|
||||
"general.user.role.company.member": "Участник",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_message": "Вы достигли предела вашего места для хранения. Пожалуйста, удалите некоторые файлы, чтобы освободить больше места и получить доступ ко всем функциям Twake Drive.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_plans": "Наше решение теперь бесплатно для всех пользователей, но скоро будут доступны дополнительные планы.",
|
||||
"hooks.use-drive-actions.quota_limit_exceeded_title": "У вас закончилось место для хранения",
|
||||
"hooks.use-drive-actions.unable_create_file": "Невозможно создать новый файл.",
|
||||
"hooks.use-drive-actions.unable_download_file": "Невозможно скачать эти файлы.",
|
||||
"hooks.use-drive-actions.unable_load_file": "Невозможно загрузить эти файлы.",
|
||||
"hooks.use-drive-actions.unable_remove_file": "Невозможно удалить эти файлы.",
|
||||
"hooks.use-drive-actions.unable_restore_file": "Невозможно восстановить эти файлы.",
|
||||
"hooks.use-drive-actions.unable_update_file": "Невозможно обновить эти файлы.",
|
||||
"login.create_account": "Создать учетную запись",
|
||||
"login.login_error": "Ошибка при входе в систему",
|
||||
"molecules.download_banner.download_button": "Скачать настольное приложение",
|
||||
"molecules.download_banner.title": "Получите максимум от Tdrive, загрузите настольное приложение прямо сейчас",
|
||||
"scenes.app.channelsbar.currentuser.logout": "Выход",
|
||||
"scenes.app.channelsbar.currentuser.title": "Настройки аккаунта",
|
||||
"scenes.app.drive.add_doc": "Добавить файл или папку",
|
||||
"scenes.app.drive.folders": "Папки",
|
||||
"scenes.app.drive.used": "использовано в этой папке",
|
||||
"scenes.app.drive.documents": "Файлы",
|
||||
"scenes.app.drive.context_menu": "Еще",
|
||||
"components.disk_usage.of": "из",
|
||||
"components.disk_usage.used": "использовано",
|
||||
"components.disk_usage.in_trash": "в корзине",
|
||||
"components.create_modal.create_folder_or_doc": "Создать папку или файл",
|
||||
"components.create_modal.upload_folder_or_doc": "Загрузить документ или папку",
|
||||
"components.create_modal.create_folder": "Создать папку",
|
||||
"components.create_modal.upload_files": "Загрузить файл",
|
||||
"components.create_modal.upload_folders": "Загрузить папку",
|
||||
"components.create_modal.create_link": "Создать ссылку на файл",
|
||||
"components.create_folder_modal.hint": "Выберите имя для папки",
|
||||
"components.create_folder_modal.placeholder": "Имя папки",
|
||||
"components.create_link_modal.hint": "Имя ссылки",
|
||||
"components.create_link_modal.button": "Создать ссылку",
|
||||
"components.pending_file_list.estimation.end": "Закончится через",
|
||||
"components.pending_file_list.estimation.approximations": "Примерное время ожидания...",
|
||||
"components.item_context_menu.preview": "Просмотр",
|
||||
"components.item_context_menu.download": "Скачать",
|
||||
"components.item_context_menu.rename": "Переименовать",
|
||||
"components.item_context_menu.manage_access": "Настроить доступ",
|
||||
"components.item_context_menu.manage_access_to": "Настроить доступ",
|
||||
"components.item_context_menu.share": "Поделиться",
|
||||
"components.item_context_menu.copy_link": "Скопировать ссылку",
|
||||
"components.item_context_menu.copy_link.success": "Ссылка скопирована в буфер обмена",
|
||||
"components.item_context_menu.versions": "История изменений",
|
||||
"components.item_context_menu.move": "Переместить",
|
||||
"components.item_context_menu.move.modal_header": "Переместить",
|
||||
"components.item_context_menu.move_to_trash": "Удалить",
|
||||
"components.item_context_menu.delete": "Удалить",
|
||||
"components.item_context_menu.restore": "Restore",
|
||||
"components.item_context_menu.move_multiple": "Переместить все",
|
||||
"components.item_context_menu.move_multiple.modal_header": "Переместить выбранные елементы",
|
||||
"components.item_context_menu.download_multiple": "Скачать все",
|
||||
"components.item_context_menu.clear_selection": "Снять выделение",
|
||||
"components.item_context_menu.delete_multiple": "Удалить",
|
||||
"components.item_context_menu.to_trash_multiple": "Удалить",
|
||||
"components.item_context_menu.trash.empty": "Очистить корзину",
|
||||
"components.item_context_menu.add_documents": "Добавить документ в папку",
|
||||
"components.item_context_menu.download_folder": "Скачать папку",
|
||||
"components.item_context_menu.all": "Все",
|
||||
"components.item_context_menu.today": "Сегодня",
|
||||
"components.item_context_menu.last_week": "За неделю",
|
||||
"components.item_context_menu.last_month": "За месяц",
|
||||
"components.item_context_menu.open_new_window": "Открыть в новом окне",
|
||||
"scenes.app.shared_with_me.shared_with_me": "Доступные мне",
|
||||
"scenes.app.shared_with_me.file_type": "Тип файла",
|
||||
"scenes.app.shared_with_me.people": "Люди",
|
||||
"scenes.app.shared_with_me.last_modified": "Последнее изменение",
|
||||
"scenes.app.drive.documents": "Файлы",
|
||||
"scenes.app.drive.drag_and_drop": "Перенесите сюда файлы чтобы загрузить их или нажмите кнопку \"Добавить файл\"",
|
||||
"scenes.app.drive.folders": "Папки",
|
||||
"scenes.app.drive.nothing": "Здесь ничего нет.",
|
||||
"scenes.app.drive.used": "использовано в этой папке",
|
||||
"scenes.app.header.disconnected": "Соединение отсутствует",
|
||||
"scenes.app.header.disconnected.reload": "Перезагрузить",
|
||||
"scenes.app.mainview.create_account": "Создайте свою рабочую среду бесплатно в ",
|
||||
"scenes.app.mainview.quick_search_placeholder": "Быстрый поиск",
|
||||
"scenes.app.popup.adduser.adresses_message": "Пожалуйста, разделите адреса запятой или пробелом. Помните, что Tdrive может ограничить количество приглашений в зависимости от вашей подписки.",
|
||||
"scenes.app.popup.adduser.magiclinks.action_copy": "Копировать",
|
||||
"scenes.app.popup.adduser.magiclinks.action_generate": "Сгенерировать",
|
||||
"scenes.app.popup.adduser.magiclinks.copied_to_clipboard": "Успешно скопировано в буфер обмена",
|
||||
"scenes.app.popup.adduser.magiclinks.genrator_info": "Пригласительная ссылка для рабочей среды",
|
||||
"scenes.app.popup.adduser.magiclinks.new_link_generated": "Создана новая ссылка",
|
||||
"scenes.app.popup.adduserfromtdriveconsole.current_users_state": "{{$1}} адрес(а) электронной почты будет(ут) добавлен(ы)",
|
||||
"scenes.app.popup.sync_calendar": "Синхронизируйте свои календари.",
|
||||
"scenes.app.popup.userparameter.personnal_workspaces_title": "Ваши рабочие среды",
|
||||
"scenes.app.popup.workspaceparameter.edit_from_console": "См. в \"Консоли\"",
|
||||
"scenes.app.popup.workspaceparameter.pages.alert_impossible_removing": "Вы не можете покинуть рабочую среду, потому что вы последний администратор. Вы можете определить нового администратора или удалить/архивировать эту рабочую среду.",
|
||||
"scenes.app.shared_with_me.documents": "Файлы",
|
||||
"scenes.app.shared_with_me.edit": "Редактировать",
|
||||
"scenes.app.shared_with_me.file_type": "Тип файла",
|
||||
"scenes.app.shared_with_me.last_modified": "Последнее изменение",
|
||||
"scenes.app.shared_with_me.name": "Название",
|
||||
"scenes.app.shared_with_me.people": "Люди",
|
||||
"scenes.app.shared_with_me.shared_by": "Кто открыл доступ",
|
||||
"scenes.app.shared_with_me.shared_date": "Дата предоставления доступа",
|
||||
"scenes.app.shared_with_me.edit": "Редактировать",
|
||||
"ONLYOFFICE Word Document": "Создать документ",
|
||||
"ONLYOFFICE Excel Document": "Создать электронную таблицу",
|
||||
"ONLYOFFICE PowerPoint Document": "Создать презентацию"
|
||||
"scenes.app.shared_with_me.shared_with_me": "Доступные мне",
|
||||
"scenes.app.workspaces.components.skip": "Пропустить",
|
||||
"scenes.app.workspaces.create_company.company_name.placeholder": "Название компании",
|
||||
"scenes.app.workspaces.create_company.company_name.title_1": "Для начала,",
|
||||
"scenes.app.workspaces.create_company.company_name.title_2": "укажите название вашей компании.",
|
||||
"scenes.app.workspaces.create_company.default_workspace_name": "Главное",
|
||||
"scenes.app.workspaces.create_company.group_data": "Настроить новую группу",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity": "Основной вид деятельности",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.administration": "Управление",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.bank": "Банк / страхование",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.business_services": "Бизнес-услуги",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.chemistry": "Химия",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.construction_building": "Строительство / Строительные материалы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.education": "Образование",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.electronics_electricity_energy": "Электроника / Электричество / Энергетика",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.entertainment": "Развлечения",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.food": "Продукты питания",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.it_telecom": "ИТ / Телесвязь",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.machinery_automotive": "Оборудование / Автомобили",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.materials": "Материалы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.other": "Прочее",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.pharmaceutical_industry": "Фармацевтическая промышленность",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.printing_paper": "Полиграфия / Печать",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.publishing_communication_multimedia": "Издательство / Коммуникации / Мультимедиа",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.real_estate": "Недвижимое имущество",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.research": "Исследования",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.studies_and_advice": "Исследования и консалтинг",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.textile_clothing_shoes": "Текстиль / Одежда / Обувь",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.trade_commerce_distribution": "Торговля / Коммерция / Распределение",
|
||||
"scenes.app.workspaces.create_company.group_data.group_main_activity.transport_logistics": "Транспорт / Логистика",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size": "Размер группы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.1000_5000": "1000 - 4999 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.100_500": "100 - 499 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.10_50": "11 - 49 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.4_10": "4 - 10 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.5000_more": "Более 5000 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.500_1000": "500 - 999 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.50_100": "50 - 99 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_size.less_3": "Менее 4 пользователей",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type": "Тип группы",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.company": "Компания или отдел компании",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.other_group": "Прочее",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.public_organization": "Общественная организация",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.society_club_charity": "Общество, клуб или благотворительная организация",
|
||||
"scenes.app.workspaces.create_company.group_data.group_type.university_school": "Университет или школа",
|
||||
"scenes.app.workspaces.create_company.group_data.title": "Это не займет много времени: нам просто нужна статистическая информация.",
|
||||
"scenes.app.workspaces.create_company.importations.title_1": "Уже работаете с цифровыми инструментами? Импортируйте или интегрируйте свои инструменты прямо сейчас!",
|
||||
"scenes.app.workspaces.create_company.importations.title_2": "Не волнуйтесь, вы можете сделать это позже!",
|
||||
"scenes.app.workspaces.create_company.invitations.title": "Настройка рабочей среды.",
|
||||
"scenes.app.workspaces.create_company.invitations.title_2": "Добавьте членов своей команды.",
|
||||
"scenes.app.workspaces.create_company.title": "Создать свою компанию",
|
||||
"scenes.app.workspaces.welcome_page.add_new_email": "Добавить аккаунт электронной почты",
|
||||
"scenes.app.workspaces.welcome_page.add_secondary_emails": "Добавить еще один аккаунт электронной почты",
|
||||
"scenes.app.workspaces.welcome_page.new_email": "Добавить еще один аккаунт электронной почты",
|
||||
"scenes.apps.account.account.change_username": "Изменить имя пользователя.",
|
||||
"scenes.apps.account.account.description_main": "Ваш основной адрес - это тот, на который Tdrive отправляет уведомления. Прочие адреса позволяют автоматически приглашать вас в рабочие среды, которые их используют.",
|
||||
"scenes.apps.account.account.email_add": "Добавить новый аккаунт электронной почты",
|
||||
"scenes.apps.account.account.email_add_modal.confirm": "Подтвердить данную электронную почту",
|
||||
"scenes.apps.account.account.email_add_modal.invalid_code": "Данный код недействителен",
|
||||
"scenes.apps.account.account.emails": "Аккаунты электронной почты",
|
||||
"scenes.apps.account.account.emails.description": "Управляйте различными адресами электронной почты.",
|
||||
"scenes.apps.account.account.main_email": "Основной аккаунт электронной почты",
|
||||
"scenes.apps.account.account.make_main": "Сделать основным",
|
||||
"scenes.apps.account.account.menu_title": "Аккаунт",
|
||||
"scenes.apps.account.account.password": "Пароль",
|
||||
"scenes.apps.account.account.password.description": "Изменить пароль.",
|
||||
"scenes.apps.account.account.password_modal.bad_old_password": "Старый пароль введен неверно.",
|
||||
"scenes.apps.account.account.password_modal.bad_password": "Ваши пароли не совпадают или содержат недостаточно символов. Пожалуйста, введите пароль не менее чем из 8 символов.",
|
||||
"scenes.apps.account.account.password_modal.old_password": "Текущий пароль",
|
||||
"scenes.apps.account.account.password_modal.password": "Новый пароль",
|
||||
"scenes.apps.account.account.username": "Имя пользователя",
|
||||
"scenes.apps.account.identity": "Личность",
|
||||
"scenes.apps.account.identity.description": "Измените имя, фамилию и изображение профиля, видимые другими пользователям Tdrive.",
|
||||
"scenes.apps.account.languages.menu_title": "Язык",
|
||||
"scenes.apps.account.languages.text": "Сменить язык Tdrive.",
|
||||
"scenes.apps.account.on_console": "Чтобы изменить глобальные настройки учетной записи, нажмите «Перейти к консоли».",
|
||||
"scenes.apps.account.preference": "Предпочтения",
|
||||
"scenes.apps.account.thumbnail.max_weight": "Максимальный размер - 5 Мб",
|
||||
"scenes.apps.account.title": "Настройки аккаунта",
|
||||
"scenes.apps.drive.download_button": "Скачать",
|
||||
"scenes.apps.drive.viewer.edit_with_button": "Отредактировать с помощью {{$1}}",
|
||||
"scenes.apps.drive.viewer.open_with_button": "Открыть с помощью...",
|
||||
"scenes.apps.messages.message.save_button": "Сохранить",
|
||||
"scenes.apps.parameters.workspace_sections.members": "Участники",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite": "Пригласить нового участника",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_all": "Пригласить всех",
|
||||
"scenes.apps.parameters.workspace_sections.members.invite_btn": "Добавить участника",
|
||||
"scenes.client.main_view.main_header.search_input": "Поиск",
|
||||
"scenes.error_on_tdrive": "“Хьюстон, у нас проблема“",
|
||||
"scenes.help_us": "Если вы хотите помочь нам исправить эту ошибку, отправьте сообщение ниже: ",
|
||||
"scenes.join.create_the_company_button": "Создать компанию",
|
||||
"scenes.join.join_the_team_button": "Присоединиться к команде",
|
||||
"scenes.join.join_workspace_from_company": "Присоединяйтесь к {{$1}} с {{$2}}!",
|
||||
"scenes.join.loading": "Загрузка…",
|
||||
"scenes.join.login_first_button": "Войти или создать учетную запись",
|
||||
"scenes.join.tdrive_description": "Tdrive - это цифровая рабочая среда с открытым исходным кодом, созданная для повышения продуктивности вашей команды",
|
||||
"scenes.join.wrong_link_description": "Попросите человека, который пригласил вас присоединиться к этой компании, выслать новую ссылку или создайте собственную компанию",
|
||||
"scenes.join.wrong_link_title": "Эта ссылка больше не доступна",
|
||||
"scenes.login.create_account.email": "Электронная почта",
|
||||
"scenes.login.create_account.email_used": "Этот адрес электронной почты уже используется.",
|
||||
"scenes.login.create_account.fill_in_email": "Необходимо ввести верный адрес электронной почты",
|
||||
"scenes.login.create_account.fill_in_username": "Необходимо ввести имя пользователя",
|
||||
"scenes.login.create_account.password": "Пароль",
|
||||
"scenes.login.create_account.step_1_subtitle": "Все очень просто: нам понадобится кое-какая информация.",
|
||||
"scenes.login.create_account.step_3_mail_sent": "Мы отправили вам ссылку для активации по электронной почте.",
|
||||
"scenes.login.create_account.step_3_subtitle": "Последний шаг, мы должны убедиться, что вы не робот!",
|
||||
"scenes.login.create_account.title": "Создать новый аккаунт",
|
||||
"scenes.login.create_account.too_short_password": "Ваш пароль должен содержать не менее 8 символов.",
|
||||
"scenes.login.create_account.username": "Имя пользователя",
|
||||
"scenes.login.create_account.username_already_exist": "Это имя пользователя уже используется",
|
||||
"scenes.login.footer.branding": "Вы находитесь на частном сервере, принадлежащем {{$1}} ({{$2}}). ",
|
||||
"scenes.login.footer.go_to_tdrive": "Перейти к twake.app",
|
||||
"scenes.login.home.create_account": "Создать аккаунт",
|
||||
"scenes.login.home.email": "Почта",
|
||||
"scenes.login.home.login_btn": "Войти",
|
||||
"scenes.login.home.password": "Пароль",
|
||||
"scenes.login.home.subtitle": "Добро пожаловать",
|
||||
"scenes.login.home.title": "Вход в Tdrive",
|
||||
"scenes.login.home.unable_to_connect": "Недействительные идентификационные данные",
|
||||
"scenes.no_panic": "Без паники! Просто перезагрузите данную страницу, чтобы починить Tdrive.",
|
||||
"scenes.tell_us": "Пожалуйста, расскажите нам, что вы делали в :",
|
||||
"services.console_services.toaster.add_email_error_message": "Ошибка при добавлении {{$1}}",
|
||||
"services.console_services.toaster.add_emails_error": "Ошибка при добавлении адреса(ов) электронной почты",
|
||||
"services.console_services.toaster.success_invite_emails": "Успешно добавлен(о) {{$1}} пользователь(ей)",
|
||||
"services.console_services.toaster.success_verify_email": "Ссылка для подтверждения была отправлена по вашему адресу электронной почты",
|
||||
"services.file_upload_service.toaster.upload_file_error": "Ошибка загрузки файла: {{$1}}",
|
||||
"services.user.notification_parameters_update_alert": "Настройки уведомлений были обновлены.",
|
||||
"services.user.update_password_alert": "Ваш пароль был обновлен."
|
||||
}
|
||||
@@ -303,7 +303,7 @@ class FileUploadService {
|
||||
return new Resumable({
|
||||
target,
|
||||
headers,
|
||||
chunkSize: chunkSize || 50000000,
|
||||
chunkSize: chunkSize || 5000000,
|
||||
testChunks: testChunks || false,
|
||||
simultaneousUploads: simultaneousUploads || 5,
|
||||
maxChunkRetries: maxChunkRetries || 2,
|
||||
|
||||
@@ -402,7 +402,7 @@ export default memo(
|
||||
sortLabel.order === 'asc' ? 'transform rotate-180' : ''
|
||||
}`}
|
||||
/>
|
||||
<span>By {sortLabel.by}</span>
|
||||
<span>{Languages.t('components.item_context_menu.sorting.selected.' + sortLabel.by)}</span>
|
||||
<ChevronDownIcon className="h-4 w-4 ml-2 -mr-1" />
|
||||
</Button>
|
||||
</Menu>
|
||||
|
||||
@@ -519,7 +519,7 @@ export const useOnBuildSortContextMenu = () => {
|
||||
const menuItems = [
|
||||
{
|
||||
type: 'menu',
|
||||
text: 'Date',
|
||||
text: Languages.t('components.item_context_menu.sorting.by.date'),
|
||||
icon: sortItem.by === 'date' ? 'check' : 'sort-check',
|
||||
onClick: () => {
|
||||
// keep the old value for sortItem and change the by value
|
||||
@@ -534,7 +534,7 @@ export const useOnBuildSortContextMenu = () => {
|
||||
},
|
||||
{
|
||||
type: 'menu',
|
||||
text: 'Name',
|
||||
text: Languages.t('components.item_context_menu.sorting.by.name'),
|
||||
icon: sortItem.by === 'name' ? 'check' : 'sort-check',
|
||||
onClick: () => {
|
||||
setSortItem(prevSortItem => {
|
||||
@@ -548,7 +548,7 @@ export const useOnBuildSortContextMenu = () => {
|
||||
},
|
||||
{
|
||||
type: 'menu',
|
||||
text: 'Size',
|
||||
text: Languages.t('components.item_context_menu.sorting.by.size'),
|
||||
icon: sortItem.by === 'size' ? 'check' : 'sort-check',
|
||||
onClick: () => {
|
||||
setSortItem(prevSortItem => {
|
||||
@@ -563,7 +563,7 @@ export const useOnBuildSortContextMenu = () => {
|
||||
{type:"separator"},
|
||||
{
|
||||
type: 'menu',
|
||||
text: 'Ascending',
|
||||
text: Languages.t('components.item_context_menu.sorting.order.asc'),
|
||||
icon: sortItem.order === 'asc' ? 'check' : 'sort-check',
|
||||
onClick: () => {
|
||||
setSortItem(prevSortItem => {
|
||||
@@ -577,7 +577,7 @@ export const useOnBuildSortContextMenu = () => {
|
||||
},
|
||||
{
|
||||
type: 'menu',
|
||||
text: 'Descending',
|
||||
text: Languages.t('components.item_context_menu.sorting.order.desc'),
|
||||
icon: sortItem.order === 'desc' ? 'check' : 'sort-check',
|
||||
onClick: () => {
|
||||
setSortItem(prevSortItem => {
|
||||
|
||||
Reference in New Issue
Block a user