better strings on actions
This commit is contained in:
parent
41cb4ebd56
commit
32fdea3de1
|
@ -108,22 +108,22 @@ export default class Message extends React.Component {
|
||||||
this.EDIT_INDEX = this.options.length - 1;
|
this.EDIT_INDEX = this.options.length - 1;
|
||||||
}
|
}
|
||||||
// Permalink
|
// Permalink
|
||||||
this.options.push('Permalink');
|
this.options.push('Copy Permalink');
|
||||||
this.PERMALINK_INDEX = this.options.length - 1;
|
this.PERMALINK_INDEX = this.options.length - 1;
|
||||||
// Copy
|
// Copy
|
||||||
this.options.push('Copy');
|
this.options.push('Copy Message');
|
||||||
this.COPY_INDEX = this.options.length - 1;
|
this.COPY_INDEX = this.options.length - 1;
|
||||||
// Quote
|
// Quote
|
||||||
this.options.push('Quote');
|
this.options.push('Quote');
|
||||||
this.QUOTE_INDEX = this.options.length - 1;
|
this.QUOTE_INDEX = this.options.length - 1;
|
||||||
// Star
|
// Star
|
||||||
if (this.props.Message_AllowStarring) {
|
if (this.props.Message_AllowStarring) {
|
||||||
this.options.push('Star');
|
this.options.push('Star Message');
|
||||||
this.STAR_INDEX = this.options.length - 1;
|
this.STAR_INDEX = this.options.length - 1;
|
||||||
}
|
}
|
||||||
// Pin
|
// Pin
|
||||||
if (this.props.Message_AllowPinning) {
|
if (this.props.Message_AllowPinning) {
|
||||||
this.options.push('Pin');
|
this.options.push('Pin Message');
|
||||||
this.PIN_INDEX = this.options.length - 1;
|
this.PIN_INDEX = this.options.length - 1;
|
||||||
}
|
}
|
||||||
// Delete
|
// Delete
|
||||||
|
|
Loading…
Reference in New Issue