Skip to content

Releases: SitecoreSupport/Sitecore.Support.50033.95987

8.1.0.1

04 Sep 14:09

Choose a tag to compare

Description

Fixing the language recognition issues in the Sitecore Client
You can find more detailed description of the issue at https://kb.sitecore.net/articles/327447

Compatibility

The release was built for and tested with the following Sitecore products in bare condition (no hotfixes, patches or other customizations, unless explicitly specified):

  • Sitecore CMS 8.1 rev. 151003 (Initial Release)
  • Sitecore CMS 8.1 rev. 151207 (Update-1)
  • Sitecore CMS 8.1 rev. 160302 (Update-2)
  • Sitecore CMS 8.1 rev. 160519 (Update-3)
  • Sitecore CMS 8.2 rev. 160729 (Initial Release)

Contents

  • bin/Sitecore.Support.50033.95987.dll
  • App_Config/Include/zzz/Sitecore.Support.50033.95987.config
  • sitecore/shell/client/Sitecore/Speak/Ribbon/Controls/SelectLanguageButton/SelectLanguageButton.cshtml

Installation

For all Sitecore instances in the solution:

  1. Uninstall previous version of the patch (if installed).
  2. Make a backup of the files mentioned in Contents section and listed in the installation instruction (if any).
  3. Copy the contents of the Website folder from the archive to the Website folder of your Sitecore solution, overwrite existing files if any conflicts occur.
  4. (Optional) Copy the Sitecore.Support.50033.95987-8.1.0.1.zip archive into the $(data)/patches folder permanently.
  5. Back up the /sitecore/shell/Applications/Content Manager/Default.aspx file and insert the following script in before the closing </body> tag:
    <script>
    function updateLanguageLabel()
    {
        var curLangElem = $sc("a.scEditorHeaderVersionsLanguage")[0];
        curLangElem.firstChild.nodeValue = curLangElem.title;
    }
    window.onload = function update() {updateLanguageLabel();}
    </script>
  1. Back up and edit the /sitecore/shell/Controls/Sitecore.js file.
    Find the case "Redraw": line and insert the update function as follows:
    ... 
    case "Redraw":
    updateLanguageLabel();
    ...
  1. Clear the browser caches.

Uninstallation

  1. Remove the files listed in the Contents section.
  2. Restore the original files from the backup made during installation.

Important Notes

  • The patch should be installed only if recommended by Sitecore Support.
  • Any related issues and other feedback should be reported via support portal, check KB 654910 for details.
  • Check KB 077333 to find more information about Sitecore Patches.

8.0.0.1

04 Sep 14:09

Choose a tag to compare

Description

Fixing the language recognition issues in the Sitecore Client
You can find more detailed description of the issue at https://kb.sitecore.net/articles/327447

Compatibility

The release was built for and tested with the following Sitecore products in bare condition (no hotfixes, patches or other customizations, unless explicitly specified):

  • Sitecore CMS 8.0 rev. 141212 (Initial Release)
  • Sitecore CMS 8.0 rev. 150121 (Update-1)
  • Sitecore CMS 8.0 rev. 150223 (Update-2)
  • Sitecore CMS 8.0 rev. 150427 (Update-3)
  • Sitecore CMS 8.0 rev. 150621 (Update-4)
  • Sitecore CMS 8.0 rev. 150812 (Update-5)
  • Sitecore CMS 8.0 rev. 151127 (Update-6)

Contents

  • bin/Sitecore.Support.50033.95987.dll
  • App_Config/Include/zzz/Sitecore.Support.50033.95987.config

Installation

For all Sitecore instances in the solution:

  1. Uninstall previous version of the patch (if installed).
  2. Make a backup of the files mentioned in Contents section and listed in the installation instruction (if any).
  3. Copy the contents of the Website folder from the archive to the Website folder of your Sitecore solution, overwrite existing files if any conflicts occur.
  4. (Optional) Copy the Sitecore.Support.50033.95987-8.1.0.1.zip archive into the $(data)/patches folder permanently.
  5. Back up the /sitecore/shell/Applications/Content Manager/Default.aspx file and insert the following script in before the closing </body> tag:
    <script>
    function updateLanguageLabel()
    {
        var curLangElem = $sc("a.scEditorHeaderVersionsLanguage")[0];
        curLangElem.firstChild.nodeValue = curLangElem.title;
    }
    window.onload = function update() {updateLanguageLabel();}
   </script>
  1. Back up and edit the /sitecore/shell/Controls/Sitecore.js file.
    Find the case "Redraw": line and insert the update function as follows:
    ... 
    case "Redraw":
    updateLanguageLabel();
    ...
  1. Clear the browser caches.

