<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.rvlt.gg/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AImageAnnotatorConfig.js</id>
	<title>MediaWiki:ImageAnnotatorConfig.js - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.rvlt.gg/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AImageAnnotatorConfig.js"/>
	<link rel="alternate" type="text/html" href="https://wiki.rvlt.gg/index.php?title=MediaWiki:ImageAnnotatorConfig.js&amp;action=history"/>
	<updated>2026-05-05T10:46:11Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://wiki.rvlt.gg/index.php?title=MediaWiki:ImageAnnotatorConfig.js&amp;diff=354&amp;oldid=prev</id>
		<title>Insert: Created page with &quot;// &lt;source lang=&quot;javascript&quot;&gt;   /*   Site-wide configurations and start of the ImageAnnotator gadget. Split into a   separate file for three reasons:   1. It separates the configuration from the core code, while still   2. making it impossible for someone else (e.g. a malicious user) to override these      defaults, and   3. makes configuration changes available quickly: clients cache this file for four hours.     Author: User:Lupo, September 2009   License: Quadrupl...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.rvlt.gg/index.php?title=MediaWiki:ImageAnnotatorConfig.js&amp;diff=354&amp;oldid=prev"/>
		<updated>2023-01-06T18:16:40Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;// &amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;   /*   Site-wide configurations and start of the ImageAnnotator gadget. Split into a   separate file for three reasons:   1. It separates the configuration from the core code, while still   2. making it impossible for someone else (e.g. a malicious user) to override these      defaults, and   3. makes configuration changes available quickly: clients cache this file for four hours.     Author: &lt;a href=&quot;/index.php?title=User:Lupo&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;User:Lupo (page does not exist)&quot;&gt;User:Lupo&lt;/a&gt;, September 2009   License: Quadrupl...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Páàjì titun&lt;/b&gt;&lt;/p&gt;&lt;div&gt;// &amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
