We are currently in the process of bringing this to 100% working functionality. Any help would be greatly appreciated. Find out more in the Community Portal.
System messages
Jump to navigation
Jump to search
This is a list of system messages available in the MediaWiki namespace.
Please visit MediaWiki Localisation and translatewiki.net if you wish to contribute to the generic MediaWiki localisation.
| Name | Default message text |
|---|---|
| Current message text | |
| changeemail-password (talk) (Translate) | Your {{SITENAME}} password: |
| changeemail-submit (talk) (Translate) | Change email |
| changeemail-summary (talk) (Translate) | |
| changeemail-throttled (talk) (Translate) | You have made too many login attempts. Please wait $1 before trying again. |
| changepassword (talk) (Translate) | Change password |
| changepassword-success (talk) (Translate) | Your password has been changed! |
| changepassword-summary (talk) (Translate) | |
| changepassword-throttled (talk) (Translate) | You have made too many recent login attempts. Please wait $1 before trying again. |
| checkbox-all (talk) (Translate) | All |
| checkbox-invert (talk) (Translate) | Invert |
| checkbox-none (talk) (Translate) | None |
| checkbox-select (talk) (Translate) | Select: $1 |
| cirrusesarch-file-numeric-feature-multi-argument-w-sign (talk) (Translate) | The search term '$1' doesn't allow providing multiple arguments and a sign with '$2'. |
| cirrussearch-article-words (talk) (Translate) | Words in all content pages |
| cirrussearch-articletopic-invalid-topic (talk) (Translate) | Unrecognized topic {{PLURAL:$2|name|names}} for the <kbd>articletopic:</kbd> keyword: $1 |
| cirrussearch-autoselect-profile (talk) (Translate) | Let the search engine decide on the best profile to use. |
| cirrussearch-backend-error (talk) (Translate) | We could not complete your search due to a temporary problem. Please try again later. |
| cirrussearch-boost-templates (talk) (Translate) | #<!-- leave this line exactly as it is --> <pre> # If a page contains one of these templates then its search score is multiplied by the configured percentage. # Changes to this take effect immediately. # Syntax is as follows: # * Everything from a "#" character to the end of the line is a comment. # * Every non-blank line is the exact template name to boost, namespace, case and everything, followed by a "|" character followed by a number followed by a "%" character. # Examples of good lines: # Template:Good|150% # Template:Very Very Good|300% # Template:Bad|50% # Examples of non-working lines: # Template:Foo|150.234234% <-- no decimal points allowed! # Foo|150% <--- technically works, but for transclusions of the Foo page from the main namespace # You can test configuration changes by performing a query prefixed with boost-templates:"XX" where XX is all of the templates you want to boost separated by spaces instead of line breaks. # Queries that specify boost-templates:"XX" ignore the contents of this field. #</pre> <!-- leave this line exactly as it is --> |
| cirrussearch-completion-profile-classic (talk) (Translate) | Classic prefix, few punctuation characters and some diacritics removed. |
| cirrussearch-completion-profile-classic-pref-desc (talk) (Translate) | No typo correction. Matches the beginning of titles. |
| cirrussearch-completion-profile-classic-pref-name (talk) (Translate) | Classic prefix search |
| cirrussearch-completion-profile-fast-fuzzy (talk) (Translate) | Experimental fuzzy profile (may be removed at any time) |
| cirrussearch-completion-profile-fuzzy (talk) (Translate) | Similar to normal with typo correction (two typos supported). |
| cirrussearch-completion-profile-fuzzy-pref-desc (talk) (Translate) | Corrects up to two typos. Removes redirects that are very similar to the main title. |
| cirrussearch-completion-profile-fuzzy-pref-name (talk) (Translate) | Default (recommended) |
| cirrussearch-completion-profile-fuzzy-subphrases (talk) (Translate) | Similar to normal with typo correction (two typos supported). It will match also subphrases (can be subphrases or subpages depending on internal wiki configuration). |
| cirrussearch-completion-profile-fuzzy-subphrases-pref-desc (talk) (Translate) | Corrects up to two typos. Resolves close redirects. Matches subphrase in titles. |
| cirrussearch-completion-profile-fuzzy-subphrases-pref-name (talk) (Translate) | Subphrase matching (recommended for longer page titles) |
| cirrussearch-completion-profile-normal (talk) (Translate) | Few punctuation characters, some diacritics and stopwords removed. |
| cirrussearch-completion-profile-normal-pref-desc (talk) (Translate) | No typo correction. Resolves close redirects. |
| cirrussearch-completion-profile-normal-pref-name (talk) (Translate) | Redirect mode (advanced) |
| cirrussearch-completion-profile-normal-subphrases (talk) (Translate) | Few punctuation characters, some diacritics and stopwords removed. It will match also subphrases (can be subphrases or subpages depending on internal wiki configuration). |
| cirrussearch-completion-profile-normal-subphrases-pref-desc (talk) (Translate) | No typo correction. Resolves close redirects. Matches subphrase in titles. |
| cirrussearch-completion-profile-normal-subphrases-pref-name (talk) (Translate) | Redirect mode with subphrase matching (advanced) |
| cirrussearch-completion-profile-strict (talk) (Translate) | Strict profile with few punctuation characters removed but diacritics and stress marks are kept. |
| cirrussearch-completion-profile-strict-pref-desc (talk) (Translate) | No typo correction. No accent folding. Strict matching. |
| cirrussearch-completion-profile-strict-pref-name (talk) (Translate) | Strict mode (advanced) |
| cirrussearch-desc (talk) (Translate) | Elasticsearch-powered search for MediaWiki |
| cirrussearch-didyoumean-settings (talk) (Translate) | #<!-- leave this line exactly as it is --> <pre> # This message lets you configure the settings of the "Did you mean" suggestions. # See also https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-phrase.html # Changes to this take effect immediately. # The syntax is as follows: # * Everything from a "#" character to the end of the line is a comment. # * Every non-blank line is the setting name followed by a ":" character followed by the setting value # The settings are : # * max_errors (integer): the maximum number of terms that will be considered misspelled in order to be corrected. 1 or 2. # * confidence (float): The confidence level defines a factor applied to the input phrases score which is used as a threshold for other suggestion candidates. Only candidates that score higher than the threshold will be included in the result. For instance a confidence level of 1.0 will only return suggestions that score higher than the input phrase. If set to 0.0 the best candidate are returned. # * min_doc_freq (float 0 to 1): The minimal threshold in number of documents a suggestion should appear in. # High frequency terms are generally "stop words". # * max_term_freq (float 0 to 1): The maximum threshold in number of documents in which a term can exist in order to be included. # * prefix_length (integer): The minimal number of prefix characters that must match a term in order to be a suggestion. # * suggest_mode (missing, popular, always): The suggest mode controls the way suggestions are included. # Examples of good lines: # max_errors:2 # confidence:2.0 # max_term_freq:0.5 # min_doc_freq:0.01 # prefix_length:2 # suggest_mode:always # # </pre> <!-- leave this line exactly as it is --> |
| cirrussearch-explore-similar-categories (talk) (Translate) | Categories |
| cirrussearch-explore-similar-categories-none (talk) (Translate) | No categories available |
| cirrussearch-explore-similar-languages (talk) (Translate) | Languages |
| cirrussearch-explore-similar-languages-none (talk) (Translate) | Not available in other languages |
| cirrussearch-explore-similar-related (talk) (Translate) | Related |
| cirrussearch-explore-similar-related-none (talk) (Translate) | No related pages available |
| cirrussearch-feature-deepcat-endpoint (talk) (Translate) | $wgCirrusSearchCategoryEndpoint should be set to a valid SPARQL endpoint to use deep category search. |
| cirrussearch-feature-deepcat-exception (talk) (Translate) | Deep category search SPARQL query failed |
| cirrussearch-feature-deepcat-invalid-title (talk) (Translate) | The provided category is invalid. |
| cirrussearch-feature-deepcat-toomany (talk) (Translate) | Deep category query returned too many categories |
| cirrussearch-feature-not-available (talk) (Translate) | The search keyword '$1' is not enabled on this wiki. |