1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

Fix translation (#6625)

* update translation

* change text
This commit is contained in:
Michael An
2024-08-23 17:09:56 +08:00
committed by GitHub
parent 6b49bb9175
commit 645099a405
87 changed files with 8621 additions and 7250 deletions

View File

@@ -78,7 +78,7 @@ class MoveDirent extends React.Component {
});
if (isChildPath) {
message = gettext('Can not move directory %(src)s to its subdirectory %(des)s');
message = gettext('Can not move folder %(src)s to its subfolder %(des)s');
message = message.replace('%(src)s', moveDirentPath);
message = message.replace('%(des)s', selectedPath);
this.setState({ errMessage: message });
@@ -114,7 +114,7 @@ class MoveDirent extends React.Component {
// copy the dirent to it's child. eg: A/B -> A/B/C
if (selectedPath && selectedPath.length > direntPath.length && selectedPath.indexOf(direntPath) > -1) {
message = gettext('Can not move directory %(src)s to its subdirectory %(des)s');
message = gettext('Can not move folder %(src)s to its subfolder %(des)s');
message = message.replace('%(src)s', direntPath);
message = message.replace('%(des)s', selectedPath);
this.setState({ errMessage: message });