diff options
author | Dave Long <dave@longwaveconsulting.com> | 2023-07-23 17:33:54 +0100 |
---|---|---|
committer | Dave Long <dave@longwaveconsulting.com> | 2023-07-23 17:33:54 +0100 |
commit | 224c67343b51c638a43ae977909adce76c71ee3b (patch) | |
tree | e0cd88a0db14db67dc47e903166c08e5c72365ff /core/misc | |
parent | 1bb050cad7a62786270a92ccb658348b66466a64 (diff) | |
download | drupal-224c67343b51c638a43ae977909adce76c71ee3b.tar.gz drupal-224c67343b51c638a43ae977909adce76c71ee3b.zip |
Issue #2921133 by quietone, VladimirAus, xjm, ankithashetty, longwave, Prem Suthar, smustgrave, benjifisher, AaronMcHale: Remove "Please" from the codebase
Diffstat (limited to 'core/misc')
-rw-r--r-- | core/misc/ajax.js | 4 | ||||
-rw-r--r-- | core/misc/drupal.js | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/core/misc/ajax.js b/core/misc/ajax.js index 8544f6a1049e..307fd811632f 100644 --- a/core/misc/ajax.js +++ b/core/misc/ajax.js @@ -362,7 +362,7 @@ * @prop {string} [progress.type='throbber'] * Type of progress element, core provides `'bar'`, `'throbber'` and * `'fullscreen'`. - * @prop {string} [progress.message=Drupal.t('Please wait...')] + * @prop {string} [progress.message=Drupal.t('Processing...')] * Custom message to be used with the bar indicator. * @prop {object} [submit] * Extra data to be sent with the Ajax request. @@ -407,7 +407,7 @@ method: 'replaceWith', progress: { type: 'throbber', - message: Drupal.t('Please wait...'), + message: Drupal.t('Processing...'), }, submit: { js: true, diff --git a/core/misc/drupal.js b/core/misc/drupal.js index 5c13da179d45..7d0f3b12c797 100644 --- a/core/misc/drupal.js +++ b/core/misc/drupal.js @@ -486,13 +486,13 @@ window.Drupal = { behaviors: {}, locale: {} }; * @param {number} count * The item count to display. * @param {string} singular - * The string for the singular case. Please make sure it is clear this is - * singular, to ease translation (e.g. use "1 new comment" instead of "1 - * new"). Do not use @count in the singular string. + * The string for the singular case. Make sure it is clear this is singular, + * to ease translation (e.g. use "1 new comment" instead of "1 new"). Do not + * use @count in the singular string. * @param {string} plural - * The string for the plural case. Please make sure it is clear this is - * plural, to ease translation. Use @count in place of the item count, as in - * "@count new comments". + * The string for the plural case. Make sure it is clear this is plural, to + * ease translation. Use @count in place of the item count, as in "@count + * new comments". * @param {object} [args] * An object of replacements pairs to make after translation. Incidences * of any key in this array are replaced with the corresponding value. |