Improve strings (#488)
* Update SpaceOptions.jsx * Update RoomOptions.jsx * Update RoomProfile.jsx * Update ProfileEditor.jsx * Update RoomSettings.jsx * Update SpaceSettings.jsx * Update Message.jsx * Update DeviceManage.jsx * Update Message.jsx * Update RoomProfile.jsx
This commit is contained in:
parent
ba0de8800a
commit
8b3bd38bad
8 changed files with 8 additions and 8 deletions
|
@ -547,7 +547,7 @@ const MessageOptions = React.memo(({
|
||||||
variant="danger"
|
variant="danger"
|
||||||
iconSrc={BinIC}
|
iconSrc={BinIC}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (window.confirm('Are you sure you want to delete this event')) {
|
if (window.confirm('Are you sure that you want to delete this event?')) {
|
||||||
redactEvent(roomId, mEvent.getId());
|
redactEvent(roomId, mEvent.getId());
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -30,7 +30,7 @@ function RoomOptions({ roomId, afterOptionSelect }) {
|
||||||
afterOptionSelect();
|
afterOptionSelect();
|
||||||
};
|
};
|
||||||
const handleLeaveClick = () => {
|
const handleLeaveClick = () => {
|
||||||
if (confirm('Are you really want to leave this room?')) {
|
if (confirm('Are you sure that you want to leave this room?')) {
|
||||||
roomActions.leave(roomId);
|
roomActions.leave(roomId);
|
||||||
afterOptionSelect();
|
afterOptionSelect();
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@ function RoomProfile({ roomId }) {
|
||||||
|
|
||||||
const handleAvatarUpload = async (url) => {
|
const handleAvatarUpload = async (url) => {
|
||||||
if (url === null) {
|
if (url === null) {
|
||||||
if (confirm('Are you sure you want to remove avatar?')) {
|
if (confirm('Are you sure that you want to remove room avatar?')) {
|
||||||
await mx.sendStateEvent(roomId, 'm.room.avatar', { url }, '');
|
await mx.sendStateEvent(roomId, 'm.room.avatar', { url }, '');
|
||||||
}
|
}
|
||||||
} else await mx.sendStateEvent(roomId, 'm.room.avatar', { url }, '');
|
} else await mx.sendStateEvent(roomId, 'm.room.avatar', { url }, '');
|
||||||
|
|
|
@ -55,7 +55,7 @@ function SpaceOptions({ roomId, afterOptionSelect }) {
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleLeaveClick = () => {
|
const handleLeaveClick = () => {
|
||||||
if (confirm('Are you really want to leave this space?')) {
|
if (confirm('Are you sure that you want to leave this space?')) {
|
||||||
leave(roomId);
|
leave(roomId);
|
||||||
afterOptionSelect();
|
afterOptionSelect();
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ function ProfileEditor({ userId }) {
|
||||||
|
|
||||||
const handleAvatarUpload = (url) => {
|
const handleAvatarUpload = (url) => {
|
||||||
if (url === null) {
|
if (url === null) {
|
||||||
if (confirm('Are you sure you want to remove avatar?')) {
|
if (confirm('Are you sure that you want to remove avatar?')) {
|
||||||
mx.setAvatarUrl('');
|
mx.setAvatarUrl('');
|
||||||
setAvatarSrc(null);
|
setAvatarSrc(null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,7 +86,7 @@ function GeneralSettings({ roomId }) {
|
||||||
<MenuItem
|
<MenuItem
|
||||||
variant="danger"
|
variant="danger"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (confirm('Are you really want to leave this room?')) {
|
if (confirm('Are you sure that you want to leave this room?')) {
|
||||||
roomActions.leave(roomId);
|
roomActions.leave(roomId);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -107,7 +107,7 @@ function DeviceManage() {
|
||||||
|
|
||||||
const handleRemove = async (device, auth = undefined) => {
|
const handleRemove = async (device, auth = undefined) => {
|
||||||
if (auth === undefined
|
if (auth === undefined
|
||||||
? window.confirm(`You are about to logout "${device.display_name}" session?`)
|
? window.confirm(`You are about to logout "${device.display_name}" session.`)
|
||||||
: true
|
: true
|
||||||
) {
|
) {
|
||||||
addToProcessing(device);
|
addToProcessing(device);
|
||||||
|
|
|
@ -90,7 +90,7 @@ function GeneralSettings({ roomId }) {
|
||||||
<MenuItem
|
<MenuItem
|
||||||
variant="danger"
|
variant="danger"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (confirm('Are you really want to leave this space?')) {
|
if (confirm('Are you sure that you want to leave this space?')) {
|
||||||
leave(roomId);
|
leave(roomId);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in a new issue