diff options
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. |