mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
Remove technical error from echo-api-failure
Bug: T129764 Change-Id: Ia8779ff90b71c1c8b4df5b28fd61bfb891533b06
This commit is contained in:
parent
35f1388e7f
commit
194b75cfed
|
@ -105,7 +105,7 @@
|
|||
"echo-popup-footer-beta-invitation": "<strong>Get notifications from other wikis here</strong>. [$2 $1]",
|
||||
"echo-popup-footer-beta-invitation-link": "Try the \"{{int:echo-pref-beta-feature-cross-wiki-message}}\" beta feature.",
|
||||
"echo-quotation-marks": "\"$1\"",
|
||||
"echo-api-failure": "Failed to fetch notifications. (Error: $1)",
|
||||
"echo-api-failure": "Failed to fetch notifications.",
|
||||
"echo-api-failure-cross-wiki": "Access to the remote domain was denied.",
|
||||
"echo-notification-placeholder": "There are no notifications.",
|
||||
"echo-notification-loginrequired": "You must login to see your notifications.",
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
"echo-popup-footer-beta-invitation": "Text inviting the user to enable the cross-wiki notifications beta feature, displayed at the bottom of the notifications popup.\n\nParameters:\n* $1 - Text of the link ({{msg-mw|echo-popup-footer-beta-invitation-link}}).\n* $2 - URL of the link (beta features section of Special:Preferences).",
|
||||
"echo-popup-footer-beta-invitation-link": "Text for the link in {{msg-mw|echo-popup-footer-beta-invitation}}.",
|
||||
"echo-quotation-marks": "Unused at this time.\n\n{{optional}}\nPuts the edit summary in quotation marks. Only translate if different than English.\n\nParameters:\n* $1 - ...",
|
||||
"echo-api-failure": "Label for the text that notes an error in retrieving notifications for the Echo popup.\n$1 - The api error code.",
|
||||
"echo-api-failure": "Label for the text that notes an error in retrieving notifications for the Echo popup.",
|
||||
"echo-api-failure-cross-wiki": "Label for the api failure text for a failure to fetch cross-wiki notifications, but the remote server is not granted access.",
|
||||
"echo-notification-placeholder": "Label for the text that appears if there are no notifications in the Echo popup.",
|
||||
"echo-notification-loginrequired": "Message that displays when an anonymous user attempts to view notifications and gets redirect to the login page.",
|
||||
|
|
|
@ -277,7 +277,7 @@
|
|||
);
|
||||
} else {
|
||||
// General error
|
||||
widget.showErrorMessage( mw.msg( 'echo-api-failure', result.errInfo ) );
|
||||
widget.showErrorMessage( mw.msg( 'echo-api-failure' ) );
|
||||
}
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue