-
-
Notifications
You must be signed in to change notification settings - Fork 531
Changed "remove" to "delete", "update" to "edit" in lexicons #15155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This made me wonder: what's the difference between "remove" and "delete"?
|
In MODX, with the exception of Resources, everything is permanently deleted, it seems to me. Therefore, the term "Delete" is more applicable (although it is better to use it for resources too, so that there is no confusion). |
core/lexicon/en/default.inc.php
Outdated
$_lang['empty_recycle_bin'] = 'Delete Deleted Resources'; | ||
$_lang['empty_recycle_bin_confirm'] = 'Are you sure you want to completely and permanently delete all deleted Resources? This is irreversible.'; | ||
$_lang['empty_recycle_bin_empty'] = 'There are no deleted Resources to delete.'; | ||
$_lang['empty_recycle_bin_emptied'] = 'All deleted Resources have been permanently deleted.'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
English isn't my first language but I would use "Erase" instead of "Delete" when talking about deleting/removing Deleted Resources
.
A native English speaker's view on this would be great!
…#15155] Merge remote-tracking branch 'upstream/pr/15155' into 3.x * upstream/pr/15155: Changed "new" to "create" in lexicons Changed "update" to "edit" in lexicons Changed "remove" to "delete" in lexicons
Merge remote-tracking branch 'upstream/pr/15447' into 3.x
What does it do?
Changed "remove" to "delete", "update" to "edit" in lexicons. PR only changes lexicons entries.
p.s. In the future, it is necessary to simplify the lexicons entries (key: value) and create a standard for writing them.
Often there are duplicates:
https://github.com/modxcms/revolution/blob/3.x/core/lexicon/en/snippet.inc.php#L20
https://github.com/modxcms/revolution/blob/3.x/core/lexicon/en/snippet.inc.php#L28
Why is it needed?
For unification in the interface.
Related issue(s)/PR(s)
#13554