Uninstallation

  1. Remove the files listed in the Contents section.
  2. Restore the original files from the backup made during installation.

Important Notes

  • The patch should be installed only if recommended by Sitecore Support.
  • Any related issues and other feedback should be reported via support portal, check KB 654910 for details.
  • Check KB 077333 to find more information about Sitecore Patches.

8.0.0.0

27 Feb 16:13

Choose a tag to compare

Description

Fixing the language recognition issues in the Sitecore Client.
You can find more detailed description of the issue at https://kb.sitecore.net/articles/327447

Compatibility

The release was built for and tested with the following Sitecore products in bare condition(no hotfixes, patches or other customizations, unless explicitly specified):

  • Sitecore CMS 8.0 rev. 141212 (Initial Release)

Sitecore.Support.50033.95987-8.0.0.0.zip

Contents

  • bin/Sitecore.Support.50033.95987.dll [md5:B96F8E786483B52D38DB99CE3F293AE6]
  • App_Config/Include/zzz/Sitecore.Support.50033.95987.config [md5:36D035F7F5067ECC47CB17ABEDC31C8A]
  • sitecore/shell/Override/AddLanguage.xml [md5:44355A5872C9C2F0682CF075E04BF626]
  • sitecore/shell/Override/Gallery Languages.xml [md5:188ABD96C3C0FA9BAAA85E76B3810D8E]

Installation

For all Sitecore instances in the solution:

  • Make a backup of the files mentioned in Contents section that already exist in Website folder.
  • Extract the contents of the archive to the Website folder, overwrite existing files if any conflicts occur.
  • Back up the /sitecore/shell/Applications/Content Manager/Default.aspx file and insert the following script in before the closing tag:
<script>
    function updateLanguageLabel()
    {
        var curLangElem = $sc("a.scEditorHeaderVersionsLanguage")[0];
        curLangElem.firstChild.nodeValue = curLangElem.title;
    }
    window.onload = function update() {updateLanguageLabel();}
</script>
  • Back up and edit the /sitecore/shell/Controls/Sitecore.js file.
    Find the case "Redraw": line and insert the update function as follows:
    ... 
    case "Redraw":
    updateLanguageLabel();
    ...
  • Find the sitecore\content\Applications\WebEdit\Ribbons\WebEdit\Experience\Language\Change Language item in the Core database and clear the information from the Icon field
  • Clear the browser caches.

Uninstallation

  1. Remove the files listed in the Contents section.
  2. Restore the original files from the backup made during installation.
  3. Find the sitecore\content\Applications\WebEdit\Ribbons\WebEdit\Experience\Language\Change Language item in the Core database and set the Icon field value to Office/24x24/globe.png
  4. Clear the browser caches.

Important Notes

  • The patch should be installed only if recommended by Sitecore Support.
  • Any related issues and other feedback should be reported via support portal, check KB 654910 for details.
  • Check KB 077333 to find more information about Sitecore Patches.
  • This patch does not change the flag icons of already existing language items. You must
    change those flag icon items manually:
    1. In Content Editor, open the existing language item.
    2. Click on the language icon.
    3. In the Change Icon dialog, go to the Icons tab.
    4. Select the Flags string in the drop-down list.
    5. Select the proper flag for this language item and click the OK button.

8.1.1.0

27 Feb 16:13

Choose a tag to compare

Description

Fixing the language recognition issues in the Sitecore Client.
You can find more detailed description of the issue at https://kb.sitecore.net/articles/327447

Compatibility

The release was built for and tested with the following Sitecore products in bare condition (no hotfixes, patches or other customizations, unless explicitly specified):

  • Sitecore CMS 8.1 rev. 151207 (Update-1)

Sitecore.Support.50033.95987-8.1.1.0.zip

Contents

  • bin/Sitecore.Support.50033.95987.dll [md5:F3223E8953D65D19EB888BB989EBF61C]
  • App_Config/Include/zzz/Sitecore.Support.50033.95987.config [md5:36D035F7F5067ECC47CB17ABEDC31C8A]
  • sitecore/shell/client/Sitecore/Speak/Ribbon/Controls/SelectLanguageButton/SelectLanguageButton.cshtml [md5:9258B71FF0A6577CEB56BD8207B26117]
  • sitecore/shell/Override/AddLanguage.xml [md5:44355A5872C9C2F0682CF075E04BF626]
  • sitecore/shell/Override/Gallery Languages.xml [md5:C4E0F517E3376ACFE2B19FAC00768D31]