/*&lt;br /&gt;
  Site-wide configurations and start of the ImageAnnotator gadget. Split into a&lt;br /&gt;
  separate file for three reasons:&lt;br /&gt;
  1. It separates the configuration from the core code, while still&lt;br /&gt;
  2. making it impossible for someone else (e.g. a malicious user) to override these&lt;br /&gt;
     defaults, and&lt;br /&gt;
  3. makes configuration changes available quickly: clients cache this file for four hours.&lt;br /&gt;
 &lt;br /&gt;
  Author: [[User:Lupo]], September 2009&lt;br /&gt;
  License: Quadruple licensed GFDL, GPL, LGPL and Creative Commons Attribution 3.0 (CC-BY-3.0)&lt;br /&gt;
 &lt;br /&gt;
  Choose whichever license of these you like best :-)&lt;br /&gt;
 &lt;br /&gt;
  See https://commons.wikimedia.org/wiki/Help:Gadget-ImageAnnotator for documentation.&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
(function () {&lt;br /&gt;
&lt;br /&gt;
  // Global settings. Edit these to configure ImageAnnotator for your Wiki. Note: these configurations&lt;br /&gt;
  // are here to prevent them to be overwritten by a user in his or her user scripts. BE EXTRA CAREFUL&lt;br /&gt;
  // IF YOU CHANGE THESE SETTINGS WHEN ImageAnnotator IS ALREADY DEPLOYED! Syntax or other errors here&lt;br /&gt;
  // may break ImageAnnotator for everyone!&lt;br /&gt;
  var config = {&lt;br /&gt;
&lt;br /&gt;
    // By default, ImageAnnotator is enabled in all namespaces (except &amp;quot;Special&amp;quot;, -1) for everyone,&lt;br /&gt;
    // except on the project&amp;#039;s main page.&lt;br /&gt;
    // Here, you can define a list of namespaces where it is additionally disabled.&lt;br /&gt;
    viewingEnabled : function () {&lt;br /&gt;
      var action = mw.config.get(&amp;#039;wgAction&amp;#039;);&lt;br /&gt;
      return mw.config.get(&amp;#039;wgNamespaceNumber&amp;#039;) &amp;gt;= 0&lt;br /&gt;
             &amp;amp;&amp;amp; !mw.config.get(&amp;#039;wgIsMainPage&amp;#039;)&lt;br /&gt;
             &amp;amp;&amp;amp; (action == &amp;#039;view&amp;#039; || action == &amp;#039;purge&amp;#039; || action == &amp;#039;submit&amp;#039;); &lt;br /&gt;
    },&lt;br /&gt;
    // For instance, to disable ImageAnnotator on all talk pages, replace the function body above by&lt;br /&gt;
    //     return (wgNamespaceNumber &amp;amp; 1) == 0;&lt;br /&gt;
    // Or, to disable it in the category namespace and on article talk pages, you could use&lt;br /&gt;
    //     return (wgNamespaceNumber != 14) &amp;amp;&amp;amp; (wgNamespaceNumber != 1);&lt;br /&gt;
    // To enable viewing only on file description pages and on pages in the project namespace:&lt;br /&gt;
    //     return (wgNamespaceNumber == 6) || (wgNamespaceNumber == 4);&lt;br /&gt;
    // To enable viewing only for logged-in users, use&lt;br /&gt;
    //     return wgUserName !== null;&lt;br /&gt;
    // To switch off viewing of notes on the project&amp;#039;s main page, use&lt;br /&gt;
    //     return !wgIsMainPage;&lt;br /&gt;
&lt;br /&gt;
    // By default, editing is enabled for anyone on the file description page or the page that contains&lt;br /&gt;
    // the substitution of template ImageWithNotes. Here, you can restrict editing even more, for&lt;br /&gt;
    // instance by allowing only autoconfirmed users to edit notes through ImageAnnotator. Note that&lt;br /&gt;
    // editing is only allowed if viewing is also allowed.&lt;br /&gt;
    editingEnabled : function ()&lt;br /&gt;
    {&lt;br /&gt;
      var action = mw.config.get(&amp;#039;wgAction&amp;#039;);&lt;br /&gt;
      var nsNum  = mw.config.get(&amp;#039;wgNamespaceNumber&amp;#039;);&lt;br /&gt;
      var pageView = (action == &amp;#039;view&amp;#039; || action == &amp;#039;purge&amp;#039;)&lt;br /&gt;
                     &amp;amp;&amp;amp; location.href.search(/[?&amp;amp;](diff|oldid)=/) &amp;lt; 0;&lt;br /&gt;
      if (!pageView) return false;&lt;br /&gt;
      if (   (nsNum == 2 || nsNum == 3)&lt;br /&gt;
          &amp;amp;&amp;amp; mw.config.get(&amp;#039;wgUserName&amp;#039;) &amp;amp;&amp;amp; mw.config.get(&amp;#039;wgTitle&amp;#039;).replace(/ /g, &amp;#039;_&amp;#039;).indexOf(mw.config.get(&amp;#039;wgUserName&amp;#039;).replace (/ /g, &amp;#039;_&amp;#039;)) === 0&lt;br /&gt;
         ) {&lt;br /&gt;
        // Allow anyone to edit notes in their own user space (sandboxes!)&lt;br /&gt;
        return true;&lt;br /&gt;
      }&lt;br /&gt;
      // Otherwise restrict editing of notes to autoconfirmed users.&lt;br /&gt;
      return (mw.config.get(&amp;#039;wgUserGroups&amp;#039;).join (&amp;#039; &amp;#039;) + &amp;#039; &amp;#039;).indexOf (&amp;#039;confirmed &amp;#039;) &amp;gt;= 0; // Confirmed and autoconfirmed&lt;br /&gt;
      &lt;br /&gt;
    },&lt;br /&gt;
    // To allow only autoconfirmed users to edit, use&lt;br /&gt;
    //     return (&amp;#039; &amp;#039; + wgUserGroups.join (&amp;#039; &amp;#039;) + &amp;#039; &amp;#039;).indexOf (&amp;#039; autoconfirmed &amp;#039;) &amp;gt;= 0;&lt;br /&gt;
    // The following example restricts editing on file description pages to autoconfirmed users,&lt;br /&gt;
    // and otherwise allows edits only on subpages in the project namespace (for instance, featured&lt;br /&gt;
    // image nominations...), but allows editing there for anyone.&lt;br /&gt;
    //     return (   (   wgNamespaceNumber == 6&lt;br /&gt;
    //                 &amp;amp;&amp;amp; (&amp;#039; &amp;#039; + wgUserGroups.join(&amp;#039; &amp;#039;) + &amp;#039; &amp;#039;).indexOf(&amp;#039; autoconfirmed &amp;#039;) &amp;gt;= 0&lt;br /&gt;
    //                )&lt;br /&gt;
    //             || (wgNamespaceNumber == 4 &amp;amp;&amp;amp; wgPageName.indexOf(&amp;#039;/&amp;#039;) &amp;gt; 0)&lt;br /&gt;
    //            );&lt;br /&gt;
    // Note that wgUserName is null for IPs.&lt;br /&gt;
&lt;br /&gt;
    // If editing is allowed at all, may the user remove notes through the ImageAnnotator interface?&lt;br /&gt;
    // (Note that notes can be removed anyway using a normal edit to the page.)&lt;br /&gt;
    mayDelete: function () {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If the user may delete notes, may he or she delete with an empty deletion reason?&lt;br /&gt;
    emptyDeletionReasonAllowed: function () {&lt;br /&gt;
      var groups = &amp;#039; &amp;#039; + mw.config.get(&amp;#039;wgUserGroups&amp;#039;).join(&amp;#039; &amp;#039;) + &amp;#039; &amp;#039;;&lt;br /&gt;
      return groups.indexOf(&amp;#039; sysop &amp;#039;) &amp;gt;= 0 || groups.indexOf(&amp;#039; rollbacker &amp;#039;) &amp;gt;= 0;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If the user may delete, may he or she bypass the prompt for a deletion reason by setting&lt;br /&gt;
    // var ImageAnnotator_noDeletionPrompt = true;&lt;br /&gt;
    // in his or her user scripts?&lt;br /&gt;
    mayBypassDeletionPrompt : function ()&lt;br /&gt;
    {&lt;br /&gt;
      return (&amp;#039; &amp;#039; + mw.config.get(&amp;#039;wgUserGroups&amp;#039;).join(&amp;#039; &amp;#039;) + &amp;#039; &amp;#039;).indexOf(&amp;#039; sysop &amp;#039;) &amp;gt;= 0;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If viewing is enabled at all, you can specify here whether viewing notes on thumbnails (e.g.,&lt;br /&gt;
    // in articles) is switched on. Logged-in users can augment this by disabling viewing notes on&lt;br /&gt;
    // thumbnails on a per-namespace basis using the global variable ImageAnnotator_no_thumbs.&lt;br /&gt;
    thumbsEnabled : function ()&lt;br /&gt;
    {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
    // For instance, to switch off viewing of notes on thumbnails for IPs in article space, you&amp;#039;d use&lt;br /&gt;
    //     return !(namespaceNumber == 0 &amp;amp;&amp;amp; wgUserName === null);&lt;br /&gt;
&lt;br /&gt;
    // If viewing is enabled at all, you can define whether viewing notes on non-thumbnail images is&lt;br /&gt;
    // switched on. Logged-in users can augment this by disabling viewing notes on non-thumbnails&lt;br /&gt;
    // on a per-namespace basis using the global variable ImageAnnotator_no_images.&lt;br /&gt;
    generalImagesEnabled: function () {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If thumbs or general images are enabled, you can define whether this shall apply only to local&lt;br /&gt;
    // images (return false) or also to images that reside at the shared repository (the Commons). In&lt;br /&gt;
    // the &amp;#039;File:&amp;#039; namespace, displaying notes on shared images is always enabled. (Provided viewing&lt;br /&gt;
    // notes is enabled at all there. If you&amp;#039;ve disabled viewing notes in all namespaces including&lt;br /&gt;
    // the &amp;#039;File:&amp;#039; namespace for non-logged-in users, they won&amp;#039;t see notes on images from the Commons&lt;br /&gt;
    // either, even if you enable it here.)&lt;br /&gt;
    sharedImagesEnabled: function () {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If thumbs or general images are enabled, you can define here whether you want to allow the&lt;br /&gt;
    // script to  display the notes or just a little indicator (an icon in the upper left--or right&lt;br /&gt;
    // on rtl wikis--corner of the image). The parameters given are&lt;br /&gt;
    //   name         string&lt;br /&gt;
    //     the name of the image, starting with &amp;quot;File:&amp;quot;&lt;br /&gt;
    //   is_local     boolean&lt;br /&gt;
    //     true if the image is local, false if it is from the shared repository&lt;br /&gt;
    //   thumb        object {width: integer, height: integer}&lt;br /&gt;
    //     Size of the displayed image in the article, in pixels&lt;br /&gt;
    //   full_img     object {width: integer, height: integer}&lt;br /&gt;
    //     Size of the full image as uploaded, in pixels&lt;br /&gt;
    //   nof_notes    integer &lt;br /&gt;
    //     Number of notes on the image&lt;br /&gt;
    //   is_thumbnail boolean&lt;br /&gt;
    //     true if the image is a thumbnail, false otherwise&lt;br /&gt;
    inlineImageUsesIndicator : function (name, is_local, thumb, full_img, nof_notes, is_thumbnail)&lt;br /&gt;
    {&lt;br /&gt;
      // Of course you could also use wgNamespace or any other of the wg-globals here.&lt;br /&gt;
      return    (is_thumbnail &amp;amp;&amp;amp; !is_local)&lt;br /&gt;
             || ((   thumb.width &amp;lt; 250 &amp;amp;&amp;amp; thumb.height &amp;lt; 250&lt;br /&gt;
                  &amp;amp;&amp;amp; (thumb.width &amp;lt; full_img.width || thumb.height &amp;lt; full_img.height)&lt;br /&gt;
                 )&lt;br /&gt;
                   ? nof_notes &amp;gt; 10 : false&lt;br /&gt;
                );&lt;br /&gt;
      // This default displays only an indicator icon for non-local thumbnails,&lt;br /&gt;
      // and for small images that are scaled down, but have many notes&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // If notes are displayed on an image included in an article, ImageAnnotator normally adds a&lt;br /&gt;
    // caption indicating the presence of notes. If you want to suppress this for all images included&lt;br /&gt;
    // in articles, return false. To suppress the caption only for thumbnails, but not for otherwise&lt;br /&gt;
    // included images, return !is_thumbnail. To suppress the caption for all images but thumbnails,&lt;br /&gt;
    // return is_thumbnail. The parameters are the same as for the function inlineImageUsesIndicator&lt;br /&gt;
    // above.&lt;br /&gt;
    displayCaptionInArticles : function (name, is_local, thumb, full_img, nof_notes, is_thumbnail)&lt;br /&gt;
    {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // Different wikis may have different image setups. For the Wikimedia projects, the image&lt;br /&gt;
    // servers are set up to generate missing thumbnails on the fly, so we can just construct&lt;br /&gt;
    // a valid thumbnail url to get a thumbnail, even if there isn&amp;#039;t one of that size yet.&lt;br /&gt;
    // Return true if your wiki has a similar setup. Otherwise, return false.&lt;br /&gt;
    thumbnailsGeneratedAutomatically : function ()&lt;br /&gt;
    {&lt;br /&gt;
      return true;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // Determine whether an image is locally stored or comes from a central repository. For wikis&lt;br /&gt;
    // using the Commons as their central repository, this should not need changing.&lt;br /&gt;
    imageIsFromSharedRepository : function (img_url)&lt;br /&gt;
    {&lt;br /&gt;
      return mw.config.get(&amp;#039;wgServer&amp;#039;).indexOf(&amp;#039;/commons&amp;#039;) &amp;lt; 0 &amp;amp;&amp;amp; img_url.indexOf(&amp;#039;/commons&amp;#039;) &amp;gt;= 0;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // Return the URL of the API at the shared file repository. Again, for wikis using the Commons&lt;br /&gt;
    // as their central repository, this should not need changing. If your wiki is accessible through&lt;br /&gt;
    // https, it&amp;#039;s a good idea to also make the shared repository accessible through https and return&lt;br /&gt;
    // that secure URL here to avoid warnings about accessing a non-secure site from a secure site.&lt;br /&gt;
    sharedRepositoryAPI : function ()&lt;br /&gt;
    {&lt;br /&gt;
      return &amp;#039;//commons.wikimedia.org/w/api.php&amp;#039;;&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    // Default coloring. Each note&amp;#039;s rectangle has an outer and an inner border.&lt;br /&gt;
    outer_border  : &amp;#039;#666666&amp;#039;, // Gray&lt;br /&gt;
    inner_border  : &amp;#039;yellow&amp;#039;,&lt;br /&gt;
    active_border : &amp;#039;#FFA500&amp;#039;, // Orange, for highlighting the rectangle of the active note&lt;br /&gt;
    new_border    : &amp;#039;red&amp;#039;,     // For drawing rectangles&lt;br /&gt;
&lt;br /&gt;
    // Default threshold for activating the zoom (can be overridden by users).&lt;br /&gt;
    zoom_threshold : 8.0,&lt;br /&gt;
&lt;br /&gt;
    UI : {&lt;br /&gt;
      defaultLanguage : mw.config.get(&amp;#039;wgContentLanguage&amp;#039;), // Don&amp;#039;t change this!&lt;br /&gt;
&lt;br /&gt;
      // Translate the texts below into the wgContentLanguage of your wiki. These are used as&lt;br /&gt;
      // fallbacks if the localized UI cannot be loaded from the server.&lt;br /&gt;
      defaults: {&lt;br /&gt;
         wpImageAnnotatorDelete        : &amp;#039;Delete&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorEdit          : &amp;#039;Edit&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorSave          : &amp;#039;Save&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorCancel        : &amp;#039;Cancel&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorPreview       : &amp;#039;Preview&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorRevert        : &amp;#039;Revert&amp;#039;&lt;br /&gt;
        ,wpTranslate                   : &amp;#039;translate&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorAddButtonText : &amp;#039;Add a note&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorAddSummary    :&lt;br /&gt;
          &amp;#039;[[MediaWiki talk:Gadget-ImageAnnotator.js|Adding image note]]$1&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorChangeSummary :&lt;br /&gt;
          &amp;#039;[[MediaWiki talk:Gadget-ImageAnnotator.js|Changing image note]]$1&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorRemoveSummary :&lt;br /&gt;
          &amp;#039;[[MediaWiki talk:Gadget-ImageAnnotator.js|Removing image note]]$1&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorHasNotesShort : &amp;#039;This file has annotations.&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorHasNotesMsg   :&lt;br /&gt;
           &amp;#039;This file has annotations. Move the mouse pointer over the image to see them.&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorEditNotesMsg  :&lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;\xa0To edit the notes, visit page &amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;x&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorDrawRectMsg   :&lt;br /&gt;
           &amp;#039;Draw a rectangle onto the image above (mouse click, then drag and release)&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorEditorLabel   :&lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;Text of the note (may include &amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;a href=&amp;quot;//meta.wikimedia.org/wiki/Help:Reference_card&amp;quot;&amp;gt;Wiki markup&amp;lt;/a&amp;gt;)&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorSaveError  :&lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;&amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;&amp;#039;&lt;br /&gt;
         + &amp;#039;Could not save your note (edit conflict or other problem).&amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;/span&amp;gt; &amp;#039;&lt;br /&gt;
         + &amp;#039;Please copy the text in the edit box below and insert it manually by &amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;a href=&amp;quot;&amp;#039;&lt;br /&gt;
         + mw.config.get(&amp;#039;wgArticlePath&amp;#039;).replace (&amp;#039;$1&amp;#039;, encodeURIComponent(mw.config.get(&amp;#039;wgPageName&amp;#039;)))&lt;br /&gt;
         + &amp;#039;?action=edit&amp;quot;&amp;gt;editing this page&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorCopyright :&lt;br /&gt;
           &amp;#039;&amp;lt;small&amp;gt;The note will be published multi-licensed as &amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;a href=&amp;quot;http://creativecommons.org/licenses/by-sa/3.0/&amp;quot;&amp;gt;CC-BY-SA-3.0&amp;lt;/a&amp;gt; and &amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;a href=&amp;quot;http://www.gnu.org/copyleft/fdl.html&amp;quot;&amp;gt;GFDL&amp;lt;/a&amp;gt;, versions 1.2 and 1.3. &amp;#039;&lt;br /&gt;
         + &amp;#039;Please read our &amp;lt;a href=&amp;quot;//wikimediafoundation.org/wiki/Terms_of_Use&amp;quot;&amp;gt;terms &amp;#039;&lt;br /&gt;
         + &amp;#039;of use&amp;lt;/a&amp;gt; for more details.&amp;lt;/small&amp;gt;&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorDeleteReason :&lt;br /&gt;
           &amp;#039;Why do you want to remove this note?&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorDeleteConfirm :&lt;br /&gt;
           &amp;#039;Do you really want to delete this note?&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorHelp          : &lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;//commons.wikimedia.org/wiki/Help:Gadget-ImageAnnotator&amp;quot; &amp;#039;&lt;br /&gt;
         + &amp;#039;title=&amp;quot;Help&amp;quot;&amp;gt;Help&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        // The following image should be a GIF or an 8bit indexed PNG with transparent background,&lt;br /&gt;
        // to make sure that even IE6 displays the transparency correctly. A normal 32bit PNG might&lt;br /&gt;
        // display a transparent background as white on IE6.&lt;br /&gt;
        ,wpImageAnnotatorIndicatorIcon :&lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;&amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;img src=&amp;quot;//upload.wikimedia.org/wikipedia/commons/8/8a/Gtk-dialog-info-14px.png&amp;quot; &amp;#039;&lt;br /&gt;
         + &amp;#039;width=&amp;quot;14&amp;quot; height=&amp;quot;14&amp;quot; title=&amp;quot;This file has annotations&amp;quot; /&amp;gt;&amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        ,wpImageAnnotatorCannotEditMsg :&lt;br /&gt;
           &amp;#039;&amp;lt;span&amp;gt;To modify annotations, your browser needs to have the &amp;#039;&lt;br /&gt;
         + &amp;#039;&amp;lt;a href=&amp;quot;//en.wikipedia.org/wiki/XMLHttpRequest&amp;quot;&amp;gt;XMLHttpRequest&amp;lt;/a&amp;gt; &amp;#039;&lt;br /&gt;
         + &amp;#039;object. Your browser does not have this object or does not allow it to be used &amp;#039;&lt;br /&gt;
         + &amp;#039;(in Internet Explorer, it may be in a switched off ActiveX component), and &amp;#039;&lt;br /&gt;
         + &amp;#039;thus you cannot modify annotations. We\&amp;#039;re sorry for the inconvenience.&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
  }; // End site-wide config.&lt;br /&gt;
&lt;br /&gt;
  // DO NOT CHANGE ANYTHING BELOW THIS LINE&lt;br /&gt;
 &lt;br /&gt;
  // Start of ImageAnnotator&lt;br /&gt;
  if (config.viewingEnabled()) {&lt;br /&gt;
      jQuery(function () {&lt;br /&gt;
         ImageAnnotator.install(config);&lt;br /&gt;
      });&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>Insert</name></author>
	</entry>
</feed>