Installation

For all Sitecore instances in the solution:

  • Make a backup of the files mentioned in Contents section that already exist in Website folder.
  • Extract the contents of the archive to the Website folder, overwrite existing files if any conflicts occur.
  • Back up the /sitecore/shell/Applications/Content Manager/Default.aspx file and insert the following script in before the closing tag:
<script>
    function updateLanguageLabel()
    {
        var curLangElem = $sc("a.scEditorHeaderVersionsLanguage")[0];
        curLangElem.firstChild.nodeValue = curLangElem.title;
    }
    window.onload = function update() {updateLanguageLabel();}
</script>
  • Back up and edit the /sitecore/shell/Controls/Sitecore.js file.
    Find the case "Redraw": line and insert the update function as follows:
    ... 
    case "Redraw":
    updateLanguageLabel();
    ...
  • Clear the browser caches.

Uninstallation

  1. Remove the files listed in the Contents section.
  2. Restore the original files from the backup made during installation.
  3. Clear the browser caches.

Important Notes

  • The patch should be installed only if recommended by Sitecore Support.
  • Any related issues and other feedback should be reported via support portal, check KB 654910 for details.
  • Check KB 077333 to find more information about Sitecore Patches.
  • This patch does not change the flag icons of already existing language items. You must
    change those flag icon items manually:
    1. In Content Editor, open the existing language item.
    2. Click on the language icon.
    3. In the Change Icon dialog, go to the Icons tab.
    4. Select the Flags string in the drop-down list.
    5. Select the proper flag for this language item and click the OK button.

8.1.0.0

27 Feb 16:13

Choose a tag to compare

Description

Fixing the language recognition issues in the Sitecore Client.
You can find more detailed description of the issue at https://kb.sitecore.net/articles/327447

Compatibility

The release was built for and tested with the following Sitecore products in bare condition(no hotfixes, patches or other customizations, unless explicitly specified):

  • Sitecore CMS 8.1 rev. 151003 (Initial Release)

Sitecore.Support.50033.95987-8.1.0.0.zip

Contents

  • bin/Sitecore.Support.50033.95987.dll [md5:A42B6DAADBF3C3723A43B93DC20282C6]
  • App_Config/Include/zzz/Sitecore.Support.50033.95987.config [md5:36D035F7F5067ECC47CB17ABEDC31C8A]
  • sitecore/shell/client/Sitecore/Speak/Ribbon/Controls/SelectLanguageButton/SelectLanguageButton.cshtml [md5:9258B71FF0A6577CEB56BD8207B26117]
  • sitecore/shell/Override/AddLanguage.xml [md5:44355A5872C9C2F0682CF075E04BF626]
  • sitecore/shell/Override/Gallery Languages.xml [md5:B24A3043635965E3C3BB4F0D36B0CC79]

Installation

For all Sitecore instances in the solution:

  • Make a backup of the files mentioned in Contents section that already exist in Website folder.
  • Extract the contents of the archive to the Website folder, overwrite existing files if any conflicts occur.
  • Back up the /sitecore/shell/Applications/Content Manager/Default.aspx file and insert the following script in before the closing tag:
<script>
    function updateLanguageLabel()
    {
        var curLangElem = $sc("a.scEditorHeaderVersionsLanguage")[0];
        curLangElem.firstChild.nodeValue = curLangElem.title;
    }
    window.onload = function update() {updateLanguageLabel();}
</script>
  • Back up and edit the /sitecore/shell/Controls/Sitecore.js file.
    Find the case "Redraw": line and insert the update function as follows:
    ... 
    case "Redraw":
    updateLanguageLabel();
    ...
  • Clear the browser caches.

Uninstallation

  1. Remove the files listed in the Contents section.
  2. Restore the original files from the backup made during installation.
  3. Clear the browser caches.

Important Notes

  • The patch should be installed only if recommended by Sitecore Support.
  • Any related issues and other feedback should be reported via support portal, check KB 654910 for details.
  • Check KB 077333 to find more information about Sitecore Patches.
  • This patch does not change the flag icons of already existing language items. You must
    change those flag icon items manually:
    1. In Content Editor, open the existing language item.
    2. Click on the language icon.
    3. In the Change Icon dialog, go to the Icons tab.
    4. Select the Flags string in the drop-down list.
    5. Select the proper flag for this language item and click the OK button.